Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: LayoutTests/css3/compositing/mix-blend-mode-with-opacity-change-js-expected.html

Issue 90983002: [CSS Blending] Fix blending when mix-blend-mode is set from javascript (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5 .container {
6 width: 90px;
7 height: 90px;
8 background-color: rgb(0,2,252);
9 border: 5px solid rgb(3,0,0);
10 }
11 </style>
12 </head>
13 <body onload="applyBlendMode()">
14 <p>Test that mix-blend-mode multiply set from javascript on an element<br />
15 having opacity uses the backdrop limited to its stacking context.</p>
16 <p>This test passes if you can see a blue square with black border.</p>
17 <div class="container">
18 </div>
19 </body>
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698