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

Side by Side Diff: LayoutTests/paint/invalidation/spv2/mix-blend-mode-separate-stacking-context-expected.html

Issue 1302183007: Convert some text-based-repaint tests for spv2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months 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 <html>
3 <head>
4 <style>
5 div {
6 margin: 20px;
7 width: 60px;
8 height: 60px;
9 float: left;
10 }
11 </style>
12 <!-- Repaint test to ensure that setting a blend mode dynamically triggers this operation
13 only with the contents of the nearest ancestor stacking context. -->
14 <body>
15 <div style="background: green; position: relative; z-index: -1;">
16 <div id="first" style="mix-blend-mode: multiply; background-color: blue; "></div>
17 </div>
18 <div style="background: green; position: relative; z-index: -1;">
19 <div id="second" style="mix-blend-mode: normal; background-color: blue;" ></div>
20 </div>
21 <div style="background: green; position: relative; z-index: -1;">
22 <div id="third" style="mix-blend-mode: multiply; background-color: blue; "></div>
23 </div>
24 <div id="fourth" style="background: green; position: relative; z-index: -1;" >
25 <div style="mix-blend-mode: hue; background-color: blue;"></div>
26 </div>
27 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698