<!doctype HTML>
<style>
html {
filter: url('#filter1');
}
</style>
<script src="../resources/text-based-repaint.js"></script>
<html>
<div style="position: fixed; width: 100px; height: 100px; background: lightgray"></div>
<div style="position: fixed; width: 100px; height: 100px; background: lightgray; top: 100px; left: 100px;"></div>
<div style="width: 200px; height: 10000px; background: lightblue"></div>
<span id="cvd_extension_svg_filter" hidden="">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="filter1">
<feColorMatrix id="cvd_matrix_1" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix>
</filter>
</defs>
</svg>
</span>
</html>
<script>
onload = runRepaintAndPixelTest;
function repaintTest() {
document.scrollingElement.scrollTop = '10';
}
</script>