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

Unified Diff: LayoutTests/fast/dynamic/paused-event-dispatch.html

Issue 82843003: Fire overflowchanged events at raf timing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add a test Created 7 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
« no previous file with comments | « no previous file | LayoutTests/fast/dynamic/paused-event-dispatch-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dynamic/paused-event-dispatch.html
diff --git a/LayoutTests/fast/dynamic/paused-event-dispatch.html b/LayoutTests/fast/dynamic/paused-event-dispatch.html
deleted file mode 100644
index 429d506ef54524aecf09a52dcda514b87a05f1f0..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dynamic/paused-event-dispatch.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<body onload="test()">
-<script>
- function overflowChanged()
- {
- document.getElementById("result").innerText = "PASS";
- }
-
- function test()
- {
- if (window.testRunner)
- testRunner.waitUntilDone();
-
- document.body.offsetTop;
- var bottomBox = document.getElementById("bottomBox");
- bottomBox.parentNode.removeChild(bottomBox);
- document.addEventListener("overflowchanged", overflowChanged, true, true);
- }
-
- function iframeResized()
- {
- document.body.appendChild(document.createElement("div"));
- if (window.testRunner)
- testRunner.dumpAsText();
-
- setTimeout(finish, 0);
- }
-
- function finish()
- {
- document.getElementById("tallBox").style.height = "50px";
- if (window.testRunner)
- testRunner.notifyDone();
- }
-</script>
-<p>
- Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=16490">http://bugs.webkit.org/show_bug.cgi?id=16490</a>
- ASSERT in ~FrameView while viewing/reloading WICD test case</i>.
-</p>
-<div>
- <iframe style="width: 100%;" src="resources/paused-event-dispatch-iframe.html"></iframe>
-</div>
-<div id="bottomBox" style="position: absolute; left: 0; top: 5000px; height: 10px; width: 10px;"></div>
-<div style="height: 100px; width: 100px; overflow: auto;" id="overflow">
- <div style="height: 200px;" id="tallBox"></div>
-</div>
-<div id="result">FAIL</div>
-</body>
« no previous file with comments | « no previous file | LayoutTests/fast/dynamic/paused-event-dispatch-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698