| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="resources/window-resize-repaint.js"></script> | 2 <script src="resources/window-resize-repaint.js"></script> |
| 3 <script> | 3 <style> |
| 4 if (window.internals) { | 4 html { overflow: hidden; } |
| 5 internals.settings.setOverlayScrollbarsEnabled(true); | 5 </style> |
| 6 internals.settings.setMockScrollbarsEnabled(true); | |
| 7 } | |
| 8 </script> | |
| 9 <div style="position: absolute; width: 2000px; height: 2000px; background-color:
blue"> | 6 <div style="position: absolute; width: 2000px; height: 2000px; background-color:
blue"> |
| 10 <div style="width: 20%; height: 20%; background-color: yellow"> | 7 <div style="width: 20%; height: 20%; background-color: yellow"> |
| 11 </div> | 8 </div> |
| 12 </div> | 9 </div> |
| OLD | NEW |