Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / plugins / instance-available-before-stylesheets-loaded-object.html
blob5f827f9911b1e8d2d8e7a50a3a7465ce63c29fa2
1 <link rel="stylesheet" href="data:text/css,">
2 <object id="plugin" type="application/x-webkit-test-netscape" width=100 height=100></object>
3 <p id="result">
4 </p>
5 <script>
6 if (window.testRunner)
7 testRunner.dumpAsText();
9 var plugIn = document.getElementById("plugin");
11 document.getElementById("result").innerText = ("eventLoggingEnabled" in plugIn)
12 ? "PASS: Plugin instance available while waiting for style sheets to load"
13 : "FAIL: Plugin not instantiated on property access while waiting for style sheets to load";
15 </script>