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

Unified Diff: LayoutTests/fast/frames/cross-site-this.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/fast/frames/cross-site-this.html
diff --git a/LayoutTests/fast/frames/cross-site-this.html b/LayoutTests/fast/frames/cross-site-this.html
deleted file mode 100644
index 13e8d9c0cc13aa6936b5aaf8c60deb0d936e3a7b..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/frames/cross-site-this.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-// The 'this' value provided to this method, and provided by this method to 'bar', should
-// both be the containing window object.
-function foo(childThis) {
- bar(childThis, this);
-}
-
-function bar(childThis, parentThis) {
- var result = "PASS";
-
- if (childThis != frames[0])
- result = "FAIL";
- if (parentThis != window)
- result = "FAIL";
- if (this != window)
- result = "FAIL";
-
- dump(result);
-}
-
-function dump(str)
-{
- document.getElementById("output").innerText = str;
-}
-
-
-</script>
-
-<div>This test checks whether cross-site calling uses the proper
-object as the global "this" value. The text below should say
-PASS:</div>
-
-<div id="output"> </div>
-
-<iframe src="resources/cross-site-this-helper.html"></iframe>

Powered by Google App Engine
This is Rietveld 408576698