| Index: third_party/WebKit/LayoutTests/paint/invalidation/outline-become-affected-by-descendant.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/outline-become-affected-by-descendant.html b/third_party/WebKit/LayoutTests/paint/invalidation/outline-become-affected-by-descendant.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0878c2621f49c95be8e371d4801b8a18520624b1
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/outline-become-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.width = '150px';
|
| +}
|
| +onload = runRepaintTest;
|
| +</script>
|
|
|