Move inline_element_border_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 21:16:53 -04:00
parent 9673d81618
commit ca6c655497
4 changed files with 25 additions and 1 deletions

View file

@ -683,6 +683,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/inline_element_border_a.html": [
{
"path": "css/inline_element_border_a.html",
"references": [
[
"/_mozilla/css/inline_element_border_ref.html",
"=="
]
],
"url": "/_mozilla/css/inline_element_border_a.html"
}
],
"css/inline_margins_a.html": [
{
"path": "css/inline_margins_a.html",
@ -3696,6 +3708,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/inline_element_border_a.html": [
{
"path": "css/inline_element_border_a.html",
"references": [
[
"/_mozilla/css/inline_element_border_ref.html",
"=="
]
],
"url": "/_mozilla/css/inline_element_border_a.html"
}
],
"css/inline_margins_a.html": [
{
"path": "css/inline_margins_a.html",

View file

@ -0,0 +1,21 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<link rel='match' href='inline_element_border_ref.html'>
<style type="text/css">
.large-border {
border-left: 100px solid red;
border-right: 100px solid blue;
}
.green {
color: green;
}
body {
font-family: 'ahem';
font-size: 100px;
margin: 0;
}
</style>
</head>
<body><span class="large-border green">X</span></body>
</html>

View file

@ -0,0 +1,29 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
.red {
background-color: red;
}
.green {
background-color: green;
}
.blue {
background-color: blue;
}
div {
width: 100px;
height: 100px;
float: left;
}
body {
margin: 0;
}
</style>
</head>
<body>
<div class="red"></div>
<div class="green"></div>
<div class="blue"></div>
</body>
</html>