mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
24 lines
586 B
HTML
24 lines
586 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>display:flex on svg uses 0 as min size with default overflow</title>
|
|
<link rel="help" href="https://www.w3.org/TR/css-overflow-3/#valdef-overflow">
|
|
<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>
|