Chromium Code Reviews| Index: LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping.html |
| diff --git a/LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping.html b/LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..532e8d1dbfaa5faaacb882c0b4260f9b0914bb83 |
| --- /dev/null |
| +++ b/LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping.html |
| @@ -0,0 +1,22 @@ |
| +<!DOCTYPE html> |
|
eae
2015/08/20 17:01:37
What, no title tag? :p
|
| +<style> |
| +body { |
| + position: relative; |
| + left: 0.5px; |
| +} |
| +.parent { |
| + display: inline-block; |
| + transform: scale(5); |
| + opacity: 0.8; |
| +} |
| +.child { |
| + position: absolute; |
| + width: 10px; |
| + height: 10px; |
| + background: red; |
| + border: 1px solid black; |
| +} |
| +</style> |
| +<div class="parent"> |
| + <div class="child"></div> |
| +</div> |