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

Side by Side Diff: LayoutTests/compositing/geometry/abs-position-inside-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> 1 <!DOCTYPE>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Opacity and positioning</title> 4 <title>Opacity and positioning</title>
5 <style type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 .container { 6 .container {
7 position: relative; 7 position: relative;
8 height: 120px; 8 height: 120px;
9 width: 120px; 9 width: 120px;
10 padding: 10px; 10 padding: 10px;
(...skipping 10 matching lines...) Expand all
21 } 21 }
22 22
23 .inner { 23 .inner {
24 position: absolute; 24 position: absolute;
25 width: 100px; 25 width: 100px;
26 height: 100px; 26 height: 100px;
27 background-color: green; 27 background-color: green;
28 } 28 }
29 29
30 .compositing { 30 .compositing {
31 -webkit-transform: translateZ(0); 31 transform: translateZ(0);
32 } 32 }
33 </style> 33 </style>
34 </head> 34 </head>
35 <body> 35 <body>
36 <p>You should see two green boxes below, with no red</p> 36 <p>You should see two green boxes below, with no red</p>
37 37
38 <div class="container"> 38 <div class="container">
39 <div class="child"> 39 <div class="child">
40 <div class="inner"></div> 40 <div class="inner"></div>
41 </div> 41 </div>
42 </div> 42 </div>
43 43
44 <div class="container"> 44 <div class="container">
45 <div class="child"> 45 <div class="child">
46 <div class="inner compositing"></div> 46 <div class="inner compositing"></div>
47 </div> 47 </div>
48 </div> 48 </div>
49 49
50 </body> 50 </body>
51 </html> 51 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/generated-content.html ('k') | LayoutTests/compositing/geometry/ancestor-overflow-change.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698