mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-24 14:13:43 +00:00
31 lines
No EOL
764 B
JavaScript
31 lines
No EOL
764 B
JavaScript
/*
|
|
* mobile page unit tests
|
|
*/
|
|
(function( $ ) {
|
|
module('jquery.mobile.page.js');
|
|
|
|
test( "nested header anchors aren't altered", function(){
|
|
ok(!$('.ui-header > div > a').hasClass('ui-btn'));
|
|
});
|
|
|
|
test( "nested footer anchors aren't altered", function(){
|
|
ok(!$('.ui-footer > div > a').hasClass('ui-btn'));
|
|
});
|
|
|
|
test( "nested bar anchors aren't styled", function(){
|
|
ok(!$('.ui-bar > div > a').hasClass('ui-btn'));
|
|
});
|
|
|
|
test( "unnested footer anchors are styled", function(){
|
|
ok($('.ui-footer > a').hasClass('ui-btn'));
|
|
});
|
|
|
|
test( "unnested footer anchors are styled", function(){
|
|
ok($('.ui-footer > a').hasClass('ui-btn'));
|
|
});
|
|
|
|
test( "unnested bar anchors are styled", function(){
|
|
ok($('.ui-bar > a').hasClass('ui-btn'));
|
|
});
|
|
|
|
})(jQuery); |