| Index: third_party/WebKit/LayoutTests/paint/invalidation/caret-change-paint-offset-keep-visual.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/caret-change-paint-offset-keep-visual.html b/third_party/WebKit/LayoutTests/paint/invalidation/caret-change-paint-offset-keep-visual.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1ab64af8a22baa799d966b67f36da1eba1461467
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/caret-change-paint-offset-keep-visual.html
|
| @@ -0,0 +1,15 @@
|
| +<!DOCTYPE html>
|
| +<div id="container" style="position: relative; overflow: hidden; width: 200px; height: 100px">
|
| +<div style="width: 400px; height: 2px"></div>
|
| + <input style="outline: none; position: relative; top: 0; left: 0" id="input">
|
| +</div>
|
| +<script src="../../resources/run-after-layout-and-paint.js"></script>
|
| +<script>
|
| +onload = function() {
|
| + input.focus();
|
| + runAfterLayoutAndPaint(function() {
|
| + container.scrollLeft = 56;
|
| + input.style.left = '56px';
|
| + }, true);
|
| +};
|
| +</script>
|
|
|