gecko-dev/testing/web-platform/tests/css/css-multicol/multicol-span-all-004-ref.html
Ting-Yu Lin 4d21c5dd06 Bug 1507244 followup - Change the width of #column to 500px. r=me
Per [1], web-platform-test's reftests are in 600x600 window. Shrink the
width of #column to 500px to prevent the scrollbar from appearing.

[1] https://web-platform-tests.org/writing-tests/reftests.html
2018-12-19 23:05:38 -08:00

52 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Multi-column Layout Test Reference: column-span:all should act like column-span:none in different block formatting context</title>
<link rel="author" title="Ting-Yu Lin" href="tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<style>
#column {
column-count: 3;
column-rule: 6px solid;
width: 500px;
outline: 1px solid black;
}
h3 {
column-span: none;
outline: 1px solid blue;
}
</style>
<body>
<article id="column">
<div>block1</div>
<div style="display: inline-block;">
<h3>non-spanner</h3>
</div>
<div style="overflow: hidden;">
<h3>non-spanner</h3>
</div>
<table>
<caption>
<h3>non-spanner in caption</h3>
</caption>
</table>
<div style="display: grid;">
<div>
<h3>non-spanner in grid</h3>
</div>
</div>
<div style="display: flex;">
<div>
<h3>non-spanner in flex</h3>
</div>
</div>
<div style="column-span: all; outline: 1px solid green;">
Spanner
<h3>non-spanner in a spanner</h3>
</div>
<div>block2</div>
</article>
</body>
</html>