Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Unified Diff: LayoutTests/http/tests/security/resources/cross-origin-iframe-for-indexeddb.html

Issue 415753002: Deprecate the webkit-prefixed standard IndexedDB entry points (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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');

Powered by Google App Engine
This is Rietveld 408576698