Index: third_party/WebKit/LayoutTests/paint/invalidation/outline-not-affected-by-descendant.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/outline-not-affected-by-descendant.html b/third_party/WebKit/LayoutTests/paint/invalidation/outline-not-affected-by-descendant.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..86df233d0f227e27d796de445012cfc3ff0a0a64 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/outline-not-affected-by-descendant.html |
@@ -0,0 +1,11 @@ |
+<!DOCTYPE html> |
+<div id="outline" style="outline: auto; width: 100px; height: 100px"> |
+ <div id="child" style="width: 50px; height: 50px; background-color: red"></div> |
+</div> |
+<script src="resources/text-based-repaint.js"></script> |
+<script> |
+function repaintTest() { |
+ child.style.backgroundColor = 'green'; |
+} |
+onload = runRepaintTest; |
+</script> |