| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 This test tests that the openDatabase() creation callback is called in the right
world. | 4 This test tests that the openDatabase() creation callback is called in the right
world. |
| 5 <div id="console"></div> | 5 <div id="console"></div> |
| 6 <script> | 6 <script> |
| 7 var creationCallbacksExecuted = 0; | 7 var creationCallbacksExecuted = 0; |
| 8 function done() | 8 function done() |
| 9 { | 9 { |
| 10 if ((++creationCallbacksExecuted == 2) && (window.testRunner)) | 10 if ((++creationCallbacksExecuted == 2) && (window.testRunner)) |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 } | 24 } |
| 25 | 25 |
| 26 document.body.foo = "FAIL: document.body.foo visible in isolated world."; | 26 document.body.foo = "FAIL: document.body.foo visible in isolated world."; |
| 27 document.body.bar = "PASS: document.body.bar visible in a callback created in th
is world."; | 27 document.body.bar = "PASS: document.body.bar visible in a callback created in th
is world."; |
| 28 | 28 |
| 29 if (window.testRunner) { | 29 if (window.testRunner) { |
| 30 testRunner.clearAllDatabases(); | 30 testRunner.clearAllDatabases(); |
| 31 testRunner.dumpAsText(); | 31 testRunner.dumpAsText(); |
| 32 testRunner.waitUntilDone(); | 32 testRunner.waitUntilDone(); |
| 33 testRunner.evaluateScriptInIsolatedWorld( | 33 testRunner.evaluateScriptInIsolatedWorld( |
| 34 0, | 34 1, |
| 35 "function creationCallback1(db)\n" + | 35 "function creationCallback1(db)\n" + |
| 36 "{\n" + | 36 "{\n" + |
| 37 " alert(document.body.foo);\n" + | 37 " alert(document.body.foo);\n" + |
| 38 " window.location='javascript:done()';\n" + | 38 " window.location='javascript:done()';\n" + |
| 39 "}\n" + | 39 "}\n" + |
| 40 "var db1 = openDatabase('OpenDatabaseCreationCallbackIsolatedWorld', '1.
0', '', 1, creationCallback1);"); | 40 "var db1 = openDatabase('OpenDatabaseCreationCallbackIsolatedWorld', '1.
0', '', 1, creationCallback1);"); |
| 41 | 41 |
| 42 var db2 = openDatabase('OpenDatabaseCreationCallbackIsolatedWorld2', '1.0',
'', 1, creationCallback2); | 42 var db2 = openDatabase('OpenDatabaseCreationCallbackIsolatedWorld2', '1.0',
'', 1, creationCallback2); |
| 43 } | 43 } |
| 44 </script> | 44 </script> |
| 45 </body> | 45 </body> |
| 46 </html> | 46 </html> |
| OLD | NEW |