Move inline_block_margin_auto_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-10 11:23:39 +01:00
parent 7d376bfe81
commit cfbe639e79
4 changed files with 25 additions and 1 deletions

View file

@ -34,7 +34,6 @@ prefs:"layout.writing-mode.enabled" == iframe/size_attributes_vertical_writing_m
== iframe/stacking_context.html iframe/stacking_context_ref.html
== iframe/stacking_context_position_a.html iframe/stacking_context_position_ref.html
== inline_block_margin_auto_a.html inline_block_margin_auto_ref.html
== inline_block_parent_width.html inline_block_parent_width_ref.html
== inline_block_parent_width_percentage.html inline_block_parent_width_ref.html
# inline_border_a.html inline_border_b.html

View file

@ -1,20 +0,0 @@
<!DOCTYPE html>
<style>
html, body {
margin: 0;
}
#a {
display: block;
background: lime;
text-align: center;
width: 96px;
}
#b {
background: gold;
display: inline-block;
margin: 0 auto;
padding: 16px 16px;
}
</style>
<div id=a><div id=b></div>

View file

@ -1,20 +0,0 @@
<!DOCTYPE html>
<style>
html, body {
margin: 0;
}
#a {
display: block;
background: lime;
text-align: center;
width: 96px;
}
#b {
background: gold;
display: inline-block;
margin: 0 32px 0 32px;
padding: 16px 16px;
}
</style>
<div id=a><div id=b></div>