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

Side by Side Diff: LayoutTests/compositing/repaint/resize-repaint.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 #resizing { 6 #resizing {
7 width: 400px; 7 width: 400px;
8 border: 1px solid black; 8 border: 1px solid black;
9 -webkit-transform: translateZ(0); 9 transform: translateZ(0);
10 } 10 }
11 11
12 #resizing > div { 12 #resizing > div {
13 height: 50px; 13 height: 50px;
14 margin: 1px; 14 margin: 1px;
15 background-color: silver; 15 background-color: silver;
16 } 16 }
17 </style> 17 </style>
18 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> 18 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
19 <script> 19 <script>
(...skipping 12 matching lines...) Expand all
32 </head> 32 </head>
33 <body> 33 <body>
34 34
35 <div id="resizing"> 35 <div id="resizing">
36 <div></div> 36 <div></div>
37 <div></div> 37 <div></div>
38 </div> 38 </div>
39 39
40 </body> 40 </body>
41 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698