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