| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Scaling and box-shadow</title> | 3 <title>Scaling and box-shadow</title> |
| 4 <style type="text/css" media="screen"> | 4 <style type="text/css" media="screen"> |
| 5 #box { | 5 #box { |
| 6 height: 100px; | 6 height: 100px; |
| 7 width: 100px; | 7 width: 100px; |
| 8 margin: 20px; | 8 margin: 20px; |
| 9 background-color: gray; | 9 background-color: gray; |
| 10 -webkit-transform-origin: top left; | 10 -webkit-transform-origin: top left; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 document.getElementById('box').className = 'smaller'; | 24 document.getElementById('box').className = 'smaller'; |
| 25 } | 25 } |
| 26 </script> | 26 </script> |
| 27 </head> | 27 </head> |
| 28 <body onload="runRepaintAndPixelTest()"> | 28 <body onload="runRepaintAndPixelTest()"> |
| 29 | 29 |
| 30 <img id="box"> | 30 <img id="box"> |
| 31 | 31 |
| 32 </body> | 32 </body> |
| 33 </html> | 33 </html> |
| OLD | NEW |