diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-position/position-absolute-dynamic-static-position-inline.html')
-rw-r--r-- | testing/web-platform/tests/css/css-position/position-absolute-dynamic-static-position-inline.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-position/position-absolute-dynamic-static-position-inline.html b/testing/web-platform/tests/css/css-position/position-absolute-dynamic-static-position-inline.html new file mode 100644 index 0000000000..c0f9ac0718 --- /dev/null +++ b/testing/web-platform/tests/css/css-position/position-absolute-dynamic-static-position-inline.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> +<link rel="help" href="https://www.w3.org/TR/css-position-3/" /> +<meta name="assert" content="This test checks that the static-position of an absolute positioned element changes, if the display value changes from inline to block." /> +<p>Test passes if there is a filled green square.</p> +<div style="position: relative; line-height: 0;"> + <div style="width: 100px; height: 50px; display: inline-block; background: green;"></div> + <div id="target" style="width: 100px; height: 50px; display: inline; position: absolute; background: green;"></div> +</div> +<script> +document.body.offsetTop; +document.getElementById('target').style.display = 'block'; +</script> |