blob: c5556c7867dc2a68558d459d6aba38dff7f42166 [file] [log] [blame]
<!DOCTYPE html>
<!--
| When an inline box exceeds the width of a line box, it is split into several
| boxes and these boxes are distributed across several line boxes. It should
| also split at <br> elements.
| https://www.w3.org/TR/CSS21/visuren.html#inline-formatting
-->
<html>
<head>
<style>
body {
margin: 0px;
color: #fff;
font-family: Roboto;
font-size: 20px;
font-weight: bold;
}
.containing-block {
background-color: #03a9f4;
width: 500px;
}
</style>
</head>
<body>
<div class="containing-block">
<br><span><br>The Hegemony Consul sat<span> on the balcony<br>of his ebony spaceship and played
Rachmaninoff's Prelude<br>in<br></span><br>C-sharp Minor on an ancient but well-maintained
Steinway while great, green, saurian things surged and bellowed
in the swamps below.</span>
</div>
</body>
</html>