haikuwebkit/LayoutTests/plugins/npruntime/set-property.html

16 lines
661 B
HTML

<embed name="plg" type="application/x-webkit-test-netscape" width=100 height=100></embed>
<p>Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=30295">https://bugs.webkit.org/show_bug.cgi?id=30295</a>
REGRESSION (r48492): Gmail voice and video chat doesn't work</i>.</p>
<p id="result">FAIL: Text did not run</p>
<script>
if (window.testRunner)
testRunner.dumpAsText();
plg.eventLoggingEnabled = true;
document.getElementById("result").innerText = plg.eventLoggingEnabled
? "PASS: Successfully set a plug-in's property"
: "FAIL: Failed to set a plug-in's property";
plg.eventLoggingEnabled = false;
</script>