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

Side by Side Diff: LayoutTests/compositing/overlap-blending/preserves3d-opacity.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 div { 6 div {
7 -webkit-box-sizing: border-box; 7 -webkit-box-sizing: border-box;
8 } 8 }
9 .solid { 9 .solid {
10 position: absolute; 10 position: absolute;
11 width: 200px; 11 width: 200px;
12 height: 200px; 12 height: 200px;
13 background-color: green; 13 background-color: green;
14 } 14 }
15 15
16 .opacity { opacity: .1; } 16 .opacity { opacity: .1; }
17 17
18 .preserve3d { 18 .preserve3d {
19 -webkit-transform: translateZ(0); 19 transform: translateZ(0);
20 -webkit-transform-style: preserve-3d; 20 -webkit-transform-style: preserve-3d;
21 } 21 }
22 * { margin: 0; padding: 0; } 22 * { margin: 0; padding: 0; }
23 23
24 </style> 24 </style>
25 </head> 25 </head>
26 <div class="opacity solid preserve3d">123</div> 26 <div class="opacity solid preserve3d">123</div>
27 27
28 </html> 28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698