diff options
Diffstat (limited to 'src/test/ref/overflow_position_abs_inside_normal_b.html')
-rw-r--r-- | src/test/ref/overflow_position_abs_inside_normal_b.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/ref/overflow_position_abs_inside_normal_b.html b/src/test/ref/overflow_position_abs_inside_normal_b.html new file mode 100644 index 00000000000..6d0bb81e4be --- /dev/null +++ b/src/test/ref/overflow_position_abs_inside_normal_b.html @@ -0,0 +1,17 @@ +<html> + <title> + `overflow: hidden` on #second has no effect on #abs because its CB is #first. + </title> + <head> + <style> + #first { + height: 200px; + width: 200px; + background: green; + } + </style> + </head> + <body> + <div id="first"></div> + </body> +</html> |