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

Unified Diff: LayoutTests/fast/multicol/span/split-inline-wrong-post-block-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/split-inline-wrong-post-block-crash.html
diff --git a/LayoutTests/fast/multicol/span/split-inline-wrong-post-block-crash.html b/LayoutTests/fast/multicol/span/split-inline-wrong-post-block-crash.html
deleted file mode 100644
index 392046563fcc851fed174e37f7ba53a8392d2066..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/span/split-inline-wrong-post-block-crash.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<html>
-<head>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-function runTest() {
- var container = document.createElement('div');
- container.style['-webkit-column-count'] = 1;
- document.body.appendChild(container);
- var test1 = document.createElement('div');
- test1.style['-webkit-column-span'] = 'all';
- container.appendChild(test1);
- var test2 = document.createElement('span');
- container.appendChild(test2);
- test2.appendChild(document.createElement('div'));
- var test3 = document.createElement('div');
- test3.style.display = 'table-column';
- container.appendChild(test3);
- container.appendChild(document.createElement('div'));
-}
-</script>
-</head>
-<body onload="runTest()">
-Test passes if it does not crash.
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698