| Index: LayoutTests/fast/multicol/span/list-multi-column-crash.html
|
| diff --git a/LayoutTests/fast/multicol/span/list-multi-column-crash.html b/LayoutTests/fast/multicol/span/list-multi-column-crash.html
|
| deleted file mode 100644
|
| index e083a7f49aac44722b7a70d9dd157e751675f96e..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/multicol/span/list-multi-column-crash.html
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<body>
|
| -Test passes if it does not crash.
|
| -<style>
|
| -.columns
|
| -{
|
| - -webkit-column-count: 2;
|
| - -webkit-column-span: all;
|
| -}
|
| -.list
|
| -{
|
| - display: list-item;
|
| -}
|
| -</style>
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| -list = document.createElement('p');
|
| -list.setAttribute('class', 'list');
|
| -listChild = document.createElement('hr');
|
| -list.appendChild(listChild);
|
| -list.appendChild(document.createTextNode('Text.'));
|
| -outerColumns = document.createElement('div');
|
| -outerColumns.appendChild(list);
|
| -document.body.appendChild(outerColumns);
|
| -outerColumns.setAttribute('class', 'columns');
|
| -document.body.offsetTop;
|
| -
|
| -innerColumns = document.createElement('div');
|
| -innerColumns.setAttribute('class', 'columns');
|
| -listChild.appendChild(innerColumns);
|
| -document.body.offsetTop;
|
| -
|
| -document.body.removeChild(outerColumns);
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|