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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 years, 11 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/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html b/third_party/WebKit/LayoutTests/fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html
index 156d844ff436291ae855bcfb6d1e124c4b8facd3..1dfdfaa747192f59308772ef3040addc91089ffd 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html
@@ -4,6 +4,76 @@
<script src="../../../resources/js-test.js"></script>
</head>
<body>
-<script src="script-tests/HTMLFrameSetElement-window-eventListener-attributes.js"></script>
+<script>
+description("This tests that setting window event listeners on the frameset, sets them on the window.");
+
+function gc()
+{
+ if (window.GCController)
+ return GCController.collect();
+
+ for (var i = 0; i < 10000; i++) { // > force garbage collection (FF requires about 9K allocations before a collect)
+ var s = new String("");
+ }
+}
+
+var frameSet = document.createElement("frameset");
+var func = function() { }
+
+frameSet.onblur = func;
+shouldBe("window.onblur", "func");
+shouldBe("window.onblur", "frameSet.onblur");
+
+frameSet.onfocus = func;
+shouldBe("window.onfocus", "func");
+shouldBe("window.onfocus", "frameSet.onfocus");
+
+frameSet.onerror = func;
+shouldBe("window.onerror", "func");
+shouldBe("window.onerror", "frameSet.onerror");
+
+frameSet.onload = func;
+shouldBe("window.onload", "func");
+shouldBe("window.onload", "frameSet.onload");
+
+frameSet.onbeforeunload = func;
+shouldBe("window.onbeforeunload", "func");
+shouldBe("window.onbeforeunload", "frameSet.onbeforeunload");
+
+frameSet.onhashchange = func;
+shouldBe("window.onhashchange", "func");
+shouldBe("window.onhashchange", "frameSet.onhashchange");
+
+frameSet.onmessage = func;
+shouldBe("window.onmessage", "func");
+shouldBe("window.onmessage", "frameSet.onmessage");
+
+frameSet.onoffline = func;
+shouldBe("window.onoffline", "func");
+shouldBe("window.onoffline", "frameSet.onoffline");
+
+frameSet.ononline = func;
+shouldBe("window.ononline", "func");
+shouldBe("window.ononline", "frameSet.ononline");
+
+frameSet.onresize = func;
+shouldBe("window.onresize", "func");
+shouldBe("window.onresize", "frameSet.onresize");
+
+frameSet.onscroll = func;
+shouldBe("window.onscroll", "func");
+shouldBe("window.onscroll", "frameSet.onscroll");
+
+frameSet.onstorage = func;
+shouldBe("window.onstorage", "func");
+shouldBe("window.onstorage", "frameSet.onstorage");
+
+frameSet.onunload = func;
+shouldBe("window.onunload", "func");
+shouldBe("window.onunload", "frameSet.onunload");
+window.onunload = null;
+
+gc();
+</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698