зеркало из https://github.com/mozilla/gecko-dev.git
33 строки
614 B
HTML
33 строки
614 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" class="reftest-wait">
|
||
|
<meta charset="utf-8">
|
||
|
<title>Scrolling shouldn't invalidate the square.</title>
|
||
|
|
||
|
<style>
|
||
|
body {
|
||
|
margin: 0;
|
||
|
height: 5000px;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<svg width="768" height="1000">
|
||
|
|
||
|
<g transform="translate(0 0.999948799610138)">
|
||
|
<rect x="100" y="100" height="50" width="50" fill="grey" class="reftest-no-paint"/>
|
||
|
</g>
|
||
|
|
||
|
</svg>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
document.documentElement.scrollTop = 11;
|
||
|
|
||
|
window.addEventListener("MozReftestInvalidate", function (e) {
|
||
|
document.documentElement.scrollTop = 51;
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
});
|
||
|
|
||
|
</script>
|