| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |