Index: LayoutTests/http/tests/security/resources/cross-origin-iframe-for-indexeddb.html |
diff --git a/LayoutTests/http/tests/security/resources/cross-origin-iframe-for-indexeddb.html b/LayoutTests/http/tests/security/resources/cross-origin-iframe-for-indexeddb.html |
index 5d9ded258f0482270bded06f75702328718b2b60..6ce2c8c4f6a251d6a57b7feb13e6870e695d2bcd 100644 |
--- a/LayoutTests/http/tests/security/resources/cross-origin-iframe-for-indexeddb.html |
+++ b/LayoutTests/http/tests/security/resources/cross-origin-iframe-for-indexeddb.html |
@@ -6,10 +6,10 @@ |
<script> |
function test(method, args) { |
try { |
- var request = window.webkitIndexedDB[method].call(window.webkitIndexedDB, args); |
- document.write('Successfully called window.webkitIndexedDB.' + method + '().<br>'); |
+ var request = window.indexedDB[method].call(window.indexedDB, args); |
+ document.write('Successfully called window.indexedDB.' + method + '().<br>'); |
} catch (exception) { |
- document.write('window.webkitIndexedDB.' + method + '() threw an exception: ' + exception.name + '<br>'); |
+ document.write('window.indexedDB.' + method + '() threw an exception: ' + exception.name + '<br>'); |
} |
} |
test('deleteDatabase', 'testDBName'); |