Move outline_offset_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 20:33:43 -04:00
parent 9c26694601
commit e6b95571de
4 changed files with 25 additions and 1 deletions

View file

@ -755,6 +755,18 @@
"url": "/_mozilla/css/opacity_stacking_context_a.html"
}
],
"css/outline_offset_a.html": [
{
"path": "css/outline_offset_a.html",
"references": [
[
"/_mozilla/css/outline_offset_ref.html",
"=="
]
],
"url": "/_mozilla/css/outline_offset_a.html"
}
],
"css/outlines_simple_a.html": [
{
"path": "css/outlines_simple_a.html",
@ -3588,6 +3600,18 @@
"url": "/_mozilla/css/opacity_stacking_context_a.html"
}
],
"css/outline_offset_a.html": [
{
"path": "css/outline_offset_a.html",
"references": [
[
"/_mozilla/css/outline_offset_ref.html",
"=="
]
],
"url": "/_mozilla/css/outline_offset_a.html"
}
],
"css/outlines_simple_a.html": [
{
"path": "css/outlines_simple_a.html",

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='outline_offset_ref.html'>
<style>
html, body {
margin: 0;
}
section {
background: red;
outline: solid green 32px;
outline-offset: 32px;
width: 32px;
height: 32px;
margin: 64px;
}
</style>
</head>
<body>
<section></section>
</body>
</html>

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
margin: 0;
}
section {
border: solid green 32px;
width: 96px;
}
div {
width: 32px;
height: 32px;
border: solid white 32px;
background: red;
}
</style>
</head>
<body>
<section><div></div></section>
</body>
</html>