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

Side by Side Diff: LayoutTests/compositing/overlap-blending/children-opacity-no-overlap.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-type" content="text/html; charset=utf-8"> 4 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
5 <style type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 6
7 div { 7 div {
8 -webkit-box-sizing: border-box; 8 -webkit-box-sizing: border-box;
9 } 9 }
10 .solid { 10 .solid {
11 position: absolute; 11 position: absolute;
12 width: 100px; 12 width: 100px;
13 height: 100px; 13 height: 100px;
14 background-color: green; 14 background-color: green;
15 } 15 }
16 16
17 .opacity { opacity: .5; } 17 .opacity { opacity: .5; }
18 .a { top: 0px; left: 0px;} 18 .a { top: 0px; left: 0px;}
19 .b { top: 200px; left: 200px;} 19 .b { top: 200px; left: 200px;}
20 .c { top: 200px; left: 0px;} 20 .c { top: 200px; left: 0px;}
21 .d { top: 0px; left: 200px;} 21 .d { top: 0px; left: 200px;}
22 22
23 .composited { 23 .composited {
24 -webkit-transform: translateZ(0); 24 transform: translateZ(0);
25 } 25 }
26 * { margin: 0; padding: 0; } 26 * { margin: 0; padding: 0; }
27 27
28 </style> 28 </style>
29 </head> 29 </head>
30 <div class="composited opacity"> 30 <div class="composited opacity">
31 <div class="solid composited a">1</div> 31 <div class="solid composited a">1</div>
32 <div class="solid composited b">2</div> 32 <div class="solid composited b">2</div>
33 <div class="solid composited c">3</div> 33 <div class="solid composited c">3</div>
34 <div class="solid composited d"></div> 34 <div class="solid composited d"></div>
35 </div> 35 </div>
36 36
37 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698