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

Side by Side Diff: LayoutTests/fast/sub-pixel/sub-pixel-composited-layers.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 <style> 4 <style>
5 #test { 5 #test {
6 margin: 5px; 6 margin: 5px;
7 } 7 }
8 #test.composite > .container { 8 #test.composite > .container {
9 -webkit-transform: translateZ(0); 9 transform: translateZ(0);
10 opacity: 0.95; 10 opacity: 0.95;
11 } 11 }
12 .container { 12 .container {
13 position: absolute; 13 position: absolute;
14 } 14 }
15 .shifter { 15 .shifter {
16 position: absolute; 16 position: absolute;
17 background-color: black; 17 background-color: black;
18 width: 12.5px; 18 width: 12.5px;
19 height: 12.5px; 19 height: 12.5px;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 57
58 // And in 8x8 (where exactly 0.5 is more common) 58 // And in 8x8 (where exactly 0.5 is more common)
59 setupGrid(10, 200, 0, 0.125, 20); 59 setupGrid(10, 200, 0, 0.125, 20);
60 setupGrid(300, 200, 0.125, 0, 20); 60 setupGrid(300, 200, 0.125, 0, 20);
61 } 61 }
62 62
63 setupTest(); 63 setupTest();
64 </script> 64 </script>
65 </body> 65 </body>
66 </html> 66 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698