mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
395 B
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>
|