| Index: third_party/WebKit/LayoutTests/paint/overflow/non-composited-fixed-position-descendant.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/overflow/non-composited-fixed-position-descendant.html b/third_party/WebKit/LayoutTests/paint/overflow/non-composited-fixed-position-descendant.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3008bd7dcfcf4308a026389cff4a5303b295c33a
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/overflow/non-composited-fixed-position-descendant.html
|
| @@ -0,0 +1,26 @@
|
| +<div id="parent">
|
| + <div id="fixed">
|
| + </div>
|
| +</div>
|
| +<!-- 'fixed' should overflow the bounds of 'parent', because 'parent' is not
|
| +the containing block for 'fixed' -->
|
| +<style>
|
| +#parent {
|
| + position: absolute;
|
| + z-index: 0;
|
| + overflow: auto;
|
| + background: lightgray;
|
| + width: 150px;
|
| + height: 150px;
|
| + backface-visibility: hidden;
|
| +}
|
| +
|
| +#fixed {
|
| + position: fixed;
|
| + top: 30px;
|
| + left: 30px;
|
| + height: 200px;
|
| + width: 200px;
|
| + background: lightblue;
|
| +}
|
| +</style>
|
|
|