Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham 2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html><head>
<title>CSS Test: mix-blend-mode for a simple SVG element - rectangle</title>
<link href="mailto:mbudaes@adobe.com" rel="author" title="Mirela Budăeș">
<link href="mailto:mibalan@adobe.com" rel="reviewer" title="Mihai Balan">
<link href="mailto:cabanier@adobe.com" rel="reviewer" title="Rik Cabanier">
<link href="http://dev.w3.org/fxtf/compositing-1/#csscompositingrules_SVG" rel="help">
<link href="http://dev.w3.org/fxtf/compositing-1/#mix-blend-mode" rel="help">
<meta content="svg" name="flags">
<link href="reference/mix-blend-mode-svg-rectangle-ref.htm" rel="match">
</head>
<body>
<p>There should be no red rectangle on the screen. <br>
Test passes if you see a black rectangle.</p>
<svg width="400px" xmlns:xmlns="http://www.w3.org/2000/svg" version="1.1" height="400px">
<rect y="0" width="100" fill="aqua" x="0" height="100"></rect>
<rect width="100" style="mix-blend-mode: multiply" y="0" x="0" fill="red" height="100"></rect>
</svg>
</body></html>