1<!DOCTYPE html> 2<html> 3<body> 4This test tests that the statement success callback is called in the right world. 5<div id="console"></div> 6<script> 7var statementSuccessCallbacksInvoked = 0; 8function done() 9{ 10 if ((++statementSuccessCallbacksInvoked == 2) && (window.layoutTestController)) 11 layoutTestController.notifyDone(); 12} 13 14function statementSuccessCallback1(tx, data) 15{ 16 alert("FAIL: Visible in isolated world."); 17 done(); 18} 19 20function statementSuccessCallback2(tx, data) 21{ 22 alert(document.body.bar); 23 done(); 24} 25 26document.body.foo = "FAIL: document.body.foo visible in isolated world."; 27document.body.bar = "PASS: document.body.bar visible in a callback created in this world."; 28 29if (window.layoutTestController) { 30 layoutTestController.clearAllDatabases(); 31 layoutTestController.dumpAsText(); 32 layoutTestController.waitUntilDone(); 33 layoutTestController.evaluateScriptInIsolatedWorld( 34 0, 35 "function statementSuccessCallback1(tx, data)\n" + 36 "{\n" + 37 " alert(document.body.foo);\n" + 38 " window.location='javascript:done()';\n" + 39 "}\n" + 40 "var db1 = openDatabase('StatementSuccessCallbackIsolatedWorld1', '1.0', '', 1);\n" + 41 "db1.transaction(function(tx) {\n" + 42 " tx.executeSql('CREATE TABLE IF NOT EXISTS Test (Foo INT)', [], statementSuccessCallback1);\n" + 43 "});"); 44 45 var db2 = openDatabase('StatementSuccessCallbackIsolatedWorld2', '1.0', '', 1); 46 db2.transaction(function(tx) { 47 tx.executeSql('CREATE TABLE IF NOT EXISTS Test (Foo INT)', [], statementSuccessCallback2); 48 }); 49} 50</script> 51</body> 52</html> 53