| Index: LayoutTests/fast/multicol/vertical-lr/break-properties.html
 | 
| diff --git a/LayoutTests/fast/multicol/vertical-lr/break-properties.html b/LayoutTests/fast/multicol/vertical-lr/break-properties.html
 | 
| deleted file mode 100644
 | 
| index e8e844535a4088b907bb30d6dc659e0c097ad4fc..0000000000000000000000000000000000000000
 | 
| --- a/LayoutTests/fast/multicol/vertical-lr/break-properties.html
 | 
| +++ /dev/null
 | 
| @@ -1,36 +0,0 @@
 | 
| -<style>
 | 
| -    div.box { -webkit-box-sizing: border; border: solid blue; }
 | 
| -    div.shorter { width: 54px; }
 | 
| -    div.taller { width: 72px; }
 | 
| -</style>
 | 
| -<body style="-webkit-writing-mode:vertical-lr">
 | 
| -<div style="width:100px; height:630px; -webkit-columns:6; -webkit-column-gap:5px; columns:6; column-gap:5px; column-fill:auto;">
 | 
| -    <div class="taller box"></div>
 | 
| -    <div class="taller box"></div>
 | 
| -    <div id="break-before" class="shorter box" style="-webkit-column-break-before: always;"></div>
 | 
| -    <div class="shorter box" style="-webkit-column-break-after: always;"></div>
 | 
| -    <div id="after-break" class="shorter box"></div>
 | 
| -    <div id="no-break" class="shorter box" style="-webkit-column-break-inside: avoid;"></div>
 | 
| -</div>
 | 
| -<pre id="console"></pre>
 | 
| -<script>
 | 
| -    if (window.testRunner)
 | 
| -        testRunner.dumpAsText();
 | 
| -
 | 
| -    function log(message)
 | 
| -    {
 | 
| -        document.getElementById("console").appendChild(document.createTextNode(message + "\n"));
 | 
| -    }
 | 
| -
 | 
| -    function testBoxPosition(id, expectedLeft, expectedTop)
 | 
| -    {
 | 
| -        var rect = document.getElementById(id).getBoundingClientRect();
 | 
| -        if (Math.round(rect.left) === expectedLeft && Math.round(rect.top) === expectedTop)
 | 
| -            log("PASS: '" + id + "' is at (" + expectedLeft + ", " + expectedTop + ")");
 | 
| -        else
 | 
| -            log("FAIL: '" + id + "' is at (" + Math.round(rect.left) + ", " + Math.round(rect.top) + ") instead of (" + expectedLeft + " ," + expectedTop + ")");
 | 
| -    }
 | 
| -
 | 
| -    testBoxPosition("break-before", 8, 220);
 | 
| -    testBoxPosition("after-break", 8, 431);
 | 
| -</script>
 | 
| 
 |