mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 66dc9c93f2c8ebd7c8fdc28fae20d92713c97806
This commit is contained in:
parent
e488ea750b
commit
12f4ae132e
1651 changed files with 8123 additions and 14152 deletions
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Reference: CSS Lists: 'list-style-image' takes precedence over 'list-style-type: none'</title>
|
||||
<link rel="author" title="Emil A Eklund" href="mailto:eae@chromium.org">
|
||||
<style>
|
||||
li {
|
||||
list-style-image: url('../../images/green-16x16.png');
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<ul>
|
||||
<li>Should have a green square list marker.</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Lists: 'list-style-image' takes precedence over 'list-style-type: none'</title>
|
||||
<link rel="author" title="Emil A Eklund" href="mailto:eae@chromium.org">
|
||||
<link rel="help" href="https://www.w3.org/TR/CSS2/generate.html#propdef-list-style-image">
|
||||
<link rel="match" href="list-type-none-style-image-ref.html">
|
||||
<style>
|
||||
ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
li {
|
||||
list-style-image: url('../../images/green-16x16.png');
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<ul>
|
||||
<li>Should have a green square list marker.</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue