| Index: third_party/WebKit/LayoutTests/paint/invalidation/empty-object-move-and-resize.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/empty-object-move-and-resize.html b/third_party/WebKit/LayoutTests/paint/invalidation/empty-object-move-and-resize.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..50e637360e63a22f0e4858c44183ca047f9091a9
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/empty-object-move-and-resize.html
|
| @@ -0,0 +1,14 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
|
| +<script>
|
| +function repaintTest() {
|
| + target.style.top = '200px';
|
| + target.style.left = '200px';
|
| + target.style.width = '200px';
|
| + target.style.height = '200px';
|
| +}
|
| +onload = runRepaintTest;
|
| +</script>
|
| +Tests paint invalidation of an empty object when moved and resized.
|
| +It passes if there is not any assertion failure or paint invalidation.
|
| +<div id="target" style="position: absolute; top: 100px; left: 100px; width: 100px; height: 100px"></div>
|
|
|