Move input_button_margins_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent da97da7278
commit 21d6bccf62
4 changed files with 25 additions and 1 deletions

View file

@ -791,6 +791,18 @@
"url": "/_mozilla/css/inline_text_align_a.html"
}
],
"css/input_button_margins_a.html": [
{
"path": "css/input_button_margins_a.html",
"references": [
[
"/_mozilla/css/input_button_margins_ref.html",
"=="
]
],
"url": "/_mozilla/css/input_button_margins_a.html"
}
],
"css/input_button_size_a.html": [
{
"path": "css/input_button_size_a.html",
@ -4272,6 +4284,18 @@
"url": "/_mozilla/css/inline_text_align_a.html"
}
],
"css/input_button_margins_a.html": [
{
"path": "css/input_button_margins_a.html",
"references": [
[
"/_mozilla/css/input_button_margins_ref.html",
"=="
]
],
"url": "/_mozilla/css/input_button_margins_a.html"
}
],
"css/input_button_size_a.html": [
{
"path": "css/input_button_size_a.html",

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<link rel='match' href='input_button_margins_ref.html'>
<style>
body, html {
margin: 0;
}
input {
margin-left: 64px;
border: none;
vertical-align: top;
}
</style>
<input type=button value=Hello>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<style>
body, html {
margin: 0;
}
input {
position: absolute;
left: 64px;
border: none;
}
</style>
<input type=button value=Hello>