diff options
Diffstat (limited to 'test/layout/positioned-clip-box.html')
-rw-r--r-- | test/layout/positioned-clip-box.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/layout/positioned-clip-box.html b/test/layout/positioned-clip-box.html new file mode 100644 index 00000000..3fce0df4 --- /dev/null +++ b/test/layout/positioned-clip-box.html @@ -0,0 +1,15 @@ +<div style="overflow: hidden"> +<div style="position: absolute; top: 2em"> +visible +</div> +</div> +<div style="overflow: hidden"> +<div style="position: relative; top: 3em"> +hidden +</div> +</div> +<div style="position: relative; overflow: hidden"> +<div style="position: absolute; top: 3em"> +hidden +</div> +</div> |