Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / frame-access-during-load.html
blobad70271d6690db060f390725de3436e1c6bd4b7a
1 <html>
2 <body>
3 <p>This test verifies that accessing a frame's document while it is still loading does not prevent the load, but can
4 access at least a temporary empty document.</p>
5 <iframe frameborder=0 height=40 id="frame1" src="resources/success.html"></iframe><br>
6 <iframe frameborder=0 height=40 id="frame2" src="resources/success.html"></iframe><br>
7 <script>
8 document.write(frames[0].document);
9 document.write('<br>');
10 document.write(document.getElementById("frame2").contentDocument);
11 </script>
12 <p>If this test passes, you should see SUCCESS twice, followed by [object HTMLDocument] twice.
14 </body>
15 </html>