forked from mirrors/gecko-dev
Automatic update from web-platform-tests Fix the link to my email address in tests This patch is generated via the following command in wpt root folder. ``` rg -l tlin@mozilla.com | xargs sed -i 's/href="tlin@mozilla.com"/href="mailto:tlin@mozilla.com"/g' ``` -- wpt-commits: 1306084e0473e413928a6fab1399097e0d9639bf wpt-pr: 29925
31 lines
715 B
HTML
31 lines
715 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Multi-column Layout Test Reference: Append a block containing a spanner kid. The spanner kid should correctly span across all columns</title>
|
|
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
|
|
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
|
|
|
<style>
|
|
#column {
|
|
column-count: 3;
|
|
column-rule: 6px solid;
|
|
width: 400px;
|
|
outline: 1px solid black;
|
|
}
|
|
h3 {
|
|
column-span: all;
|
|
outline: 1px solid blue;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<article id="column">
|
|
<div>block1
|
|
<div>
|
|
<h3>spanner</h3>
|
|
block2
|
|
</div>
|
|
</div>
|
|
</article>
|
|
</body>
|
|
</html>
|