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

Side by Side Diff: LayoutTests/css3/blending/mix-blend-mode-with-masking-expected.html

Issue 779383003: Impl-side painting for css*/ layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix mix-blend-mode-with-masking expectation Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <style>
3 div {
4 width: 100px;
5 height: 100px;
6 }
7 .container {
8 background-color: lime;
9 isolation: isolate;
10 margin: 10px;
11 }
12 .child {
13 background-color: blue;
14 -webkit-mask-image: url('resources/blue-circle.svg');
15 }
16 .blending {
17 mix-blend-mode: difference;
18 }
19 .accelerated {
20 will-change: transform;
21 }
22 </style>
23
24 <div class="container">
25 <div class="blending">
26 <div class="child"></div>
27 </div>
28 </div>
29
30 <div class="container">
31 <div class="blending">
32 <div class="accelerated child"></div>
33 </div>
34 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698