Move line_height_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-13 12:28:09 +01:00
parent 45d0fecb89
commit 1948b6914e
4 changed files with 25 additions and 1 deletions

View file

@ -2379,6 +2379,18 @@
"url": "/_mozilla/css/line_breaking_whitespace_collapse_a.html"
}
],
"css/line_height_a.html": [
{
"path": "css/line_height_a.html",
"references": [
[
"/_mozilla/css/line_height_ref.html",
"=="
]
],
"url": "/_mozilla/css/line_height_a.html"
}
],
"css/line_height_float_placement_a.html": [
{
"path": "css/line_height_float_placement_a.html",
@ -7516,6 +7528,18 @@
"url": "/_mozilla/css/line_breaking_whitespace_collapse_a.html"
}
],
"css/line_height_a.html": [
{
"path": "css/line_height_a.html",
"references": [
[
"/_mozilla/css/line_height_ref.html",
"=="
]
],
"url": "/_mozilla/css/line_height_a.html"
}
],
"css/line_height_float_placement_a.html": [
{
"path": "css/line_height_float_placement_a.html",

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<link rel=match href=line_height_ref.html>
<style>
body {
margin: 0;
padding: 0;
background-color: white;
}
span {
color: yellow;
font-family: ahem;
font-size: 128px;
}
</style>
</head>
<body>
<span>X</span>
</body>
</html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
padding: 0;
background-color: white;
}
span {
color: yellow;
font-family: ahem;
font-size: 128px;
line-height: 1.0;
}
</style>
</head>
<body>
<span>X</span>
</body>
</html>