Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / assert-on-node-removal.html
blob19adefb23b15cc3dd9578d337053874066007a50
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <svg xmlns="http://www.w3.org/2000/svg">
5 <script>
6 // We had an assertion failure in ChildNodeRemovalNotifier::notifyNodeRemovedFromTree.
7 if (window.testRunner)
8 testRunner.dumpAsText();
9 var d = document.createElement('div');
10 var s = document.createElement('script');
11 s.textContent = 'document.currentScript.nextSibling.remove();';
12 d.appendChild(s);
13 d.appendChild(document.createElement('input'));
14 document.body.appendChild(d);
15 document.body.innerHTML = 'PASS';
16 </script></svg>
17 </body>
18 </html>