OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 original test: http://mxr.mozilla.org/mozilla2.0/source/dom/indexedDB/test/tes
t_indexes.html?force=1 | 3 original test: http://mxr.mozilla.org/mozilla2.0/source/dom/indexedDB/test/tes
t_indexes.html?force=1 |
4 license of original test: | 4 license of original test: |
5 " Any copyright is dedicated to the Public Domain. | 5 " Any copyright is dedicated to the Public Domain. |
6 http://creativecommons.org/publicdomain/zero/1.0/ " | 6 http://creativecommons.org/publicdomain/zero/1.0/ " |
7 --> | 7 --> |
8 <html> | 8 <html> |
9 <head> | 9 <head> |
10 <script src="../../../fast/js/resources/js-test-pre.js"></script> | 10 <script src="../../../resources/js-test.js"></script> |
11 <script src="../resources/shared.js"></script> | 11 <script src="../resources/shared.js"></script> |
12 </head> | 12 </head> |
13 <body> | 13 <body> |
14 <script> | 14 <script> |
15 | 15 |
16 description("Test IndexedDB: iterating backwards through an index, skipping dupl
icates"); | 16 description("Test IndexedDB: iterating backwards through an index, skipping dupl
icates"); |
17 | 17 |
18 indexedDBTest(prepareDatabase, testPrev); | 18 indexedDBTest(prepareDatabase, testPrev); |
19 function prepareDatabase() | 19 function prepareDatabase() |
20 { | 20 { |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 finishJSTest(); | 148 finishJSTest(); |
149 } | 149 } |
150 } | 150 } |
151 } | 151 } |
152 | 152 |
153 var successfullyParsed = true; | 153 var successfullyParsed = true; |
154 | 154 |
155 </script> | 155 </script> |
156 </body> | 156 </body> |
157 </html> | 157 </html> |
OLD | NEW |