mirror of
https://github.com/servo/servo.git
synced 2025-08-14 01:45:33 +01:00
Update web-platform-tests to revision 5d33b4da92080b7658168bdb0fbdc3531bda1ddf
This commit is contained in:
parent
7010178691
commit
5b46b73c1b
139 changed files with 2001 additions and 261 deletions
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Lists: test the change of list-style-position</title>
|
||||
<style>
|
||||
div {
|
||||
border: 5px solid orange;
|
||||
display: list-item;
|
||||
list-style-position: inside;
|
||||
margin-left: 40px;
|
||||
}
|
||||
div > div {
|
||||
list-style-type: decimal;
|
||||
}
|
||||
</style>
|
||||
<div><div>text</div></div>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Lists: test the change of list-style-position</title>
|
||||
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
|
||||
<link rel="match" href="change-list-style-position-003-ref.html">
|
||||
<link rel="help" href="https://www.w3.org/TR/CSS22/generate.html#lists">
|
||||
<style>
|
||||
div {
|
||||
border: 5px solid orange;
|
||||
display: list-item;
|
||||
margin-left: 40px;
|
||||
}
|
||||
div > div {
|
||||
list-style-type: decimal;
|
||||
}
|
||||
</style>
|
||||
<div><div>text</div></div>
|
||||
<script>
|
||||
document.body.offsetHeight;
|
||||
document.body.style.listStylePosition = "inside";
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue