OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <title>IndexedDB inside of a WebWorker </title> | 2 <title>IndexedDB inside of a WebWorker </title> |
3 <link rel="author" title="Microsoft" href="http://www.microsoft.com"> | 3 <link rel="author" title="Microsoft" href="http://www.microsoft.com"> |
4 <script src="../../../resources/testharness.js"></script> | 4 <script src="../../../resources/testharness.js"></script> |
5 <script src="../../../resources/testharnessreport.js"></script> | 5 <script src="../../../resources/testharnessreport.js"></script> |
6 <script src="support.js"></script> | 6 <script src="support.js"></script> |
7 | 7 |
8 <script> | 8 <script> |
9 var db, count = 0, | 9 var db, count = 0, |
10 t = async_test(); | 10 t = async_test(); |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 count++ | 25 count++ |
26 }); | 26 }); |
27 | 27 |
28 worker.postMessage(1); | 28 worker.postMessage(1); |
29 }) | 29 }) |
30 | 30 |
31 </script> | 31 </script> |
32 | 32 |
33 <div id="log"></div> | 33 <div id="log"></div> |
OLD | NEW |