Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/paint/pagination/composited-paginated-outlined-box.html |
| diff --git a/third_party/WebKit/LayoutTests/paint/pagination/composited-paginated-outlined-box.html b/third_party/WebKit/LayoutTests/paint/pagination/composited-paginated-outlined-box.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..28a6b7a09e9cacd48e0c37af01d9ecf81bbab49a |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/paint/pagination/composited-paginated-outlined-box.html |
| @@ -0,0 +1,34 @@ |
| +<!DOCTYPE html> |
|
trchen
2017/05/16 23:26:47
Is it possible to reduce this further? (And make i
chrishtr
2017/05/17 02:00:14
Done.
|
| +<script src="../../resources/testharness.js"></script> |
| +<script src="../../resources/testharnessreport.js"></script> |
| +<html lang="en" style=" |
| +"> |
| + <body style=" |
| + max-width: 1440px; |
| + height: 100%; |
| + margin: 0 auto; |
| + "> |
| +<div id='div1' style=" |
| + |
| + position:relative"> |
| + <div id='div2' style=" |
| + column-gap: 0; |
| + column-count: 2; |
| + position: relative; |
| + margin: 0; |
| + padding: 0; |
| + "> |
| + <a id='link1' style="padding-top: 133.333%; position:relative; display: block;"> |
| + <div id='div4' style="width: 322px; height: 386px; background: lightgray; position:absolute; top:0; left:0;"></div> |
| + </a> |
| + <a id='link2' href="" style="padding-top: 133.333%; position:relative; display: block; z-index: 10"> |
| + <div id='div3' style="width: 322px; height: 386px; background: lightblue; position:absolute; top:0; left:1px; transform:translateZ(0); |
| + outline: auto 1px; |
| + "></div> |
| + </a> |
| + </div> |
| +</div> |
| +</body> |
| +<script> |
| +test(function() {}); |
| +</script> |