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

Unified Diff: LayoutTests/fast/multicol/span/before-child-anonymous-column-block.html

Issue 1143153006: Remove old multicol tests that were only run with the old implementation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/before-child-anonymous-column-block.html
diff --git a/LayoutTests/fast/multicol/span/before-child-anonymous-column-block.html b/LayoutTests/fast/multicol/span/before-child-anonymous-column-block.html
deleted file mode 100644
index f1cd947e5f17b6abbfedd59e15532d7fd71fcf70..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/span/before-child-anonymous-column-block.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html style="font-family: Ahem; font-size: 10px; -webkit-font-smoothing: none;">
-<body>
-<style>
-#test1 { -webkit-column-count: 2; }
-#test2 { -webkit-column-span: all; }
-#test3 { content: counter(c); }
-</style>
-<script>
-onload = function() {
-test1 = document.createElement('div');
-test1.setAttribute('id', 'test1');
-document.body.appendChild(test1);
-test2 = document.createElement('div');
-test2.setAttribute('id', 'test2');
-test1.appendChild(test2);
-test3 = document.createElement('div');
-test3.setAttribute('id', 'test3');
-test1.appendChild(test3);
-test4 = document.createElement('div');
-test1.appendChild(test4);
-test4.style.display = 'table-row-group';
-test3.appendChild(document.createTextNode('3'));
-test4.appendChild(document.createTextNode('4'));
-document.body.offsetTop;
-document.body.style.zoom = 2;
-}
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698