mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
24 lines
730 B
XML
24 lines
730 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
class="reftest-wait">
|
||
|
<!-- Test to be sure that a zero-sized-in-one-dimension viewBox doesn't
|
||
|
make us fail assertions. -->
|
||
|
<script>
|
||
|
document.addEventListener("MozReftestInvalidate", waitAndFinish, false);
|
||
|
|
||
|
function waitAndFinish() {
|
||
|
// Sadly, MozReftestInvalidate fires sooner than PaintPattern here, so
|
||
|
// we need to wait a little bit to give PaintPattern a chance to hit
|
||
|
// this bug.
|
||
|
setTimeout(finish, 100);
|
||
|
}
|
||
|
|
||
|
function finish() {
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
</script>
|
||
|
<pattern id="test" viewBox="0 0 1 0">
|
||
|
<rect/>
|
||
|
</pattern>
|
||
|
<rect width="200" height="200" fill="url(#test)"/>
|
||
|
</svg>
|