chromium/third_party/blink/web_tests/external/wpt/css/css-rhythm/block-step-size-establishes-block-formatting-context-list-item.html

<!DOCTYPE html>
<html>
<head>
<link rel="author" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/css-rhythm/#block-step-size">
<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="block-step-size values other than none on a block box causes it to establish a block formatting context">
<style>
div {
    width: 50px;
    height: 100px;
    background-color: green;
}
.floating {
    float: left;
}
.block-step-size {
    display: list-item;
    list-style: none;
    block-step-size: 1px;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square.</p>
<div class="floating"></div>
<div class="block-step-size"></div>
</body>
</html>