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

Unified Diff: LayoutTests/fast/multicol/recursive-split-flow-crash.html

Issue 299373006: Move old multicol tests to a separate directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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/multicol/recursive-split-flow-crash.html
diff --git a/LayoutTests/fast/multicol/recursive-split-flow-crash.html b/LayoutTests/fast/multicol/recursive-split-flow-crash.html
deleted file mode 100644
index 0685b550e34ff0f87969aa868bcbeb93c8153935..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/recursive-split-flow-crash.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-Bug 101984: Heap-buffer-overflow in WebCore::RenderBlock::clone.<br />
-Test passes if it does not crash.
-<body>
-<table>
-<div class="container">
-<div class="testClass" id="test1">
-</div>
-<div class="testClass">
-<div>
-<i id="test2"></i>
-</div>
-</div>
-</div>
-</table>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-document.head.appendChild(document.createElement("style"));
-var styleSheet0 = document.styleSheets[0];
-var test1 = document.getElementById("test1");
-var test2 = document.getElementById("test2");
-
-
-document.execCommand("SelectAll", true);
-styleSheet0.insertRule('.testClass { -webkit-column-span: all ; }', 0);
-test1.appendChild(test2);
-styleSheet0.insertRule('.testClass::first-letter { border-style: none; }', 0);
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698