OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 .large { | 5 .large { |
6 width: 100px; | 6 width: 100px; |
7 height: 100px; | 7 height: 100px; |
8 } | 8 } |
9 | 9 |
10 .medium { | 10 .medium { |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 lime div flattens to the rendering context, so the lime div should remain v
isible. --> | 97 lime div flattens to the rendering context, so the lime div should remain v
isible. --> |
98 <div id="testCase4" class="large green"> | 98 <div id="testCase4" class="large green"> |
99 <div class="medium blue" style="-webkit-backface-visibility: hidden; -webkit-t
ransform: rotateY(180deg); -webkit-transform-style: preserve-3d"> | 99 <div class="medium blue" style="-webkit-backface-visibility: hidden; -webkit-t
ransform: rotateY(180deg); -webkit-transform-style: preserve-3d"> |
100 <div class="small lime" style="-webkit-backface-visibility: hidden; -webkit-
transform: rotateX(180deg)"> | 100 <div class="small lime" style="-webkit-backface-visibility: hidden; -webkit-
transform: rotateX(180deg)"> |
101 </div> | 101 </div> |
102 </div> | 102 </div> |
103 </div> | 103 </div> |
104 | 104 |
105 <script> | 105 <script> |
106 if (window.testRunner) { | 106 if (window.testRunner) { |
107 testRunner.dumpAsText(true); // This is only useful as a pixel test. | 107 testRunner.dumpAsTextWithPixelResults(); // This is only useful as a pixe
l test. |
108 document.write("<span style='position:absolute; top:-5000px'>This test is
only useful as a pixel test</span>"); | 108 document.write("<span style='position:absolute; top:-5000px'>This test is
only useful as a pixel test</span>"); |
109 } | 109 } |
110 </script> | 110 </script> |
111 </body> | 111 </body> |
112 </html> | 112 </html> |
OLD | NEW |