| Index: LayoutTests/fast/table/table-continuation-outline-paint-crash.html
|
| diff --git a/LayoutTests/fast/table/table-continuation-outline-paint-crash.html b/LayoutTests/fast/table/table-continuation-outline-paint-crash.html
|
| index 132376897e547af11a4d4c61672b7700a360c3f2..8c9a88da76a9348313178183a8f502a42bb35f1e 100644
|
| --- a/LayoutTests/fast/table/table-continuation-outline-paint-crash.html
|
| +++ b/LayoutTests/fast/table/table-continuation-outline-paint-crash.html
|
| @@ -1,32 +1,32 @@
|
| -<html>
|
| -<body onload="runTest();">
|
| -You should see a PASS with a solid outline around it.
|
| -<script>
|
| -function runTest()
|
| -{
|
| - table = document.createElement('table');
|
| - document.body.appendChild(table);
|
| -
|
| - span1 = document.createElement('span');
|
| - span1.style.outlineStyle = 'solid';
|
| - span1.appendChild(document.createTextNode('PASS'));
|
| -
|
| - span2 = document.createElement('span');
|
| - span1.appendChild(span2);
|
| -
|
| - table.appendChild(span1);
|
| -
|
| - span4 = document.createElement('span');
|
| - span4.style.display = 'list-item';
|
| - span2.appendChild(span4);
|
| -
|
| - document.body.offsetTop;
|
| -
|
| - span1.removeChild(span2);
|
| - span3 = document.createElement('span');
|
| - span3.insertBefore(span2, null);
|
| -}
|
| -</script>
|
| -</body>
|
| -</html>
|
| -</html>
|
| +<html>
|
| +<body onload="runTest();">
|
| +You should see a PASS with a solid outline around it.
|
| +<script>
|
| +function runTest()
|
| +{
|
| + table = document.createElement('table');
|
| + document.body.appendChild(table);
|
| +
|
| + span1 = document.createElement('span');
|
| + span1.style.outlineStyle = 'solid';
|
| + span1.appendChild(document.createTextNode('PASS'));
|
| +
|
| + span2 = document.createElement('span');
|
| + span1.appendChild(span2);
|
| +
|
| + table.appendChild(span1);
|
| +
|
| + span4 = document.createElement('span');
|
| + span4.style.display = 'list-item';
|
| + span2.appendChild(span4);
|
| +
|
| + document.body.offsetTop;
|
| +
|
| + span1.removeChild(span2);
|
| + span3 = document.createElement('span');
|
| + span3.insertBefore(span2, null);
|
| +}
|
| +</script>
|
| +</body>
|
| +</html>
|
| +</html>
|
|
|