Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / html / details-summary-document-child.html
blob243ad6c2cc8661511e11ba90e4b60192cae27124
1 <html>
2 <body onload="test()">
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 function test() {
8 document.open();
9 document.insertBefore(document.createElement("summary"), null);
10 // The document don't have <body> so we need use console.log()
11 // to make readable expectation.
12 console.log("PASS unless crash");
14 </script>
15 </body>
16 </html>