Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / text / nonconformant-content-crash-2.html
blobbd7e6c77ba4dcd3c9f699b3f228c3f3d074cfd4d
1 <!doctype html>
2 <svg xmlns="http://www.w3.org/2000/svg">
3 <text><tspan><tspan>PASS</tspan></tspan><a></a></text>
4 </svg>
5 <script>
6 if (window.testRunner) {
7 testRunner.dumpAsText();
8 testRunner.waitUntilDone();
10 var e = document.querySelector('a');
11 e.appendChild(document.createElement('rb'));
13 window.onload = function() {
14 setTimeout(function() {
15 if (window.testRunner)
16 testRunner.notifyDone();
17 }, 0);
19 </script>