Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="resources/text-based-repaint.js"></script> | 3 <script src="resources/repaint.js"></script> |
| 4 | 4 |
| 5 <style> | 5 <style> |
| 6 #outer { | 6 #outer { |
| 7 padding-top: 200px; | 7 padding-top: 200px; |
| 8 /* background-size is implicitly set to initial via the background shorthand . */ | 8 /* background-size is implicitly set to initial via the background shorthand . */ |
| 9 background:-webkit-gradient( | 9 background:-webkit-gradient( |
| 10 linear, | 10 linear, |
| 11 left top, | 11 left top, |
| 12 left bottom, | 12 left bottom, |
| 13 color-stop(0%, rgba(255,255,0,0)), color-stop(100%, rgba(0,0,0,1)) | 13 color-stop(0%, rgba(255,255,0,0)), color-stop(100%, rgba(0,0,0,1)) |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 27 } | 27 } |
| 28 </script> | 28 </script> |
| 29 </head> | 29 </head> |
| 30 <body onload='runRepaintTest();'> | 30 <body onload='runRepaintTest();'> |
| 31 <div id='outer'> | 31 <div id='outer'> |
| 32 <div id='inner'> | 32 <div id='inner'> |
| 33 </div> | 33 </div> |
| 34 </div> | 34 </div> |
| 35 </body> | 35 </body> |
| 36 </html> | 36 </html> |
| OLD | NEW |