Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-with-fixed-position.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-with-fixed-position.html b/third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-with-fixed-position.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..44e4918b877d5f0f477138eccb0d709f6e070181 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-with-fixed-position.html |
| @@ -0,0 +1,19 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +div { |
| + width: 100px; |
| + height: 100px; |
| +} |
| +#container { |
| + contain: paint; |
| + background-color: green; |
| +} |
| +#fixed { |
| + position: fixed; |
| + top: 0px; |
| + left: 100px; |
| + background-color: red; |
| +} |
| +</style> |
| +<body> |
| +<div id="container"><div id="fixed"></div></div> |