test for custom select dialog title update from dom

This commit is contained in:
John Bender 2011-10-18 09:39:25 -07:00
parent 5fce1154f7
commit 911ff69972

View file

@ -336,8 +336,49 @@
$.mobile.page.prototype.options.keepNative = "select.should-be-native";
// not testing the positive case here since's it's obviously tested elsewhere
// not testing the positive case here since's it's obviously tested elsewhere
test( "select elements in the keepNative set shouldn't be enhanced", function() {
ok( !$("#keep-native").parent().is("div.ui-btn") );
ok( !$("#keep-native").parent().is("div.ui-btn") );
});
asyncTest( "dialog size select title should match the label", function() {
var $select = $( "#select-choice-many-1" ),
$label = $select.parent().siblings( "label" ),
$button = $select.siblings( "a" );
$.testHelper.pageSequence([
function() {
$button.click();
},
function() {
same($.mobile.activePage.find( ".ui-title" ).text(), $label.text());
window.history.back();
},
start
]);
});
asyncTest( "dialog size select title should match the label when changed after the dialog markup is added to the DOM", function() {
var $select = $( "#select-choice-many-1" ),
$label = $select.parent().siblings( "label" ),
$button = $select.siblings( "a" );
$label.text( "foo" );
$.testHelper.pageSequence([
function() {
$label.text( "foo" );
$button.click();
},
function() {
same($.mobile.activePage.find( ".ui-title" ).text(), $label.text());
window.history.back();
},
start
]);
});
})(jQuery);