gecko/browser/base/content/test/plugin_test_scriptedPopup3.html

18 lines
395 B
HTML

<!DOCTYPE html>
<html>
<head><meta charset="utf-8"></head>
<body onload="scriptPlugin()">
<div id="container" style="width: 0px; height: 0px;">
<embed id="test" style="width: inherit; height: inherit;" type="application/x-test"/>
</div>
<script>
function scriptPlugin() {
try {
document.getElementById("test").getObjectValue();
}
catch (e) {}
}
</script>
</body>
</html>