diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-sizing/intrinsic-percent-replaced-005.html')
-rw-r--r-- | testing/web-platform/tests/css/css-sizing/intrinsic-percent-replaced-005.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-sizing/intrinsic-percent-replaced-005.html b/testing/web-platform/tests/css/css-sizing/intrinsic-percent-replaced-005.html new file mode 100644 index 0000000000..84e945c833 --- /dev/null +++ b/testing/web-platform/tests/css/css-sizing/intrinsic-percent-replaced-005.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<link rel="help" href="https://drafts.csswg.org/css-sizing-3/#intrinsic-sizes"> +<meta name="assert" content="Checks that a replaced element, with an aspect ratio, converts a percent height into an intrinsic width." /> +<link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> +<style> +#container { position: relative; height: 100px; } +#abs { position: absolute; top: 0; bottom: 0; background: green; } +canvas { height: 100%; } +</style> +<p>Test passes if there is a filled green square.</p> +<div id=container> + <div id=abs> + <canvas width=10 height=10></canvas> + </div> +</div> |