12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <title>jQuery Mobile Init Test Suite</title>
- <script src="../../../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.init" ],
- [ "init_dialog.js" ]
- ]);
- </script>
- <link rel="stylesheet" href="../../../jquery.mobile-1.0.1.min.cssjquery.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>
|