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

Unified Diff: LayoutTests/fast/multicol/span/empty-anonymous-block-split-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/span/empty-anonymous-block-split-crash.html
diff --git a/LayoutTests/fast/multicol/span/empty-anonymous-block-split-crash.html b/LayoutTests/fast/multicol/span/empty-anonymous-block-split-crash.html
deleted file mode 100644
index cd9d6a5a56eb37e60f3a37dbdf14710148b73280..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/span/empty-anonymous-block-split-crash.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-#test0 { -webkit-column-width: 1px; }
-#test2::after { display: compact; content: ''; }
-#test3 { content: counter(c); -webkit-column-span: all; }
-</style>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-onload = function() {
- test0 = document.createElement('div');
- test0.setAttribute('id', 'test0');
- document.body.appendChild(test0);
- test1 = document.createElement('div');
- test0.appendChild(test1);
- test2 = document.createElement('div');
- test2.setAttribute('id', 'test2');
- test1.appendChild(test2);
- test3 = document.createElement('div');
- test3.setAttribute('id', 'test3');
- test2.appendChild(test3);
- test2.appendChild(document.createTextNode('A'));
- document.designMode = 'on';
- document.execCommand('selectall');
- document.body.offsetTop;
- document.body.innerHTML = "WebKit Bug - Crash in multi-column layout.<br />PASS. WebKit didn't crash.";
-}
-</script>
-</head>
-<body>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698