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

Unified Diff: LayoutTests/fast/storage/storage-disallowed-in-data-url.html

Issue 99083002: WIP: Migrate generated bindings to new ExceptionState constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 7 years 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/fast/storage/storage-disallowed-in-data-url.html
diff --git a/LayoutTests/fast/storage/storage-disallowed-in-data-url.html b/LayoutTests/fast/storage/storage-disallowed-in-data-url.html
index 5eafb9904aa2a1b48fff896e31b5cba0d688dde1..71e2bd6b5dbf5d2338184383841cde15a7364429 100644
--- a/LayoutTests/fast/storage/storage-disallowed-in-data-url.html
+++ b/LayoutTests/fast/storage/storage-disallowed-in-data-url.html
@@ -15,9 +15,9 @@
errorsSeen++;
window.exceptionMessage = e.data;
if (errorsSeen == 1) {
- shouldBeEqualToString('exceptionMessage', "Access to 'localStorage' is denied for this document. Storage is disabled inside 'data:' URLs.");
+ shouldBeEqualToString('exceptionMessage', "Failed to read the 'localStorage' property from 'Window': Storage is disabled inside 'data:' URLs.");
} else {
- shouldBeEqualToString('exceptionMessage', "Access to 'sessionStorage' is denied for this document. Storage is disabled inside 'data:' URLs.");
+ shouldBeEqualToString('exceptionMessage', "Failed to read the 'sessionStorage' property from 'Window': Storage is disabled inside 'data:' URLs.");
finishJSTest();
}
});

Powered by Google App Engine
This is Rietveld 408576698