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