| 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>
|
|
|