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

Unified Diff: LayoutTests/fast/multicol/vertical-lr/gap-non-negative.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/vertical-lr/gap-non-negative.html
diff --git a/LayoutTests/fast/multicol/vertical-lr/gap-non-negative.html b/LayoutTests/fast/multicol/vertical-lr/gap-non-negative.html
deleted file mode 100644
index d2a3d8d4b6cb9d9973f7325bf14b633e03a5b08a..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/vertical-lr/gap-non-negative.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<body style="-webkit-writing-mode:vertical-lr">
-<p>
- Test for <i><a href="rdar://problem/5962118">rdar://problem/5962118</a> Crash in RenderBlock::calcColumnWidth()</i>.
-</p>
-<p>
- This tests that the <tt>column-gap</tt> property does not allow negative values.
-</p>
-<p id = "result"></p>
-<div id="target" style="-webkit-column-count: 4; -webkit-column-gap: -10px;"></div>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var style = getComputedStyle(document.getElementById("target"));
- var columnGap = style.getPropertyValue("-webkit-column-gap");
- document.getElementById("result").innerText = (columnGap == "0" || columnGap == "normal") ? "PASS" : "FAIL: column-gap is " + columnGap;
-</script>

Powered by Google App Engine
This is Rietveld 408576698