| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=1
"> | 4 <meta name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=1
"> |
| 5 <style> | 5 <style> |
| 6 * { | 6 * { |
| 7 margin: 0; | 7 margin: 0; |
| 8 padding: 0; | 8 padding: 0; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 width: 100px; | 85 width: 100px; |
| 86 height: 20px; | 86 height: 20px; |
| 87 background: gray; | 87 background: gray; |
| 88 } | 88 } |
| 89 | 89 |
| 90 #transformed { | 90 #transformed { |
| 91 position: absolute; | 91 position: absolute; |
| 92 top: 470px; | 92 top: 470px; |
| 93 height: 120px; | 93 height: 120px; |
| 94 width: 200px; | 94 width: 200px; |
| 95 -webkit-transform: translate(100px, 50px) rotate(20deg); | 95 transform: translate(100px, 50px) rotate(20deg); |
| 96 } | 96 } |
| 97 | 97 |
| 98 #overflow { | 98 #overflow { |
| 99 overflow: hidden; /* No scrollbars */ | 99 overflow: hidden; /* No scrollbars */ |
| 100 position: absolute; | 100 position: absolute; |
| 101 width: 300px; | 101 width: 300px; |
| 102 height: 200px; | 102 height: 200px; |
| 103 top: 450px; | 103 top: 450px; |
| 104 left: 470px; | 104 left: 470px; |
| 105 border: 1px solid black; | 105 border: 1px solid black; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 | 269 |
| 270 // End asynchronous test. | 270 // End asynchronous test. |
| 271 if (window.testRunner) | 271 if (window.testRunner) |
| 272 window.testRunner.notifyDone(); | 272 window.testRunner.notifyDone(); |
| 273 }, 0); | 273 }, 0); |
| 274 }, 0); | 274 }, 0); |
| 275 }, false); | 275 }, false); |
| 276 </script> | 276 </script> |
| 277 </body> | 277 </body> |
| 278 </html> | 278 </html> |
| OLD | NEW |