mirror of
https://github.com/servo/servo.git
synced 2025-09-30 16:49:16 +01:00
Move pseudo_inherit.html to wpt reftests.
This commit is contained in:
parent
f1296d3d70
commit
a91746424a
4 changed files with 25 additions and 1 deletions
|
@ -683,6 +683,18 @@
|
|||
"url": "/_mozilla/css/flex_nochild.html"
|
||||
}
|
||||
],
|
||||
"css/pseudo_inherit.html": [
|
||||
{
|
||||
"path": "css/pseudo_inherit.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/pseudo_inherit_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/pseudo_inherit.html"
|
||||
}
|
||||
],
|
||||
"css/quotes_none_a.html": [
|
||||
{
|
||||
"path": "css/quotes_none_a.html",
|
||||
|
@ -2988,6 +3000,18 @@
|
|||
"url": "/_mozilla/css/flex_nochild.html"
|
||||
}
|
||||
],
|
||||
"css/pseudo_inherit.html": [
|
||||
{
|
||||
"path": "css/pseudo_inherit.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/pseudo_inherit_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/pseudo_inherit.html"
|
||||
}
|
||||
],
|
||||
"css/quotes_none_a.html": [
|
||||
{
|
||||
"path": "css/quotes_none_a.html",
|
||||
|
|
18
tests/wpt/mozilla/tests/css/pseudo_inherit.html
Normal file
18
tests/wpt/mozilla/tests/css/pseudo_inherit.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<link rel='match' href='pseudo_inherit_ref.html'>
|
||||
<meta charset="utf-8">
|
||||
<style type="text/css">
|
||||
p:before {
|
||||
content: "A";
|
||||
}
|
||||
.big {
|
||||
font-size: 128px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="color: red; font-size: 64px;">
|
||||
<p style="color: green;" class="big">B</p>
|
||||
</body>
|
||||
</html>
|
14
tests/wpt/mozilla/tests/css/pseudo_inherit_ref.html
Normal file
14
tests/wpt/mozilla/tests/css/pseudo_inherit_ref.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style type="text/css">
|
||||
.big {
|
||||
font-size: 128px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p style="color: green;" class="big">AB</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue