Move inline_block_percentage_height_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent ca8540e02c
commit 63f60deb24
4 changed files with 25 additions and 1 deletions

View file

@ -695,6 +695,18 @@
"url": "/_mozilla/css/inline_block_overflow.html"
}
],
"css/inline_block_percentage_height_a.html": [
{
"path": "css/inline_block_percentage_height_a.html",
"references": [
[
"/_mozilla/css/inline_block_percentage_height_ref.html",
"=="
]
],
"url": "/_mozilla/css/inline_block_percentage_height_a.html"
}
],
"css/inline_border_baseline_a.html": [
{
"path": "css/inline_border_baseline_a.html",
@ -3960,6 +3972,18 @@
"url": "/_mozilla/css/inline_block_overflow.html"
}
],
"css/inline_block_percentage_height_a.html": [
{
"path": "css/inline_block_percentage_height_a.html",
"references": [
[
"/_mozilla/css/inline_block_percentage_height_ref.html",
"=="
]
],
"url": "/_mozilla/css/inline_block_percentage_height_a.html"
}
],
"css/inline_border_baseline_a.html": [
{
"path": "css/inline_border_baseline_a.html",

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='inline_block_percentage_height_ref.html'>
<title>Hello</title>
</head>
<body>
<div style="height: 100px;">
<span style="height: 100%;">
<li style="height: 100%; background: red;"><span>Edit</span></li>
</span>
</div>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<div style="height: 100px;">
<div style="height: 100%;">
<li style="height: 100%; background: red;"><span>Edit</span></li>
</div>
</div>
</body>
</html>