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

Side by Side Diff: LayoutTests/compositing/layers-inside-overflow-scroll.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 <title>Layers inside overflow-scroll</title> 4 <title>Layers inside overflow-scroll</title>
5 5
6 <style type="text/css" media="screen"> 6 <style type="text/css" media="screen">
7 7
8 #container { 8 #container {
9 width: 300px; 9 width: 300px;
10 margin: 10px; 10 margin: 10px;
(...skipping 12 matching lines...) Expand all
23 width: 100%; 23 width: 100%;
24 height: 500px; 24 height: 500px;
25 font-size: 24pt; 25 font-size: 24pt;
26 line-height: 150%; 26 line-height: 150%;
27 } 27 }
28 28
29 .compositing { 29 .compositing {
30 height: 100px; 30 height: 100px;
31 width: 100px; 31 width: 100px;
32 background-color: red; 32 background-color: red;
33 -webkit-transform: translateZ(0); 33 transform: translateZ(0);
34 } 34 }
35 </style> 35 </style>
36 <script src="resources/media-testing.js"></script> 36 <script src="resources/media-testing.js"></script>
37 <script src="../media/media-file.js"></script> 37 <script src="../media/media-file.js"></script>
38 38
39 <script type="text/javascript" charset="utf-8"> 39 <script type="text/javascript" charset="utf-8">
40 function testDone() 40 function testDone()
41 { 41 {
42 document.getElementById('details').scrollTop = 100; 42 document.getElementById('details').scrollTop = 100;
43 if (window.testRunner) 43 if (window.testRunner)
(...skipping 14 matching lines...) Expand all
58 </div> 58 </div>
59 59
60 <div id="details"> 60 <div id="details">
61 <div> 61 <div>
62 <div class="compositing"></div> 62 <div class="compositing"></div>
63 </div> 63 </div>
64 </div> 64 </div>
65 65
66 </body> 66 </body>
67 </html> 67 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/layer-creation/translatez-removed.html ('k') | LayoutTests/compositing/layout-width-change.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698