diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-backgrounds/child-move-reveals-parent-background-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-backgrounds/child-move-reveals-parent-background-ref.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-backgrounds/child-move-reveals-parent-background-ref.html b/testing/web-platform/tests/css/css-backgrounds/child-move-reveals-parent-background-ref.html new file mode 100644 index 0000000000..10324966ed --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/child-move-reveals-parent-background-ref.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<style> + #parent { + width: 150px; + height: 150px; + background-color: green; + } +</style> +<p>There should be a green square below.</p> +<div id="parent"></div> |