Index: third_party/WebKit/LayoutTests/paint/invalidation/rotated-subpixel.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/rotated-subpixel.html b/third_party/WebKit/LayoutTests/paint/invalidation/rotated-subpixel.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0fbd037a075a9e4ce565af3a0ebaf26f9c2454af |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/rotated-subpixel.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE html> |
+<div id="target" style=" |
+ position: absolute; |
+ top: 100.6px; |
+ right: 0; |
+ height: 100px; |
+ width: 100.6px; |
+ transform: rotate(90deg); |
+ transform-origin: 100% 0; |
+ background-color: red"> |
+</div> |
+<script src="../../resources/run-after-layout-and-paint.js"></script> |
+<script> |
+runAfterLayoutAndPaint(function() { |
+ target.style.backgroundColor = "white"; |
+}, true); |
+</script> |