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

Side by Side Diff: LayoutTests/css3/blending/background-blend-mode-overlapping-accelerated-elements-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 <html>
3 <head>
4 <style>
5 div {
6 width: 160px;
7 height: 160px;
8 transform: rotateY(30deg) rotateX(-30deg);
9 color: black;
10 }
11
12 .a {
13 background: rgba(200, 200, 156, 1);
14 }
15
16 .b, .c {
17 width: 120px;
18 height: 120px;
19 }
20
21 .b {
22 background: rgba(55, 55, 99, 1);
23 color: yellow;
24 }
25
26 .c {
27 background: rgba(155, 155, 199, 1);
28 color: white;
29 margin-top: -90px;
30 }
31
32 </style>
33 </head>
34 <!-- Test to validate that background blending is working properly for series of hardware accelerated elements. -->
35 <body>
36 <div class="a">sample<div class="b">sample</div></div>
37
38 <div class="a">sample<div class="b">sample</div>sample<div class="c">sample< /div></div>
39
40 <div class="a">sample
41 <div class="b">sample</div>
42 <div class="c" style="position:absolute; z-index: -1;">sample sample sam ple sample sample sample sample sample sample sample sample sample</div>
43 </div>
44 </body>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/css3/blending/mix-blend-mode-with-masking-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698