Move br.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent 01c5134208
commit 0eb67166ed
4 changed files with 25 additions and 1 deletions

View file

@ -815,6 +815,18 @@
"url": "/_mozilla/css/box_sizing_sanity_check_a.html"
}
],
"css/br.html": [
{
"path": "css/br.html",
"references": [
[
"/_mozilla/css/br-ref.html",
"=="
]
],
"url": "/_mozilla/css/br.html"
}
],
"css/calc-basic.html": [
{
"path": "css/calc-basic.html",
@ -5196,6 +5208,18 @@
"url": "/_mozilla/css/box_sizing_sanity_check_a.html"
}
],
"css/br.html": [
{
"path": "css/br.html",
"references": [
[
"/_mozilla/css/br-ref.html",
"=="
]
],
"url": "/_mozilla/css/br.html"
}
],
"css/calc-basic.html": [
{
"path": "css/calc-basic.html",

View file

@ -0,0 +1,11 @@
<!doctype HTML>
<html>
<head>
<meta charset="UTF-8">
<title>br reference</title>
</head>
<body>
<div>A</div>
<div>B</div>
</body>
</html>

View file

@ -0,0 +1,11 @@
<!doctype HTML>
<html>
<head>
<link rel='match' href='br-ref.html'>
<meta charset="UTF-8">
<title>br test</title>
</head>
<body>
A<br>B
</body>
</html>