| Index: LayoutTests/editing/selection/range-surroundContents-with-preceding-node.html
|
| diff --git a/LayoutTests/editing/selection/range-surroundContents-with-preceding-node.html b/LayoutTests/editing/selection/range-surroundContents-with-preceding-node.html
|
| index d817d98d28eba8ba2e0515fc3ac5363fcd44d73e..18194989f0fc976abe010a04d3912d33fff8f679 100644
|
| --- a/LayoutTests/editing/selection/range-surroundContents-with-preceding-node.html
|
| +++ b/LayoutTests/editing/selection/range-surroundContents-with-preceding-node.html
|
| @@ -2,26 +2,24 @@
|
| <html>
|
| <body>
|
| <script src="../../fast/js/resources/js-test-pre.js"></script>
|
| - <script>
|
| - window.onload = function(){
|
| - var range = document.createRange();
|
| - var rootNode = document.getElementById("root");
|
| - range.setStart(rootNode, 4);
|
| - range.setEnd(rootNode, 6);
|
| - var parentElement = document.getElementById("targetForSurround");
|
| - range.surroundContents(parentElement);
|
| -
|
| - shouldBe(range.startContainer.id, rootNode.id);
|
| - shouldBe(range.startOffset.toString(), "3");
|
| - shouldBe(range.endContainer.id, rootNode.id);
|
| - shouldBe(range.startOffset.toString(), "3");
|
| - };
|
| - </script>
|
| - <script src="../../fast/js/resources/js-test-post.js"></script>
|
| <div id="root">
|
| <div id="targetForSurround"></div>
|
| <div id="description">Test that there is no crash when surroundContents is called with a node preceding the current selection.</div>
|
| <div id="trailingNode"></div>
|
| </div>
|
| + <script>
|
| + var range = document.createRange();
|
| + var rootNode = document.getElementById("root");
|
| + range.setStart(rootNode, 4);
|
| + range.setEnd(rootNode, 6);
|
| + var parentElement = document.getElementById("targetForSurround");
|
| + range.surroundContents(parentElement);
|
| +
|
| + shouldBe('range.startContainer.id', 'rootNode.id');
|
| + shouldBe('range.startOffset', '3');
|
| + shouldBe('range.endContainer.id', 'rootNode.id');
|
| + shouldBe('range.startOffset', '3');
|
| + </script>
|
| + <script src="../../fast/js/resources/js-test-post.js"></script>
|
| </body>
|
| </html>
|
|
|