Update web-platform-tests to revision b382ac7192087da0a7439902e20be76ab7587ee8

This commit is contained in:
WPT Sync Bot 2018-08-10 21:31:07 -04:00
parent 3e96a322ae
commit defee2aae0
45 changed files with 645 additions and 189 deletions

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<div style="background: green">
<div>Expected: a black square on green background.</div>
<svg style="height: 200px">
<foreignObject>
<div style="width: 200px; height: 200px; background: black"></div>
</foreignObject>
</svg>
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<title>'mix-blend-mode' for &lt;svg:foreignObject&gt;</title>
<link rel="help" href="https://www.w3.org/TR/SVG2/render.html#PaintersModel">
<link rel="match" href="blending-svg-foreign-object-ref.html">
<div style="background: green">
<div>Expected: a black square on green background.</div>
<svg style="width: 200px; height: 200px">
<foreignObject style="mix-blend-mode: multiply">
<div style="width: 200px; height: 200px; background: red"></div>
</foreignObject>
</svg>
</div>

View file

@ -0,0 +1,6 @@
<!DOCTYPE html>
<div style="background: green">
<div>Expected: a black square on green background.</div>
<svg style="width: 200px; height: 200px; background: black">
</svg>
</div>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<title>'mix-blend-mode' for &lt;svg&gt;</title>
<link rel="help" href="https://www.w3.org/TR/SVG2/render.html#PaintersModel">
<link rel="match" href="blending-svg-root-ref.html">
<div style="background: green">
<div>Expected: a black square on green background.</div>
<svg style="mix-blend-mode: multiply; width: 200px; height: 200px; background: red">
</svg>
</div>