| Index: third_party/WebKit/LayoutTests/paint/invalidation/vertical-rl-overflow.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/vertical-rl-overflow.html b/third_party/WebKit/LayoutTests/paint/invalidation/vertical-rl-overflow.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a5c7dc2bfd2456503aca6a2ab69fe124f126ca23
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/vertical-rl-overflow.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +#div {
|
| + box-shadow: -50px 0 red;
|
| + position: absolute;
|
| + top: 100px;
|
| + left: 100px;
|
| + width: 100px;
|
| + height: 100px;
|
| + writing-mode: vertical-rl;
|
| + background-color: blue;
|
| +}
|
| +</style>
|
| +Tests paint invalidation of a verticle-rl div with overflow. Passes if no under-invalidation reported and shows no red.
|
| +<div id="div"></div>
|
| +<script src="resources/text-based-repaint.js"></script>
|
| +<script>
|
| +function repaintTest() {
|
| + div.style.boxShadow = '-50px 0 green';
|
| +}
|
| +onload = runRepaintAndPixelTest;
|
| +</script>
|
|
|