mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
17 lines
456 B
HTML
17 lines
456 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Flexbox Test: flex-wrap flexes widths after line breaking</title>
|
|
<link href="mailto:stearns@adobe.com" rel="author" title="Alan Stearns">
|
|
<style>
|
|
.container {
|
|
width: 150px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is a green rectangle and no red.</p>
|
|
<div class="container"></div>
|
|
|
|
</body></html> |