Index: third_party/WebKit/LayoutTests/paint/invalidation/invalidate-caret-in-composited-scrolling-container.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/invalidate-caret-in-composited-scrolling-container.html b/third_party/WebKit/LayoutTests/paint/invalidation/invalidate-caret-in-composited-scrolling-container.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..624e1659ded787f18c9a0f5dde30c6913afd1a82 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/invalidate-caret-in-composited-scrolling-container.html |
@@ -0,0 +1,21 @@ |
+<!DOCTYPE html> |
+<script src="../../fast/repaint/resources/text-based-repaint.js"></script> |
+<script src="../../editing/editing.js"></script> |
+<input id="root" style="will-change: transform" size="5" value="test test test"> |
+<script> |
+window.testIsAsync = true; |
+onload = runRepaintTest; |
+if (window.internals) |
+ window.internals.settings.setPreferCompositingToLCDTextEnabled(true); |
+ |
+function repaintTest() { |
+ root.focus(); |
+ root.scrollLeft = 200; |
+ requestAnimationFrame(function() { |
+ execMoveSelectionForwardByWordCommand(); |
+ execMoveSelectionForwardByWordCommand(); |
+ execMoveSelectionForwardByWordCommand(); |
+ finishRepaintTest(); |
+ }); |
+} |
+</script> |