2010-01-20 14:00:14 +00:00
|
|
|
/*
|
|
|
|
* button_core.js
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
(function($) {
|
|
|
|
|
|
|
|
module("button: core");
|
|
|
|
|
|
|
|
test("checkbox", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 4 );
|
2012-04-19 14:50:09 +00:00
|
|
|
var input = $("#check"),
|
2010-01-20 14:00:14 +00:00
|
|
|
label = $("label[for=check]");
|
2012-02-28 14:56:32 +00:00
|
|
|
ok( input.is(":visible") );
|
2010-01-20 14:00:14 +00:00
|
|
|
ok( label.is(":not(.ui-button)") );
|
|
|
|
input.button();
|
2010-03-11 20:10:26 +00:00
|
|
|
ok( input.is(".ui-helper-hidden-accessible") );
|
2010-01-20 14:00:14 +00:00
|
|
|
ok( label.is(".ui-button") );
|
|
|
|
});
|
|
|
|
|
|
|
|
test("radios", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 4 );
|
2012-04-19 14:50:09 +00:00
|
|
|
var inputs = $("#radio0 input"),
|
2010-01-20 14:00:14 +00:00
|
|
|
labels = $("#radio0 label");
|
2012-02-28 14:56:32 +00:00
|
|
|
ok( inputs.is(":visible") );
|
2010-01-20 14:00:14 +00:00
|
|
|
ok( labels.is(":not(.ui-button)") );
|
|
|
|
inputs.button();
|
2010-03-11 20:10:26 +00:00
|
|
|
ok( inputs.is(".ui-helper-hidden-accessible") );
|
2010-01-20 14:00:14 +00:00
|
|
|
ok( labels.is(".ui-button") );
|
|
|
|
});
|
|
|
|
|
|
|
|
function assert(noForm, form1, form2) {
|
|
|
|
ok( $("#radio0 .ui-button" + noForm).is(".ui-state-active") );
|
|
|
|
ok( $("#radio1 .ui-button" + form1).is(".ui-state-active") );
|
|
|
|
ok( $("#radio2 .ui-button" + form2).is(".ui-state-active") );
|
|
|
|
}
|
|
|
|
|
|
|
|
test("radio groups", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 12 );
|
2012-05-21 16:02:28 +00:00
|
|
|
$("input[type=radio]").button();
|
2010-01-20 14:00:14 +00:00
|
|
|
assert(":eq(0)", ":eq(1)", ":eq(2)");
|
2012-02-28 14:56:32 +00:00
|
|
|
|
2010-01-20 14:00:14 +00:00
|
|
|
// click outside of forms
|
|
|
|
$("#radio0 .ui-button:eq(1)").click();
|
|
|
|
assert(":eq(1)", ":eq(1)", ":eq(2)");
|
2012-02-28 14:56:32 +00:00
|
|
|
|
2010-01-20 14:00:14 +00:00
|
|
|
// click in first form
|
|
|
|
$("#radio1 .ui-button:eq(0)").click();
|
|
|
|
assert(":eq(1)", ":eq(0)", ":eq(2)");
|
2012-02-28 14:56:32 +00:00
|
|
|
|
2010-01-20 14:00:14 +00:00
|
|
|
// click in second form
|
|
|
|
$("#radio2 .ui-button:eq(0)").click();
|
|
|
|
assert(":eq(1)", ":eq(0)", ":eq(0)");
|
|
|
|
});
|
|
|
|
|
|
|
|
test("input type submit, don't create child elements", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 2 );
|
2012-04-19 14:50:09 +00:00
|
|
|
var input = $("#submit");
|
2012-02-28 14:56:32 +00:00
|
|
|
deepEqual( input.children().length, 0 );
|
2010-01-20 14:00:14 +00:00
|
|
|
input.button();
|
2012-02-28 14:56:32 +00:00
|
|
|
deepEqual( input.children().length, 0 );
|
2010-01-20 14:00:14 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test("buttonset", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 6 );
|
2010-01-20 14:00:14 +00:00
|
|
|
var set = $("#radio1").buttonset();
|
2010-03-17 13:16:40 +00:00
|
|
|
ok( set.is(".ui-buttonset") );
|
2012-02-28 14:56:32 +00:00
|
|
|
deepEqual( set.children(".ui-button").length, 3 );
|
2012-05-21 16:02:28 +00:00
|
|
|
deepEqual( set.children("input[type=radio].ui-helper-hidden-accessible").length, 3 );
|
2010-01-20 14:00:14 +00:00
|
|
|
ok( set.children("label:eq(0)").is(".ui-button.ui-corner-left:not(.ui-corner-all)") );
|
|
|
|
ok( set.children("label:eq(1)").is(".ui-button:not(.ui-corner-all)") );
|
|
|
|
ok( set.children("label:eq(2)").is(".ui-button.ui-corner-right:not(.ui-corner-all)") );
|
|
|
|
});
|
|
|
|
|
2011-05-12 05:51:05 +00:00
|
|
|
test("buttonset (rtl)", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 6 );
|
2012-04-19 14:50:09 +00:00
|
|
|
var set,
|
|
|
|
parent = $("#radio1").parent();
|
2011-05-12 05:51:05 +00:00
|
|
|
// Set to rtl
|
|
|
|
parent.attr("dir", "rtl");
|
2012-02-28 14:56:32 +00:00
|
|
|
|
2012-04-19 14:50:09 +00:00
|
|
|
set = $("#radio1").buttonset();
|
2011-05-12 05:51:05 +00:00
|
|
|
ok( set.is(".ui-buttonset") );
|
2012-02-28 14:56:32 +00:00
|
|
|
deepEqual( set.children(".ui-button").length, 3 );
|
2012-05-21 16:02:28 +00:00
|
|
|
deepEqual( set.children("input[type=radio].ui-helper-hidden-accessible").length, 3 );
|
2011-05-12 05:51:05 +00:00
|
|
|
ok( set.children("label:eq(0)").is(".ui-button.ui-corner-right:not(.ui-corner-all)") );
|
|
|
|
ok( set.children("label:eq(1)").is(".ui-button:not(.ui-corner-all)") );
|
|
|
|
ok( set.children("label:eq(2)").is(".ui-button.ui-corner-left:not(.ui-corner-all)") );
|
|
|
|
});
|
|
|
|
|
2012-11-28 16:21:52 +00:00
|
|
|
// TODO: simulated click events don't behave like real click events in IE
|
|
|
|
// remove this when simulate properly simulates this
|
|
|
|
// see http://yuilibrary.com/projects/yui2/ticket/2528826 fore more info
|
|
|
|
if ( !$.ui.ie || ( document.documentMode && document.documentMode > 8 ) ) {
|
2012-11-29 14:08:48 +00:00
|
|
|
asyncTest( "ensure checked and aria after single click on checkbox label button, see #5518", function() {
|
2012-11-28 16:21:52 +00:00
|
|
|
expect( 3 );
|
|
|
|
|
|
|
|
$("#check2").button().change( function() {
|
|
|
|
var lbl = $( this ).button("widget");
|
|
|
|
ok( this.checked, "checked ok" );
|
|
|
|
ok( lbl.attr("aria-pressed") === "true", "aria ok" );
|
|
|
|
ok( lbl.hasClass("ui-state-active"), "ui-state-active ok" );
|
2012-11-29 14:08:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// support: Opera
|
|
|
|
// Opera doesn't trigger a change event when this is done synchronously.
|
|
|
|
// This seems to be a side effect of another test, but until that can be
|
|
|
|
// tracked down, this delay will have to do.
|
|
|
|
setTimeout(function() {
|
|
|
|
$("#check2").button("widget").simulate("click");
|
|
|
|
start();
|
|
|
|
}, 1 );
|
2012-11-28 16:21:52 +00:00
|
|
|
});
|
|
|
|
}
|
2012-11-27 01:24:31 +00:00
|
|
|
|
2012-12-08 01:06:29 +00:00
|
|
|
test( "#7092 - button creation that requires a matching label does not find label in all cases", function() {
|
|
|
|
expect( 5 );
|
|
|
|
var group = $( "<span><label for='t7092a'></label><input type='checkbox' id='t7092a'></span>" );
|
|
|
|
group.find( "input[type=checkbox]" ).button();
|
|
|
|
ok( group.find( "label" ).is( ".ui-button" ) );
|
|
|
|
|
|
|
|
group = $( "<input type='checkbox' id='t7092b'><label for='t7092b'></label>" );
|
|
|
|
group.filter( "input[type=checkbox]" ).button();
|
|
|
|
ok( group.filter( "label" ).is( ".ui-button" ) );
|
|
|
|
|
|
|
|
group = $( "<span><input type='checkbox' id='t7092c'></span><label for='t7092c'></label>" );
|
|
|
|
group.find( "input[type=checkbox]" ).button();
|
|
|
|
ok( group.filter( "label" ).is( ".ui-button" ) );
|
|
|
|
|
|
|
|
group = $( "<span><input type='checkbox' id='t7092d'></span><span><label for='t7092d'></label></span>" );
|
|
|
|
group.find( "input[type=checkbox]" ).button();
|
|
|
|
ok( group.find( "label" ).is( ".ui-button" ) );
|
|
|
|
|
|
|
|
group = $( "<input type='checkbox' id='t7092e'><span><label for='t7092e'></label></span>" );
|
|
|
|
group.filter( "input[type=checkbox]" ).button();
|
|
|
|
ok( group.find( "label" ).is( ".ui-button" ) );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "#5946 - buttonset should ignore buttons that are not :visible", function() {
|
|
|
|
expect( 2 );
|
2012-12-14 16:13:46 +00:00
|
|
|
$( "#radio01" ).next().addBack().hide();
|
2012-12-08 01:06:29 +00:00
|
|
|
var set = $( "#radio0" ).buttonset({ items: "input[type=radio]:visible" });
|
|
|
|
ok( set.find( "label:eq(0)" ).is( ":not(.ui-button):not(.ui-corner-left)" ) );
|
|
|
|
ok( set.find( "label:eq(1)" ).is( ".ui-button.ui-corner-left" ) );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "#6262 - buttonset not applying ui-corner to invisible elements", function() {
|
|
|
|
expect( 3 );
|
|
|
|
$( "#radio0" ).hide();
|
|
|
|
var set = $( "#radio0" ).buttonset();
|
|
|
|
ok( set.find( "label:eq(0)" ).is( ".ui-button.ui-corner-left" ) );
|
|
|
|
ok( set.find( "label:eq(1)" ).is( ".ui-button" ) );
|
|
|
|
ok( set.find( "label:eq(2)" ).is( ".ui-button.ui-corner-right" ) );
|
|
|
|
});
|
|
|
|
|
2012-12-10 15:35:01 +00:00
|
|
|
asyncTest( "#6711 Checkbox/Radiobutton do not Show Focused State when using Keyboard Navigation", function() {
|
2012-12-08 01:06:29 +00:00
|
|
|
expect( 2 );
|
|
|
|
var check = $( "#check" ).button(),
|
|
|
|
label = $( "label[for='check']" );
|
|
|
|
ok( !label.is( ".ui-state-focus" ) );
|
|
|
|
check.focus();
|
2012-12-10 15:35:01 +00:00
|
|
|
setTimeout(function() {
|
|
|
|
ok( label.is( ".ui-state-focus" ) );
|
|
|
|
start();
|
|
|
|
});
|
2012-12-08 01:06:29 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test( "#7534 - Button label selector works for ids with \":\"", function() {
|
|
|
|
expect( 1 );
|
|
|
|
var group = $( "<span><input type='checkbox' id='check:7534'><label for='check:7534'>Label</label></span>" );
|
|
|
|
group.find( "input" ).button();
|
|
|
|
ok( group.find( "label" ).is( ".ui-button" ), "Found an id with a :" );
|
|
|
|
});
|
|
|
|
|
2010-01-20 14:00:14 +00:00
|
|
|
})(jQuery);
|