| Index: LayoutTests/svg/text/nonconformant-content-crash-3.html
|
| diff --git a/LayoutTests/svg/text/nonconformant-content-crash-3.html b/LayoutTests/svg/text/nonconformant-content-crash-3.html
|
| deleted file mode 100644
|
| index 6cddcb5dbab3400882e681e2b516bb11fe56ac97..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/svg/text/nonconformant-content-crash-3.html
|
| +++ /dev/null
|
| @@ -1,32 +0,0 @@
|
| -<!doctype html>
|
| -<svg height="300">
|
| -<text y="10">
|
| - <tspan></tspan>
|
| - <textPath></textPath>
|
| - <altGlyph>Bar</altGlyph>
|
| -</text>
|
| -</svg>
|
| -<script>
|
| -if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| -}
|
| -function insertBR(parent) {
|
| - parent.appendChild(document.createTextNode('foo'));
|
| - parent.appendChild(document.createElement('br'));
|
| - parent.appendChild(document.createTextNode('bar'));
|
| -}
|
| -window.onload = function() {
|
| - var t = document.querySelector('text');
|
| - for (var child = t.firstChild; child; child = child.nextSibling) {
|
| - if (child instanceof Text)
|
| - continue;
|
| - insertBR(child);
|
| - }
|
| - insertBR(t);
|
| - setTimeout(function() {
|
| - if (window.testRunner)
|
| - testRunner.notifyDone();
|
| - }, 0);
|
| -};
|
| -</script>
|
|
|