Move outlines_wrap_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 19:02:12 -04:00
parent bdcb7ec40e
commit db930f683b
4 changed files with 25 additions and 1 deletions

View file

@ -683,6 +683,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/outlines_wrap_a.html": [
{
"path": "css/outlines_wrap_a.html",
"references": [
[
"/_mozilla/css/outlines_wrap_ref.html",
"=="
]
],
"url": "/_mozilla/css/outlines_wrap_a.html"
}
],
"css/outset.html": [
{
"path": "css/outset.html",
@ -3420,6 +3432,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/outlines_wrap_a.html": [
{
"path": "css/outlines_wrap_a.html",
"references": [
[
"/_mozilla/css/outlines_wrap_ref.html",
"=="
]
],
"url": "/_mozilla/css/outlines_wrap_a.html"
}
],
"css/outset.html": [
{
"path": "css/outset.html",

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<link rel='match' href='outlines_wrap_ref.html'>
<!-- Tests that outlines draw on all four sides on word wrapped edges. -->
<style>
section {
width: 100px;
height: 100px;
border: solid black 2px;
font-size: 36px;
}
span {
outline: solid red 2px;
}
</style>
<body>
<section><span>I like truffles</span></section>
</body>
</html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<!-- Tests that outlines draw on all four sides on word wrapped edges. -->
<style>
section {
width: 100px;
height: 100px;
border: solid black 2px;
font-size: 36px;
}
span {
outline: solid red 2px;
}
</style>
<body>
<section><span>I like</span> <span>truffles</span></section>
</body>
</html>