mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
95 lines
2.6 KiB
HTML
95 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test whether windowless plugins receive correct visible/invisible notifications.</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
<style>
|
|
.hidden { visibility: hidden; }
|
|
</style>
|
|
|
|
<body onload="startTest()">
|
|
<p id="display"></p>
|
|
|
|
<script type="application/javascript" src="utils.js"></script>
|
|
<script type="application/javascript">
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
var didpaint = function() {};
|
|
|
|
function startTest() {
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
if (SimpleTest.testPluginIsOOP()) {
|
|
if (p.getPaintCount() < 1) {
|
|
setTimeout(startTest, 0);
|
|
return;
|
|
}
|
|
}
|
|
|
|
didpaint = function() {
|
|
ok(false, "Plugin should not paint until it is visible!");
|
|
};
|
|
|
|
ok(!p.isVisible(), "Plugin should not be visible.");
|
|
paintCountIs(p, 0, "Plugin should not have painted.");
|
|
|
|
didpaint = part2;
|
|
|
|
p.style.visibility = 'visible';
|
|
}
|
|
|
|
function part2() {
|
|
ok(p.isVisible(), "Plugin should now be visible.");
|
|
paintCountIs(p, 1, "Plugin should have painted once.");
|
|
|
|
didpaint = part3;
|
|
|
|
p.setColor('FF0000FF'); // this causes an invalidate/repaint
|
|
}
|
|
|
|
const kTimeout = 5000; // 5 seconds
|
|
var part4GiveUp;
|
|
var part4Interval;
|
|
|
|
function part3() {
|
|
ok(p.isVisible(), "Plugin should still be visible.");
|
|
paintCountIs(p, 2, "Plugin should have painted twice.");
|
|
|
|
didpaint = function() {
|
|
ok(false, "Plugin should not paint when it is invisible.");
|
|
};
|
|
|
|
p.style.visibility = 'hidden';
|
|
|
|
part4GiveUp = Date.now() + kTimeout;
|
|
part4Interval = setInterval(part4, 100);
|
|
}
|
|
|
|
function part4() {
|
|
if (p.isVisible()) {
|
|
if (Date.now() < part4GiveUp)
|
|
return;
|
|
|
|
ok(false, "Plugin never became invisible in part4.");
|
|
SimpleTest.finish();
|
|
return;
|
|
}
|
|
|
|
clearInterval(part4Interval);
|
|
|
|
ok(true, "Plugin became invisible again.");
|
|
p.setColor('FF00FF00');
|
|
setTimeout(SimpleTest.finish, 500);
|
|
// wait to make sure we don't actually paint
|
|
}
|
|
</script>
|
|
|
|
<embed id="theplugin" class="hidden" type="application/x-test" drawmode="solid" color="FFFF0000" paintscript="setTimeout(didpaint, 0)"></embed>
|
|
|
|
<script type="application/javascript">
|
|
var p = document.getElementById('theplugin');
|
|
</script>
|