Chromium Code Reviews| Index: LayoutTests/compositing/will-change/containing-block-added-expected.html |
| diff --git a/LayoutTests/compositing/will-change/containing-block-added-expected.html b/LayoutTests/compositing/will-change/containing-block-added-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cd76d40d4efb828187260312e3165d74c2ff3da6 |
| --- /dev/null |
| +++ b/LayoutTests/compositing/will-change/containing-block-added-expected.html |
| @@ -0,0 +1,32 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| + <style> |
| + #container { |
| + -webkit-transform: translateZ(0); |
| + position: absolute; |
| + left: 200px; |
| + top: 100px; |
| + width: 100px; |
| + height: 100px; |
| + background-color: blue; |
| + } |
| + |
| + .fixed { |
| + position: fixed; |
| + left: 50px; |
| + top: 50px; |
| + width: 75px; |
| + height: 75px; |
| + background-color: green |
| + } |
| + </style> |
| +</head> |
| + |
| +<body> |
| + <div id="container"> |
| + <div class="fixed"></div> |
| + </div> |
| +</body> |
| + |
| +</html> |