| Index: LayoutTests/svg/custom/delete-text-innerText-crash.html
|
| diff --git a/LayoutTests/svg/custom/delete-text-innerText-crash.html b/LayoutTests/svg/custom/delete-text-innerText-crash.html
|
| deleted file mode 100644
|
| index 9d56252d865967458f3583e570374297d2d6785f..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/svg/custom/delete-text-innerText-crash.html
|
| +++ /dev/null
|
| @@ -1,29 +0,0 @@
|
| -<html>
|
| -<script>
|
| - function testCrash() {
|
| - q = document.getElementById('root');
|
| - r = document.createRange();
|
| - r.selectNodeContents( q.getElementById('t') );
|
| - window.getSelection().addRange(r)
|
| - document.designMode='on';
|
| - document.execCommand('delete');
|
| - document.execCommand('delete');
|
| -
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| - }
|
| -</script>
|
| -<body onload="testCrash()">
|
| -This test passes if there is no crash or assert.<br/>
|
| -<svg id="root" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
| - <g>
|
| - <rect filter="url(#x)"/>
|
| - <text>aa</text>
|
| - <rect id="t"/>
|
| - <style></style>
|
| - <text>bb</text>
|
| - </g>
|
| - <filter id="x"></filter>
|
| -</svg>
|
| -</body>
|
| -</html>
|
|
|