Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html class="reftest-wait">
<style>
html {
overflow: scroll;
scrollbar-color: green green;
}
html.reftest-wait {
scrollbar-color: red red;
}
</style>
<div style="width: 200vw; height: 200vh"></div>
<script>
window.addEventListener("MozAfterPaint", function() {
document.documentElement.classList.remove("reftest-wait");
});
</script>