mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a54ea3aa5f
* * * Bug 753329. Followup: put ThebesLayerInvalidRegionProperty in display-list-builder coordinates so it can be shared by frames with different coordinate systems. r=mattwoodrow
17 lines
505 B
HTML
17 lines
505 B
HTML
<!DOCTYPE HTML>
|
|
<html style="overflow:hidden" class="reftest-wait"
|
|
reftest-displayport-w="800" reftest-displayport-h="2000">
|
|
<body>
|
|
<div id="x" style="position:absolute; width:400px; height:400px; background:red;">
|
|
You should not see any red
|
|
</div>
|
|
<script>
|
|
function doTest() {
|
|
document.getElementById('x').style.visibility = 'hidden';
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</body>
|
|
</html>
|