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

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

Issue 2452073002: Freeze global prototype chain per WebIDL (Closed)
Patch Set: Test improvements Created 4 years, 1 month 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-regular-propterty-with-iframe-proto.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/xss-DENIED-regular-propterty-with-iframe-proto.html b/third_party/WebKit/LayoutTests/http/tests/security/xss-DENIED-regular-propterty-with-iframe-proto.html
deleted file mode 100644
index 29442f98225916273192c6f7b469c082d3d64e01..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/security/xss-DENIED-regular-propterty-with-iframe-proto.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-<head>
-<script src="resources/cross-frame-access.js"></script>
-</head>
-<body>
-<iframe src="http://localhost:8000/" style=""></iframe>
-<pre id="console"></pre>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-log("Tests that making other frame window a prototype doesn't expose that window properties");
-
-targetWindow = frames[0];
-
-window.onload = function() {
- originalInnerHeight = innerHeight;
-
- __proto__ = targetWindow;
-
- shouldBeTrue('innerHeight === originalInnerHeight');
- shouldBeTrue('this.innerHeight === originalInnerHeight');
-}
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698