mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-18 06:50:23 +00:00
53 lines
1.5 KiB
HTML
53 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery Mobile Dialog Test Suite</title>
|
|
|
|
<script src="../../../js/jquery.js"></script>
|
|
<script>
|
|
$(document).bind('mobileinit',function(){
|
|
// Expect content to inherit this theme when not explicitly set
|
|
$.mobile.page.prototype.options.contentTheme = "d";
|
|
});
|
|
</script>
|
|
<script src="../jquery.setNameSpace.js"></script>
|
|
<script src="../../../js/"></script>
|
|
<script src="../../../tests/jquery.testHelper.js"></script>
|
|
|
|
|
|
<link rel="stylesheet" href="../../../themes/default/"/>
|
|
<link rel="stylesheet" href="../../../external/qunit.css"/>
|
|
<script src="../../../external/qunit.js"></script>
|
|
|
|
<script src="dialog_events.js"></script>
|
|
|
|
<script src="../swarminject.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1 id="qunit-header">jQuery Mobile Dialog Test Suite</h1>
|
|
<h2 id="qunit-banner"></h2>
|
|
<h2 id="qunit-userAgent"></h2>
|
|
<ol id="qunit-tests">
|
|
</ol>
|
|
|
|
<div id="bar" data-nstest-role="page" data-nstest-theme="a">
|
|
<a href="#foo-dialog" id="foo-dialog-link" data-nstest-role="button" data-nstest-inline="true" data-nstest-rel="dialog"></a>
|
|
</div>
|
|
|
|
<div id="foo-dialog" data-nstest-role="dialog" data-nstest-theme="b">
|
|
<div data-nstest-role="header" data-nstest-position="inline">
|
|
<h1>Dialog</h1>
|
|
</div>
|
|
<div data-nstest-role="content" >
|
|
<a href="#" id="internal-link">foo</a>
|
|
</div>
|
|
<div data-nstest-role="footer">
|
|
footer
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|