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

Side by Side Diff: LayoutTests/compositing/backface-visibility/backface-visibility-hierarchical-transform.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 type="text/css" media="screen"> 4 <style type="text/css" media="screen">
5 div { 5 div {
6 height: 100px; 6 height: 100px;
7 width: 100px; 7 width: 100px;
8 } 8 }
9 9
10 .red { 10 .red {
(...skipping 24 matching lines...) Expand all
35 35
36 .preserves3d { 36 .preserves3d {
37 -webkit-transform-style: preserve-3d; 37 -webkit-transform-style: preserve-3d;
38 } 38 }
39 39
40 .flat { 40 .flat {
41 -webkit-transform-style: flat; 41 -webkit-transform-style: flat;
42 } 42 }
43 43
44 .rotated180 { 44 .rotated180 {
45 -webkit-transform: rotateY(180deg); 45 transform: rotateY(180deg);
46 } 46 }
47 47
48 .backfaceVisible { 48 .backfaceVisible {
49 -webkit-backface-visibility: visible; 49 -webkit-backface-visibility: visible;
50 } 50 }
51 51
52 .backfaceHidden { 52 .backfaceHidden {
53 -webkit-backface-visibility: hidden; 53 -webkit-backface-visibility: hidden;
54 } 54 }
55 </style> 55 </style>
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 </div> 114 </div>
115 115
116 <script> 116 <script>
117 if (window.testRunner) { 117 if (window.testRunner) {
118 testRunner.dumpAsTextWithPixelResults(); // This is only useful as a pixel test. 118 testRunner.dumpAsTextWithPixelResults(); // This is only useful as a pixel test.
119 document.write("<span style='position:absolute; top:-5000px'>This test is on ly useful as a pixel test</span>"); 119 document.write("<span style='position:absolute; top:-5000px'>This test is on ly useful as a pixel test</span>");
120 } 120 }
121 </script> 121 </script>
122 </body> 122 </body>
123 </html> 123 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698