mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-07-25 19:54:09 +03:00
Merge commit 'd21ea7816e
' as 'jquery-ui'
This commit is contained in:
commit
e904a80717
629 changed files with 341074 additions and 0 deletions
74
jquery-ui/tests/unit/button/button_methods.js
vendored
Normal file
74
jquery-ui/tests/unit/button/button_methods.js
vendored
Normal file
|
@ -0,0 +1,74 @@
|
|||
/*
|
||||
* button_methods.js
|
||||
*/
|
||||
(function($) {
|
||||
|
||||
|
||||
module("button: methods");
|
||||
|
||||
test("destroy", function() {
|
||||
expect( 1 );
|
||||
domEqual( "#button", function() {
|
||||
$( "#button" ).button().button( "destroy" );
|
||||
});
|
||||
});
|
||||
|
||||
test( "refresh: Ensure disabled state is preserved correctly.", function() {
|
||||
expect( 8 );
|
||||
|
||||
var element = $( "<a href='#'></a>" );
|
||||
element.button({ disabled: true }).button( "refresh" );
|
||||
ok( element.button( "option", "disabled" ), "Anchor button should remain disabled after refresh" ); //See #8237
|
||||
|
||||
element = $( "<div></div>" );
|
||||
element.button({ disabled: true }).button( "refresh" );
|
||||
ok( element.button( "option", "disabled" ), "<div> buttons should remain disabled after refresh" );
|
||||
|
||||
element = $( "<button></button>" );
|
||||
element.button( { disabled: true} ).button( "refresh" );
|
||||
ok( element.button( "option", "disabled" ), "<button> should remain disabled after refresh");
|
||||
|
||||
element = $( "<input type='checkbox'>" );
|
||||
element.button( { disabled: true} ).button( "refresh" );
|
||||
ok( element.button( "option", "disabled" ), "Checkboxes should remain disabled after refresh");
|
||||
|
||||
element = $( "<input type='radio'>" );
|
||||
element.button( { disabled: true} ).button( "refresh" );
|
||||
ok( element.button( "option", "disabled" ), "Radio buttons should remain disabled after refresh");
|
||||
|
||||
element = $( "<button></button>" );
|
||||
element.button( { disabled: true} ).prop( "disabled", false ).button( "refresh" );
|
||||
ok( !element.button( "option", "disabled" ), "Changing a <button>'s disabled property should update the state after refresh."); //See #8828
|
||||
|
||||
element = $( "<input type='checkbox'>" );
|
||||
element.button( { disabled: true} ).prop( "disabled", false ).button( "refresh" );
|
||||
ok( !element.button( "option", "disabled" ), "Changing a checkbox's disabled property should update the state after refresh.");
|
||||
|
||||
element = $( "<input type='radio'>" );
|
||||
element.button( { disabled: true} ).prop( "disabled", false ).button( "refresh" );
|
||||
ok( !element.button( "option", "disabled" ), "Changing a radio button's disabled property should update the state after refresh.");
|
||||
});
|
||||
|
||||
// #8975
|
||||
test( "refresh: buttonset should turn added elements into button widgets", function() {
|
||||
expect( 2 );
|
||||
var radioButtonset = $( "#radio0" ).buttonset(),
|
||||
checkboxButtonset = $( "#checkbox0" ).buttonset();
|
||||
|
||||
radioButtonset.append(
|
||||
"<input type='radio' name='radio' id='radio04'>" +
|
||||
"<label for='radio04'>Choice 4</label>"
|
||||
);
|
||||
checkboxButtonset.append(
|
||||
"<input type='checkbox' name='checkbox' id='checkbox04'>" +
|
||||
"<label for='checkbox04'>Choice 4</label>"
|
||||
);
|
||||
|
||||
radioButtonset.buttonset( "refresh" );
|
||||
checkboxButtonset.buttonset( "refresh" );
|
||||
|
||||
equal( radioButtonset.find( ":ui-button" ).length, 4, "radio" );
|
||||
equal( checkboxButtonset.find( ":ui-button" ).length, 4, "checkbox" );
|
||||
});
|
||||
|
||||
})(jQuery);
|
Loading…
Add table
Add a link
Reference in a new issue