mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-05 07:01:00 +00:00
10 lines
333 B
JavaScript
10 lines
333 B
JavaScript
/*
|
|
* mobile dialog unit tests
|
|
*/
|
|
(function($){
|
|
module('jquery.mobile.fieldContain.js');
|
|
|
|
test( "Field container contains appropriate css styles", function(){
|
|
ok($('#test-fieldcontain').hasClass('ui-field-contain ui-body ui-br'), 'A fieldcontain element must contain styles "ui-field-contain ui-body ui-br"');
|
|
});
|
|
})(jQuery);
|