5 window
.testRunner
.waitUntilDone();
6 function addIsolation() {
7 var isolator
= document
.getElementById('isolator');
8 isolator
.style
.opacity
= "1";
10 window
.testRunner
.notifyDone();
12 window
.addEventListener('load', function () {
13 window
.setTimeout(addIsolation
, 10);
17 <p>The test passes if you see a green square.
</p>
18 <svg xmlns=
"http://www.w3.org/2000/svg" version=
"1.1" width=
"200px" height=
"200px">
19 <g id=
"isolator" style=
"opacity: 0.9">
20 <rect x=
"0" y=
"0" width=
"200" height=
"200" style=
"fill: fuchsia; mix-blend-mode: difference;"/>