mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
16 lines
417 B
HTML
16 lines
417 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">
|
|
<style>
|
|
body {
|
|
background: lightblue;
|
|
}
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
<div></div>
|