Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 #subframe { | |
| 4 width: 400px; | |
| 5 height: 500px; | |
| 6 background-color: blue; | |
| 7 position: relative; | |
| 8 } | |
| 9 | |
| 10 #scroller { | |
| 11 height: 200px; | |
| 12 width: 300px; | |
| 13 position: absolute; | |
| 14 overflow: scroll; | |
| 15 } | |
| 16 | |
| 17 #clip { | |
| 18 position: absolute; | |
| 19 } | |
| 20 </style> | |
| 21 <script> | |
| 22 if (window.testRunner && window.internals) { | |
| 23 internals.settings.setPreferCompositingToLCDTextEnabled(true); | |
| 24 } | |
| 25 | |
| 26 </script> | |
| 27 | |
| 28 <div id="scroller"> | |
| 29 <div id="clip"> | |
| 30 <iframe id="subframe"></iframe> | |
| 31 </div> | |
| 32 </div> | |
| OLD | NEW |