Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/display-flex-svg-overflow-default.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>display:flex on svg uses 0 as min size with default overflow</title>
<link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
<link rel="match" href="display-flex-svg-overflow-default-ref.html">
<style>
body {
background: lightblue;
}
div {
display: flex;
width: 100px;
height: 100px;
}
svg {
flex-grow: 1;
}
</style>
<div>
<svg>
<rect width="150" height="150" fill="green"></rect>
</svg>
</div>