[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.22
[framework/web/webkit-efl.git] / LayoutTests / plugins / instance-available-before-stylesheets-loaded-object.html
1 <link rel="stylesheet" href="data:text/css,">
2 <object id="plug-in" type="application/x-webkit-test-netscape" width=100 height=100></object>
3 <p id="result">
4 </p>
5 <script>
6     if (window.layoutTestController)
7         layoutTestController.dumpAsText();
8
9     var plugIn = document.getElementById("plug-in");
10
11     document.getElementById("result").innerText = ("eventLoggingEnabled" in plugIn)
12         ? "PASS: Plug-in instance available while waiting for style sheets to load"
13         : "FAIL: Plug-in not instantiated on property access while waiting for style sheets to load";
14
15 </script>