mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>jQuery Mobile Init Test Suite</title>
|
|
<!-- meta viewport left out on purpose for test append -->
|
|
<script src="../../../js/jquery.js"></script>
|
|
<script src="../jquery.setNameSpace.js"></script>
|
|
<script src="../../../tests/jquery.testHelper.js"></script>
|
|
<script src="../../../external/qunit.js"></script>
|
|
<script src="../../../external/requirejs/require.js"></script>
|
|
<script>
|
|
$.testHelper.asyncLoad([
|
|
[
|
|
"jquery.mobile.core",
|
|
"jquery.mobile.hashchange",
|
|
],
|
|
[ "init_core.js" ],
|
|
[ "jquery.mobile.init" ]
|
|
]);
|
|
</script>
|
|
|
|
<link rel="stylesheet" href="../../../css/themes/default/jquery.mobile.css"/>
|
|
<link rel="stylesheet" href="../../../external/qunit.css"/>
|
|
|
|
<script src="../swarminject.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1 id="qunit-header">jQuery Mobile Init Test Suite</h1>
|
|
<h2 id="qunit-banner"></h2>
|
|
<h2 id="qunit-userAgent"></h2>
|
|
<ol id="qunit-tests">
|
|
</ol>
|
|
|
|
<div data-nstest-role="page" id="foo">
|
|
</div>
|
|
|
|
<div data-nstest-role="page" id="bar" data-nstest-url="bak">
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|