blob: 5197bc40c4ab93baa1c339916ce2bf0c655d52ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* button_methods.js
*/
(function($) {
module("button: methods");
test("destroy", function() {
var beforeHtml = $("#button").parent().html();
var afterHtml = $("#button").button().button("destroy").parent().html();
// Opera 9 outputs role="" instead of removing the attribute like everyone else
if ($.browser.opera) {
afterHtml = afterHtml.replace(/ role=""/g, "");
}
equal( afterHtml, beforeHtml );
});
test("widget", function() {
var submit = $("#submit").button();
same(submit.button("widget")[0], submit[0]);
same(submit.button("widget").end()[0], submit[0]);
var check = $("#check").button();
same(check.button("widget")[0], check.next("label")[0]);
same(check.button("widget").end()[0], check[0]);
var radio = $("#radio01").button();
same(radio.button("widget")[0], radio.next("label")[0]);
same(radio.button("widget").end()[0], radio[0]);
});
})(jQuery);
|