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

Unified Diff: third_party/WebKit/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html

Issue 2818173003: Indexed DB: Remove nonstandard IDBFactory.webkitGetDatabaseNames() (Closed)
Patch Set: Remove content_browsertest for wGDN Created 3 years, 7 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: third_party/WebKit/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html
diff --git a/third_party/WebKit/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html b/third_party/WebKit/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html
index 35f54e557d4540b34e4ce1f98f2729d87ec44cdf..00a592bb85ab49f5e282dcdd56541e25c6592b82 100644
--- a/third_party/WebKit/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html
+++ b/third_party/WebKit/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html
@@ -55,7 +55,6 @@ function shouldThrow(_a, _e)
window.onload = function() {
shouldThrow("window.openDatabase('SandboxedIframeStorageDisallowed', '1.0', '', 1)", '"SecurityError: Failed to execute \'openDatabase\' on \'Window\': Access to the WebDatabase API is denied in this context."');
- shouldThrow("window.indexedDB.webkitGetDatabaseNames()", '"SecurityError: Failed to execute \'webkitGetDatabaseNames\' on \'IDBFactory\': access to the Indexed Database API is denied in this context."');
shouldThrow("window.indexedDB.open('foo')", '"SecurityError: Failed to execute \'open\' on \'IDBFactory\': access to the Indexed Database API is denied in this context."');
shouldThrow("window.indexedDB.deleteDatabase('foo')", '"SecurityError: Failed to execute \'deleteDatabase\' on \'IDBFactory\': access to the Indexed Database API is denied in this context."');
shouldThrow("window.localStorage", '"SecurityError: Failed to read the \'localStorage\' property from \'Window\': The document is sandboxed and lacks the \'allow-same-origin\' flag."');

Powered by Google App Engine
This is Rietveld 408576698