4 <script src=
"../../fast/repaint/resources/text-based-repaint.js"></script>
6 <!-- Test for WK108429: All red should disappear, leaving just a green square. -->
7 <body onload=
"runRepaintAndPixelTest()">
8 <svg xmlns=
"http://www.w3.org/2000/svg" xmlns:
xlink=
"http://www.w3.org/1999/xlink" width=
"400" height=
"400">
10 <rect x=
"0" y=
"0" width=
"100" height=
"100" fill=
"green"/>
11 <path id=
"path" d=
"M0 0 L 100 0 L 100 100 L 0 100Z" fill=
"red"/>
14 window
.testIsAsync
= true;
15 function repaintTest() {
16 setTimeout(function() {
17 var pathEl
= document
.getElementById('path');
18 pathEl
.setAttribute('d', 'M0 0Z');