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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/xss-DENIED-method-with-iframe-proto.html

Issue 1360233007: bindings: Moves event handlers and methods of Window to the instance object. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/http/tests/security/xss-DENIED-method-with-iframe-proto.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/xss-DENIED-method-with-iframe-proto.html b/third_party/WebKit/LayoutTests/http/tests/security/xss-DENIED-method-with-iframe-proto.html
index 0886e7d7eebb801881c4b4f967f3820f8c2fe87c..60e45bd555a63eec47a7d15fb5fdb66bac1ad653 100644
--- a/third_party/WebKit/LayoutTests/http/tests/security/xss-DENIED-method-with-iframe-proto.html
+++ b/third_party/WebKit/LayoutTests/http/tests/security/xss-DENIED-method-with-iframe-proto.html
@@ -28,7 +28,7 @@
__proto__ = targetWindow;
shouldThrow('targetWindow.setTimeout(callback, 0, this);', '"SecurityError: Blocked a frame with origin \\"http://127.0.0.1:8000\\" from accessing a cross-origin frame."');
- shouldThrow('setTimeout.call(targetWindow, callback, 0, this);', '"SecurityError: Blocked a frame with origin \\"http://127.0.0.1:8000\\" from accessing a cross-origin frame."');
+ shouldThrow('setTimeout.call(targetWindow, callback, 0, this);', '"SecurityError: Failed to execute \'setTimeout\' on \'Window\': Blocked a frame with origin \\"http://127.0.0.1:8000\\" from accessing a cross-origin frame."');
shouldThrow('originalSetTimeout.call(targetWindow, callback, 0, this);', '"SecurityError: Failed to execute \'setTimeout\' on \'Window\': Blocked a frame with origin \\"http://127.0.0.1:8000\\" from accessing a cross-origin frame."');
originalSetTimeout(check, 10);

Powered by Google App Engine
This is Rietveld 408576698