Chromium Code Reviews| Index: LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed-expected.html |
| diff --git a/LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed-expected.html b/LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..80b07bb9bd921dd3d6912b22038269a01e6040a4 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed-expected.html |
| @@ -0,0 +1,23 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +div { |
| + width: 100px; |
| + height: 50px; |
| +} |
| +#transformed { |
| + overflow: hidden; |
| + -webkit-transform: translateZ(0); |
| + height: 100px; |
| + width: 100px; |
| + |
| +} |
| +#fixed { |
| + position: fixed; |
| + background-color: chartreuse; |
| + width: 100px; |
| + height: 100px; |
| + top: -50px; |
| +} |
| +</style> |
| +<div style="background-color: chartreuse;"></div> |
| +<div style="background-color: salmon;"></div> |