Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test Reference: Test SVG intrinsic sizing with and without preferred aspect-ratio</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<style>
div {
width: 300px;
height: 30px;
background: green;
line-height: 0;
border: 5px solid black;
margin: 5px;
}
</style>
<!-- Chrome 110 and Safari 16.4 render these two divs with zero width. -->
<div style="width: 0; height: 0"></div>
<div style="width: 0; height: 0"></div>
<!-- Chrome 110 and Safari 16.4 render the following divs with 300px width. -->
<div style="width: 300px; height: 150px"></div>
<div></div>
<div></div>
<div></div>
<div></div>