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

Unified Diff: LayoutTests/fast/runin/runin-continuations-crash.html

Issue 53373003: Remove display:run-in as per https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/_tHSX… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test 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/runin/runin-continuations-crash.html
diff --git a/LayoutTests/fast/runin/runin-continuations-crash.html b/LayoutTests/fast/runin/runin-continuations-crash.html
deleted file mode 100755
index 17b0452f6139efb88da03a87ad38a103d168dc33..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/runin/runin-continuations-crash.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
-<body>
-WebKit Bug 87264 - Crash in run-ins with continuations while moving back to original position.<br />
-Test passes if it does not crash.<br />
-<style>
-.runIn { display: run-in; }
-</style>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-document.body.offsetTop;
-
-runIn1 = document.createElement('div');
-runIn1.setAttribute('class', 'runIn');
-document.body.appendChild(runIn1);
-
-q1 = document.createElement('q');
-q1.style.display = 'block';
-document.body.appendChild(q1);
-
-span1 = document.createElement('span');
-q1.appendChild(span1);
-
-document.body.offsetTop;
-
-runIn1.appendChild(document.createElement('div'));
-span1.style.display = 'block';
-document.body.offsetTop;
-q1.style.display = 'none';
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698