Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLDocument / writeln-multiple-calls.html
blobc5ae4459660eb35cfe318adbb5b06e31f94a022f
1 <html>
2 <head>
3 <script>
4 function test() {
5 if (window.testRunner) {
6 window.testRunner.dumpAsText();
9 document.writeln("<pre>");
10 document.writeln("line 1");
11 document.writeln("line 2");
12 document.writeln("</pre>");
14 </script>
15 </head>
16 <body>
17 <p>Tests: calling HTMLDocument::writeln</p>
18 <p>Condition(s): multiple calls</p>
19 <p>
20 Success message:
21 <pre>
22 line 1
23 line 2
24 </pre>
25 </p>
26 <p>Failure message:
27 <pre>
28 line 1line 2
29 </pre>
30 </p>
31 <hr>
32 </body>
33 <script>test()</script>
34 </html>