Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1168)

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/caret-change-paint-offset-keep-visual.html

Issue 2736213002: Fix caret paint invalidation issues (Closed)
Patch Set: - Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <div id="container" style="position: relative; overflow: hidden; width: 200px; h eight: 100px">
3 <div style="width: 400px; height: 2px"></div>
4 &nbsp;&nbsp;<input style="outline: none; position: relative; top: 0; left: 0" id ="input">
5 </div>
6 <script src="../../resources/run-after-layout-and-paint.js"></script>
7 <script>
8 onload = function() {
9 input.focus();
10 runAfterLayoutAndPaint(function() {
11 container.scrollLeft = 56;
12 input.style.left = '56px';
13 }, true);
14 };
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698