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

Unified Diff: LayoutTests/fast/multicol/span/clone-flexbox.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/clone-flexbox.html
diff --git a/LayoutTests/fast/multicol/span/clone-flexbox.html b/LayoutTests/fast/multicol/span/clone-flexbox.html
deleted file mode 100644
index 4e9aed3f74076552802210a83b35b5ef11d3fd60..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/span/clone-flexbox.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body style="font-family: Ahem; -webkit-font-smoothing: none;">
-<style>
-#container { -webkit-column-width: 100px; }
-#div1 { -webkit-column-span: all; }
-#flexbox1 { color: white; }
-</style>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-document.body.offsetTop;
-var container = document.createElement('div');
-container.setAttribute('id', 'container');
-document.body.appendChild(container);
-flexbox1 = document.createElement('div');
-flexbox1.setAttribute('id', 'flexbox1');
-container.appendChild(flexbox1);
-var div1 = document.createElement('div');
-div1.setAttribute('id', 'div1');
-flexbox1.style.display = '-webkit-flex';
-flexbox1.appendChild(document.createTextNode('a'));
-flexbox1.appendChild(div1);
-flexbox1.appendChild(document.createTextNode('b'));
-onload = function () { document.write("Test passes if no crash."); }
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698