blob: 2dce244975220f63b60e7cac9938e1b74cebe6ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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>
|