Move anon_block_inherit_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-08 17:14:35 +02:00
parent a938fe635f
commit 2ca5f85d4e
4 changed files with 25 additions and 1 deletions

View file

@ -159,6 +159,18 @@
"url": "/_mozilla/css/alpha_png_a.html"
}
],
"css/anon_block_inherit_a.html": [
{
"path": "css/anon_block_inherit_a.html",
"references": [
[
"/_mozilla/css/anon_block_inherit_b.html",
"=="
]
],
"url": "/_mozilla/css/anon_block_inherit_a.html"
}
],
"css/background.html": [
{
"path": "css/background.html",
@ -1112,6 +1124,18 @@
"url": "/_mozilla/css/alpha_png_a.html"
}
],
"css/anon_block_inherit_a.html": [
{
"path": "css/anon_block_inherit_a.html",
"references": [
[
"/_mozilla/css/anon_block_inherit_b.html",
"=="
]
],
"url": "/_mozilla/css/anon_block_inherit_a.html"
}
],
"css/background.html": [
{
"path": "css/background.html",

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>hi</title>
<link rel=match href=anon_block_inherit_b.html>
</head>
<body>
<div style="border: solid">
<p>Foo</p>
Bar
<p>Baz</p>
</div>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>hi</title>
</head>
<body>
<div style="border: solid">
<p>Foo</p>
<div>Bar</div>
<p>Baz</p>
</div>
</body>
</html>