haikuwebkit/LayoutTests/fast/css/inline-block-line-break.html

11 lines
303 B
HTML

<!DOCTYPE html>
<style>
main { width: 150px; white-space: nowrap; }
div { display: inline-block; white-space: normal; width: 100px; height: 100px; background-color: orange; }
</style>
<p>The test passes if there are two orange squares placed side by side.</p>
<main>
<div></div>
<div></div>
</main>