| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 #rotated { | 4 #rotated { |
| 5 width: 100px; | 5 width: 100px; |
| 6 height: 100px; | 6 height: 100px; |
| 7 background: red; | 7 background: red; |
| 8 margin: 10px; | 8 margin: 10px; |
| 9 padding: 10px; | 9 padding: 10px; |
| 10 transform: rotate(180deg); | 10 transform: rotate(180deg); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 document.getElementById('console').innerHTML = 'FAIL'; | 24 document.getElementById('console').innerHTML = 'FAIL'; |
| 25 elt.style.display = 'none'; | 25 elt.style.display = 'none'; |
| 26 } | 26 } |
| 27 </script> | 27 </script> |
| 28 </head> | 28 </head> |
| 29 <body onload="runTest()"> | 29 <body onload="runTest()"> |
| 30 <div id="rotated">180 degree rotation</div> | 30 <div id="rotated">180 degree rotation</div> |
| 31 <div id="console"></div> | 31 <div id="console"></div> |
| 32 </body> | 32 </body> |
| 33 </html> | 33 </html> |
| OLD | NEW |