Index: LayoutTests/svg/text/nonconformant-content-crash-2.html |
diff --git a/LayoutTests/svg/text/nonconformant-content-crash-2.html b/LayoutTests/svg/text/nonconformant-content-crash-2.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bd7e6c77ba4dcd3c9f699b3f228c3f3d074cfd4d |
--- /dev/null |
+++ b/LayoutTests/svg/text/nonconformant-content-crash-2.html |
@@ -0,0 +1,19 @@ |
+<!doctype html> |
+<svg xmlns="http://www.w3.org/2000/svg"> |
+ <text><tspan><tspan>PASS</tspan></tspan><a></a></text> |
+</svg> |
+<script> |
+if (window.testRunner) { |
+ testRunner.dumpAsText(); |
+ testRunner.waitUntilDone(); |
+} |
+var e = document.querySelector('a'); |
+e.appendChild(document.createElement('rb')); |
+ |
+window.onload = function() { |
+ setTimeout(function() { |
+ if (window.testRunner) |
+ testRunner.notifyDone(); |
+ }, 0); |
+}; |
+</script> |