mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>jQuery Mobile Init Test Suite</title>
|
|
<script src="../../../js/jquery.tag.inserter.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.init" ],
|
|
[ "init_dialog.js" ]
|
|
]);
|
|
</script>
|
|
|
|
<link rel="stylesheet" href="../../../css/themes/default/jquery.mobile.css"/>
|
|
<link rel="stylesheet" href="../../../external/qunit.css"/>
|
|
|
|
<script src="../swarminject.js"></script>
|
|
</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="dialog" id="foo">
|
|
<label for="select-choice-0" class="select">Shipping method:</label>
|
|
<select name="select-choice-0" id="select-choice-1">
|
|
<option value="standard">Standard: 7 day</option>
|
|
<option value="rush">Rush: 3 days</option>
|
|
<option value="express">Express: next day</option>
|
|
<option value="overnight">Overnight</option>
|
|
</select>
|
|
</div>
|
|
</body>
|
|
</html>
|