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

Unified Diff: LayoutTests/fast/multicol/overflow-into-columngap.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/overflow-into-columngap.html
diff --git a/LayoutTests/fast/multicol/overflow-into-columngap.html b/LayoutTests/fast/multicol/overflow-into-columngap.html
deleted file mode 100644
index 39755b7780a08d8a16ce93b4b0df807fb9f62ce1..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/overflow-into-columngap.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>MultiColumn: Content in normal flow that extends into column gaps is clipped in middle of column gap</title>
- <link rel="help" href="http://www.w3.org/TR/css3-multicol/#overflow-inside-multicol-elements"/>
- <style>
- #parent
- {
- font: 20px/1 monospace;
- position: relative;
- }
- #multicolumn
- {
- -moz-column-width: 5em;
- -o-column-width: 5em;
- -webkit-column-width: 5em;
- column-width: 5em;
- position: absolute;
- }
- #multicolumn, #reference
- {
- height: 6em;
- width: 11em;
- }
- #multicolumn div
- {
- background: green;
- height: 6em;
- }
- #reference
- {
- position: absolute;
- top: 0;
- }
- #reference div
- {
- position: absolute;
- top: 0;
- background:red;
- height: 6em;
- }
- #right
- {
- right: 0;
- }
- </style>
- </head>
- <body>
- <p>Test passes if there is no red visible on the page.</p>
- <div id="parent">
- <div id="reference">
- <div style="width:5.5em;"></div>
- <div id="right" style="width:5em;"></div>
- </div>
- <div id="multicolumn">
- <div style="width:5.5em;"></div>
- <div style="width:5em;"></div>
- </div>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698