mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a984124d85
--HG-- extra : transplant_source : -%F70%922y%A0H%9E%F9%1D%20%A2%96u%D3%2A%0F%B5%1E
24 lines
471 B
HTML
24 lines
471 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function doShrink()
|
|
{
|
|
var plugin = document.getElementById("plugin");
|
|
plugin.setSlowPaint(true);
|
|
plugin.width = "50";
|
|
plugin.height = "40";
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
document.addEventListener("MozReftestInvalidate", doShrink, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<embed id="plugin" type="application/x-test"
|
|
width="300" height="500">
|
|
</embed>
|
|
</body>
|
|
</html>
|