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