Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / resources / detached-frame.html
blob43459c272ac900c64d1ab5c91eb379000bd7a8ee
1 <script>
2 function test() {
3 var xhr = new XMLHttpRequest;
4 xhr.open("GET", "detached-frame.html");
5 xhr.send();
6 xhr.onreadystatechange = function() {
7 if (xhr.readyState == xhr.DONE) {
8 var parentWindow = window.parent;
9 parentWindow.document.body.innerHTML += "";
10 parentWindow.testRunner.notifyDone();
14 </script>
15 <body onload="test()">