Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <style> | 2 <style> |
| 3 #scaleMe { | 3 #scaleMe { |
| 4 width:100px; | 4 width:100px; |
| 5 height:100px; | 5 height:100px; |
| 6 background:yellow; | 6 background:yellow; |
| 7 } | 7 } |
| 8 </style> | 8 </style> |
| 9 <script> | |
| 10 if (window.internals) | |
| 11 window.internals.settings.setForceCompositingMode(true); | |
| 12 </script> | |
| 9 <body> | 13 <body> |
| 10 <div> | 14 <div> |
| 11 <img id="scaleMe" src="resources/circle-200px-none.svg"> | 15 <img id="scaleMe" src="resources/circle-200px-none.svg"> |
| 12 </div> | 16 </div> |
| 13 </body> | 17 </body> |
| OLD | NEW |