servo/tests/wpt/web-platform-tests/css/css-contain/reference/contain-layout-breaks-002-ref.html

25 lines
490 B
HTML

<!doctype html>
<html lang=en>
<meta charset=utf-8>
<title>CSS-contain test reference</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<meta name=flags content="">
<style>
article {
columns: 2 20px;
float: left;
height: 50px;
column-fill: auto;
}
article > div {
break-before: column;
border-top: 20px solid orange;
}
</style>
<p>Test passes if there are two orange boxes below.
<article>
<div></div>
<div></div>
</article>