diff options
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/positioning/abspos-width-change-inline-container-001-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/positioning/abspos-width-change-inline-container-001-ref.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/positioning/abspos-width-change-inline-container-001-ref.html b/testing/web-platform/tests/css/CSS2/positioning/abspos-width-change-inline-container-001-ref.html new file mode 100644 index 0000000000..3426056af2 --- /dev/null +++ b/testing/web-platform/tests/css/CSS2/positioning/abspos-width-change-inline-container-001-ref.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<style> +#container { + text-align: center; + width: 100px; +} +#relpos { + position: relative; + background: red; +} +#abspos { + position: absolute; + left: 0; + top: 0; + width: 50px; + height: 50px; + background: green; +} +</style> +<body> + <div id="container"> + <span id="relpos">x + <span id="abspos"></span> + </span> + </div> +</body> |