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

Side by Side Diff: LayoutTests/perf/compositor-touch-hit-rects.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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 #test { 4 #test {
5 height: 0px; 5 height: 0px;
6 } 6 }
7 .child { 7 .child {
8 height: 5px; 8 height: 5px;
9 width: 5px; 9 width: 5px;
10 margin: 5px; 10 margin: 5px;
11 } 11 }
12 .layer { 12 .layer {
13 -webkit-transform: translateZ(0); 13 transform: translateZ(0);
14 } 14 }
15 </style> 15 </style>
16 </head> 16 </head>
17 <body> 17 <body>
18 <div id='test'> 18 <div id='test'>
19 </div> 19 </div>
20 <script src="../resources/magnitude-perf.js"></script> 20 <script src="../resources/magnitude-perf.js"></script>
21 <script> 21 <script>
22 22
23 function log(msg) 23 function log(msg)
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 Magnitude.run(setupFunction1, test, Magnitude.LINEAR); 112 Magnitude.run(setupFunction1, test, Magnitude.LINEAR);
113 113
114 Magnitude.initialExponent = 4; 114 Magnitude.initialExponent = 4;
115 Magnitude.numPoints = 5; 115 Magnitude.numPoints = 5;
116 Magnitude.run(setupFunction2, test, Magnitude.LINEAR); 116 Magnitude.run(setupFunction2, test, Magnitude.LINEAR);
117 } 117 }
118 main(); 118 main();
119 119
120 </script> 120 </script>
121 </body> 121 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698