Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / text / nonconformant-content-crash-1.html
blob3b9a1c82a0bdd1529eb4358f1c80031a3fe6b9e4
1 <!doctype html>
2 <svg>
3 <text><tspan>PASS</tspan><tspan><a><ellipse/></a></tspan></text>
4 </svg>
5 <script>
6 if (window.testRunner) {
7 testRunner.dumpAsText();
8 testRunner.waitUntilDone();
10 window.onload = function() {
11 var e = document.querySelector('ellipse');
12 e.parentNode.insertBefore(document.createElement('span'), e);
15 window.onload = function() {
16 setTimeout(function() {
17 if (window.testRunner)
18 testRunner.notifyDone();
19 }, 0);
21 </script>