| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 .parent { | 5 .parent { |
| 6 background-color: white; | 6 background-color: white; |
| 7 width: 60px; | 7 width: 60px; |
| 8 height: 60px; | 8 height: 60px; |
| 9 float: left; | 9 float: left; |
| 10 margin-left: 10px; | 10 margin-left: 10px; |
| 11 } | 11 } |
| 12 .child { | 12 .child { |
| 13 width: 60px; | 13 width: 60px; |
| 14 height: 60px; | 14 height: 60px; |
| 15 background-color: green; | 15 background-color: green; |
| 16 } | 16 } |
| 17 </style> | 17 </style> |
| 18 <body> | 18 <body> |
| 19 <p>Test that mix-blend-mode multiply has no effect when applied over a white b
ackground, for both software and hardware paths.</p> | 19 <p>Test that mix-blend-mode multiply has no effect when applied over a white b
ackground, for both software and hardware paths.</p> |
| 20 <p>This test passes if there are one black and two green boxes.</p> | 20 <p>This test passes if there are one black and two green boxes.</p> |
| 21 <div class="parent"> | 21 <div class="parent"> |
| 22 <div class="child" style="background-color: black;"></div> | 22 <div class="child" style="background-color: black;"></div> |
| 23 </div> | 23 </div> |
| 24 <div class="parent"> | 24 <div class="parent"> |
| 25 <div class="child" style="-webkit-transform: rotateX(0deg);"></div> | 25 <div class="child" style="transform: rotateX(0deg);"></div> |
| 26 </div> | 26 </div> |
| 27 <div class="parent"> | 27 <div class="parent"> |
| 28 <div class="child"></div> | 28 <div class="child"></div> |
| 29 </div> | 29 </div> |
| 30 </body> | 30 </body> |
| 31 </html> | 31 </html> |
| OLD | NEW |