mirror of
https://github.com/servo/servo.git
synced 2025-08-08 06:55:31 +01:00
Update web-platform-tests to revision 89ad54bd0d498c8209ec80407f5758566f91e82f
This commit is contained in:
parent
34bf312e0c
commit
1eb76da73c
27 changed files with 740 additions and 126 deletions
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Multi-column Layout Test Reference: columns with list-item and column-span</title>
|
||||
<link rel="author" title="Ting-Yu Lin" href="tlin@mozilla.com">
|
||||
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
||||
|
||||
<style>
|
||||
li {
|
||||
width: 300px;
|
||||
outline: 1px solid black;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
h3 {
|
||||
outline: 1px solid blue;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<ul>
|
||||
<li style="list-style-position: outside;">
|
||||
bullet outside
|
||||
<h3>spanner</h3>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
bullet inside
|
||||
<h3>spanner</h3>
|
||||
</li>
|
||||
<li style="list-style-position: outside;">
|
||||
<h3>spanner (bullet outside)</h3>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
<h3>spanner (bullet inside)</h3>
|
||||
</li>
|
||||
<li style="list-style-position: outside;">
|
||||
<div>
|
||||
<h3>nested spanner (bullet outside)</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
<div>
|
||||
<h3>nested spanner (bullet inside)</h3>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,53 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Multi-column Layout Test: columns with list-item and column-span</title>
|
||||
<link rel="author" title="Ting-Yu Lin" href="tlin@mozilla.com">
|
||||
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-multicol-1/#column-span">
|
||||
<link rel="match" href="multicol-span-all-list-item-001-ref.html">
|
||||
<meta name="assert" content="This test checks the columns with list-item are renederd correctly.">
|
||||
|
||||
<style>
|
||||
li {
|
||||
column-count: 1;
|
||||
width: 300px;
|
||||
outline: 1px solid black;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
h3 {
|
||||
column-span: all;
|
||||
outline: 1px solid blue;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<ul>
|
||||
<li style="list-style-position: outside;">
|
||||
bullet outside
|
||||
<h3>spanner</h3>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
bullet inside
|
||||
<h3>spanner</h3>
|
||||
</li>
|
||||
<li style="list-style-position: outside;">
|
||||
<h3>spanner (bullet outside)</h3>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
<h3>spanner (bullet inside)</h3>
|
||||
</li>
|
||||
<li style="list-style-position: outside;">
|
||||
<div>
|
||||
<h3>nested spanner (bullet outside)</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
<div>
|
||||
<h3>nested spanner (bullet inside)</h3>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Multi-column Layout Test Reference: columns with list-item, column-span, and overflow</title>
|
||||
<link rel="author" title="Ting-Yu Lin" href="tlin@mozilla.com">
|
||||
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
||||
|
||||
<style>
|
||||
li {
|
||||
width: 300px;
|
||||
outline: 1px solid black;
|
||||
margin-bottom: 1em;
|
||||
overflow: hidden;
|
||||
}
|
||||
h3 {
|
||||
outline: 1px solid blue;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<ul>
|
||||
<li style="list-style-position: outside;">
|
||||
bullet outside
|
||||
<h3>spanner</h3>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
bullet inside
|
||||
<h3>spanner</h3>
|
||||
</li>
|
||||
<li style="list-style-position: outside;">
|
||||
<h3>spanner (bullet outside)</h3>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
<h3>spanner (bullet inside)</h3>
|
||||
</li>
|
||||
<li style="list-style-position: outside;">
|
||||
<div>
|
||||
<h3>nested spanner (bullet outside)</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
<div>
|
||||
<h3>nested spanner (bullet inside)</h3>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,54 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Multi-column Layout Test: columns with list-item, column-span, and overflow</title>
|
||||
<link rel="author" title="Ting-Yu Lin" href="tlin@mozilla.com">
|
||||
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-multicol-1/#column-span">
|
||||
<link rel="match" href="multicol-span-all-list-item-002-ref.html">
|
||||
<meta name="assert" content="This test checks the columns with list-item are renederd correctly.">
|
||||
|
||||
<style>
|
||||
li {
|
||||
column-count: 1;
|
||||
width: 300px;
|
||||
outline: 1px solid black;
|
||||
margin-bottom: 1em;
|
||||
overflow: hidden;
|
||||
}
|
||||
h3 {
|
||||
column-span: all;
|
||||
outline: 1px solid blue;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<ul>
|
||||
<li style="list-style-position: outside;">
|
||||
bullet outside
|
||||
<h3>spanner</h3>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
bullet inside
|
||||
<h3>spanner</h3>
|
||||
</li>
|
||||
<li style="list-style-position: outside;">
|
||||
<h3>spanner (bullet outside)</h3>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
<h3>spanner (bullet inside)</h3>
|
||||
</li>
|
||||
<li style="list-style-position: outside;">
|
||||
<div>
|
||||
<h3>nested spanner (bullet outside)</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li style="list-style-position: inside;">
|
||||
<div>
|
||||
<h3>nested spanner (bullet inside)</h3>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue