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

Unified Diff: LayoutTests/fast/dom/Window/script-tests/HTMLFrameSetElement-window-eventListener-attributes.js

Issue 27511002: Forward onscroll on body and frameset to window (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sharedidl
Patch Set: Created 7 years, 2 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/dom/Window/script-tests/HTMLFrameSetElement-window-eventListener-attributes.js
diff --git a/LayoutTests/fast/dom/Window/script-tests/HTMLFrameSetElement-window-eventListener-attributes.js b/LayoutTests/fast/dom/Window/script-tests/HTMLFrameSetElement-window-eventListener-attributes.js
index 2d7d003b735a734fff31aa7be6bd8ce157688508..ba7d2e8eec36c57ea0d2d870946d55935274e693 100644
--- a/LayoutTests/fast/dom/Window/script-tests/HTMLFrameSetElement-window-eventListener-attributes.js
+++ b/LayoutTests/fast/dom/Window/script-tests/HTMLFrameSetElement-window-eventListener-attributes.js
@@ -53,6 +53,10 @@ 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");
« no previous file with comments | « LayoutTests/fast/dom/Window/script-tests/HTMLBodyElement-window-eventListener-attributes.js ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698