| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 div { | 5 div { |
| 6 height: 100px; | 6 height: 100px; |
| 7 width: 100px; | 7 width: 100px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #testCase1 { | 10 #testCase1 { |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 <!-- Only the green div should be visible. --> | 68 <!-- Only the green div should be visible. --> |
| 69 <div id="testCase4" style="background-color: green"> | 69 <div id="testCase4" style="background-color: green"> |
| 70 <div style="background-color: blue; -webkit-backface-visibility: hidden; -webk
it-transform: rotateY(100deg)"> | 70 <div style="background-color: blue; -webkit-backface-visibility: hidden; -webk
it-transform: rotateY(100deg)"> |
| 71 <div style="background-color: lime; -webkit-backface-visibility: hidden; -we
bkit-transform: rotateX(100deg)"> | 71 <div style="background-color: lime; -webkit-backface-visibility: hidden; -we
bkit-transform: rotateX(100deg)"> |
| 72 </div> | 72 </div> |
| 73 </div> | 73 </div> |
| 74 </div> | 74 </div> |
| 75 | 75 |
| 76 <script> | 76 <script> |
| 77 if (window.testRunner) { | 77 if (window.testRunner) { |
| 78 testRunner.dumpAsText(true); // This is only useful as a pixel test. | 78 testRunner.dumpAsTextWithPixelResults(); // This is only useful as a pixe
l test. |
| 79 document.write("<span style='position:absolute; top:-5000px'>This test is
only useful as a pixel test</span>"); | 79 document.write("<span style='position:absolute; top:-5000px'>This test is
only useful as a pixel test</span>"); |
| 80 } | 80 } |
| 81 </script> | 81 </script> |
| 82 </body> | 82 </body> |
| 83 </html> | 83 </html> |
| OLD | NEW |