Move pseudo_inherit.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 08:34:17 -04:00
parent f1296d3d70
commit a91746424a
4 changed files with 25 additions and 1 deletions

View file

@ -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",

View 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>

View 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>