5 <style type=
"text/css" media=
"screen">
13 background-color: red;
17 transform: translate(
50px,
50px);
21 background-color: green;
24 <script src=
"resources/text-based-repaint.js" type=
"text/javascript"></script>
25 <script type=
"text/javascript">
26 function repaintTest()
28 document
.getElementById('test').style
.background
='green';
31 function setupTest() {
32 window
.scrollBy(0, 50);
35 window
.addEventListener('load', setupTest
, false);
41 https://bugs.webkit.org/show_bug.cgi?id=36686
42 Test repainting of a fixed-position element with a transform.
43 The box should be entirely green.