2011-01-21 06:20:07 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
2011-02-18 20:00:18 +00:00
|
|
|
<meta charset="utf-8">
|
2011-05-17 21:28:19 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2011-01-21 06:20:07 +00:00
|
|
|
<title>jQuery Mobile Dialog Test Suite</title>
|
|
|
|
|
|
2011-04-14 20:04:47 +00:00
|
|
|
<script src="../../../js/jquery.js"></script>
|
2011-08-05 22:49:47 +00:00
|
|
|
<script>
|
|
|
|
|
$(document).bind('mobileinit',function(){
|
|
|
|
|
// Expect content to inherit this theme when not explicitly set
|
|
|
|
|
$.mobile.page.prototype.options.contentTheme = "d";
|
|
|
|
|
});
|
2011-08-11 00:06:56 +00:00
|
|
|
</script>
|
2011-03-10 04:16:48 +00:00
|
|
|
<script src="../jquery.setNameSpace.js"></script>
|
2011-04-14 20:04:47 +00:00
|
|
|
<script src="../../../js/"></script>
|
|
|
|
|
<script src="../../../tests/jquery.testHelper.js"></script>
|
2011-01-21 06:20:07 +00:00
|
|
|
|
|
|
|
|
|
2011-09-09 01:35:28 +00:00
|
|
|
<link rel="stylesheet" href="../../../themes/default/"/>
|
2011-04-14 20:04:47 +00:00
|
|
|
<link rel="stylesheet" href="../../../external/qunit.css"/>
|
|
|
|
|
<script src="../../../external/qunit.js"></script>
|
2011-01-21 06:20:07 +00:00
|
|
|
|
2011-04-14 20:04:47 +00:00
|
|
|
<script src="dialog_events.js"></script>
|
2011-10-04 17:54:00 +00:00
|
|
|
|
|
|
|
|
<script src="../swarminject.js"></script>
|
2011-01-21 06:20:07 +00:00
|
|
|
</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>
|
|
|
|
|
|
2011-07-28 21:45:39 +00:00
|
|
|
<div id="bar" data-nstest-role="page" data-nstest-theme="a">
|
2011-08-11 00:06:56 +00:00
|
|
|
<a href="#foo-dialog" id="foo-dialog-link" data-nstest-role="button" data-nstest-inline="true" data-nstest-rel="dialog"></a>
|
2011-01-21 06:20:07 +00:00
|
|
|
</div>
|
|
|
|
|
|
2011-07-28 21:45:39 +00:00
|
|
|
<div id="foo-dialog" data-nstest-role="dialog" data-nstest-theme="b">
|
|
|
|
|
<div data-nstest-role="header" data-nstest-position="inline">
|
2011-02-07 06:55:29 +00:00
|
|
|
<h1>Dialog</h1>
|
|
|
|
|
</div>
|
2011-08-05 22:49:47 +00:00
|
|
|
<div data-nstest-role="content" >
|
2011-07-28 21:45:39 +00:00
|
|
|
<a href="#" id="internal-link">foo</a>
|
|
|
|
|
</div>
|
2011-08-05 22:49:47 +00:00
|
|
|
<div data-nstest-role="footer">
|
2011-07-28 21:45:39 +00:00
|
|
|
footer
|
|
|
|
|
</div>
|
2011-01-21 06:20:07 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|