5 window
.testRunner
.waitUntilDone();
6 function addIsolation() {
7 var isolator
= document
.getElementById('blending');
8 isolator
.style
['mix-blend-mode'] = "difference";
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 style=
"isolation: isolate">
20 <rect id=
"blending" x=
"0" y=
"0" width=
"200" height=
"200" style=
"fill: green;"/>