haikuwebkit/LayoutTests/plugins/instance-available-before-s...

16 lines
566 B
HTML

<link rel="stylesheet" href="data:text/css,">
<object id="plug-in" type="application/x-webkit-test-netscape" width=100 height=100></object>
<p id="result">
</p>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var plugIn = document.getElementById("plug-in");
document.getElementById("result").innerText = ("eventLoggingEnabled" in plugIn)
? "PASS: Plug-in instance available while waiting for style sheets to load"
: "FAIL: Plug-in not instantiated on property access while waiting for style sheets to load";
</script>