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

Side by Side Diff: LayoutTests/compositing/layer-creation/animation-overlap-with-children.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 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 6
7 .animating { 7 .animating {
8 -webkit-animation: slide 10s alternate linear infinite; 8 -webkit-animation: slide 10s alternate linear infinite;
9 } 9 }
10 10
(...skipping 26 matching lines...) Expand all
37 } 37 }
38 38
39 .test2 { 39 .test2 {
40 position: absolute; 40 position: absolute;
41 top: 60px; 41 top: 60px;
42 left: 120px; 42 left: 120px;
43 background-color: orange; 43 background-color: orange;
44 } 44 }
45 45
46 .composited { 46 .composited {
47 -webkit-transform: translateZ(0); 47 transform: translateZ(0);
48 } 48 }
49 49
50 @-webkit-keyframes slide { 50 @-webkit-keyframes slide {
51 from { -webkit-transform: none; } 51 from { transform: none; }
52 to { -webkit-transform: translateX(100px); } 52 to { transform: translateX(100px); }
53 } 53 }
54 </style> 54 </style>
55 <script> 55 <script>
56 if (window.testRunner) { 56 if (window.testRunner) {
57 testRunner.dumpAsText(); 57 testRunner.dumpAsText();
58 testRunner.waitUntilDone(); 58 testRunner.waitUntilDone();
59 } 59 }
60 60
61 function runTest() 61 function runTest()
62 { 62 {
(...skipping 12 matching lines...) Expand all
75 <div class="composited banner"></div> 75 <div class="composited banner"></div>
76 <div class="test1 box">Should be composited</div> 76 <div class="test1 box">Should be composited</div>
77 <div class="test2 box">Should not be composited</div> 77 <div class="test2 box">Should not be composited</div>
78 </div> 78 </div>
79 79
80 <div class="box">Should be composited</div> 80 <div class="box">Should be composited</div>
81 <pre id="layers">Layer tree goes here in DRT</pre> 81 <pre id="layers">Layer tree goes here in DRT</pre>
82 82
83 </body> 83 </body>
84 </html> 84 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/img-layer-grow.html ('k') | LayoutTests/compositing/layer-creation/backing-requirement-changes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698