diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ref/basic.list | 5 | ||||
-rw-r--r-- | tests/ref/position_fixed_tile_edge.html | 5 | ||||
-rw-r--r-- | tests/ref/position_fixed_tile_edge_ref.html | 5 |
3 files changed, 13 insertions, 2 deletions
diff --git a/tests/ref/basic.list b/tests/ref/basic.list index 2383e36e5e6..197b4b22a8a 100644 --- a/tests/ref/basic.list +++ b/tests/ref/basic.list @@ -58,6 +58,9 @@ # == position_fixed_a.html position_fixed_b.html # == position_fixed_simple_a.html position_fixed_simple_b.html # == position_fixed_static_y_a.html position_fixed_static_y_b.html +== position_fixed_background_color_a.html position_fixed_background_color_b.html +== position_fixed_overflow_a.html position_fixed_overflow_b.html +== position_fixed_tile_edge.html position_fixed_tile_edge_ref.html == position_relative_a.html position_relative_b.html == position_relative_top_percentage_a.html position_relative_top_percentage_b.html == background_none_a.html background_none_b.html @@ -85,8 +88,6 @@ flaky_cpu == linebreak_simple_a.html linebreak_simple_b.html == overflow_auto.html overflow_simple_b.html == overflow_scroll.html overflow_simple_b.html == overflow_simple_a.html overflow_simple_b.html -== position_fixed_background_color_a.html position_fixed_background_color_b.html -== position_fixed_overflow_a.html position_fixed_overflow_b.html == noscript.html noscript_ref.html == pseudo_inherit.html pseudo_inherit_ref.html experimental == vertical-lr-blocks.html vertical-lr-blocks_ref.html diff --git a/tests/ref/position_fixed_tile_edge.html b/tests/ref/position_fixed_tile_edge.html new file mode 100644 index 00000000000..4a0fd898ea0 --- /dev/null +++ b/tests/ref/position_fixed_tile_edge.html @@ -0,0 +1,5 @@ +<html> + <body> + <div style="background: green; position: fixed; top: 0px; left: 512px; width: 20px; height: 20px;"></div> + </body> +</html> diff --git a/tests/ref/position_fixed_tile_edge_ref.html b/tests/ref/position_fixed_tile_edge_ref.html new file mode 100644 index 00000000000..21166e47f89 --- /dev/null +++ b/tests/ref/position_fixed_tile_edge_ref.html @@ -0,0 +1,5 @@ +<html> + <body> + <div style="background: green; position: absolute; top: 0px; left: 512px; width: 20px; height: 20px;"></div> + </body> +</html> |