Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <p>Test passes if the input element is truncated beyond 5000px high on Mac.</p> | |
|
chrishtr
2016/05/09 21:42:19
10000px
wkorman
2016/05/09 22:14:24
Done.
| |
| 3 <form> | |
| 4 <input style="height: 10001px;"> | |
| 5 </form> | |
| 6 <script src="../../resources/run-after-layout-and-paint.js"></script> | |
| 7 <script> | |
| 8 runAfterLayoutAndPaint(function() { | |
| 9 window.scrollTo(0, 10100); | |
| 10 }, true); | |
| 11 </script> | |
| OLD | NEW |