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

Unified Diff: LayoutTests/fast/events/overflow-viewport-renderer-deleted.html

Issue 959643002: Remove the overflowchanged event with a runtime flag (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tests Created 5 years, 10 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/events/overflow-viewport-renderer-deleted.html
diff --git a/LayoutTests/fast/events/overflow-viewport-renderer-deleted.html b/LayoutTests/fast/events/overflow-viewport-renderer-deleted.html
deleted file mode 100644
index 57cc51459ffc249a1fd05d5988fac5738fddfed2..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/events/overflow-viewport-renderer-deleted.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<script>
- function gc()
- {
- if (window.GCController)
- return GCController.collect();
-
- for (var i = 0; i < 10000; i++) {
- var s = new String("");
- }
- }
-
- onload = function()
- {
- if (window.testRunner)
- testRunner.dumpAsText();
-
- document.getElementById('container').addEventListener('overflowchanged', function() { }, false);
- document.body.offsetTop;
- document.removeChild(document.firstChild);
- gc();
- }
-</script>
-<body>
- Test passes if it does not crash.
- <div id="container" style="height: 200%;"></div>
-</body>

Powered by Google App Engine
This is Rietveld 408576698