| Index: third_party/WebKit/LayoutTests/paint/invalidation/resize-mask.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/resize-mask.html b/third_party/WebKit/LayoutTests/paint/invalidation/resize-mask.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a9aee3d27f1d5ef0dae255c7e0238863e56a8437
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/resize-mask.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +#mask {
|
| + width: 100px;
|
| + height: 100px;
|
| + -webkit-mask-box-image: url(../../fast/backgrounds/resources/dot.png) 3;
|
| +}
|
| +#content {
|
| + width: 200px;
|
| + height: 200px;
|
| + background-color: green;
|
| +}
|
| +</style>
|
| +<div id="mask">
|
| + <div id="content"></div>
|
| +</div>
|
| +<script src="../../resources/run-after-layout-and-paint.js"></script>
|
| +<script>
|
| +runAfterLayoutAndPaint(function() {
|
| + mask.style.width = '200px';
|
| +}, true);
|
| +</script>
|
|
|