Move fixed_width_overrides_child_intrinsic_width_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-05 13:24:31 +01:00
parent 8b030c5177
commit 4add7d23f8
4 changed files with 25 additions and 1 deletions

View file

@ -11,7 +11,6 @@ fragment=top != ../html/acid2.html acid2_ref.html
== acid2_noscroll.html acid2_ref_broken.html
flaky_cpu == append_style_a.html append_style_b.html
== fixed_width_overrides_child_intrinsic_width_a.html fixed_width_overrides_child_intrinsic_width_ref.html
prefs:"layout.flex-direction.enabled,layout.flex.enabled" == flex_column_direction.html flex_column_direction_ref.html
prefs:"layout.flex.enabled" == flex_row_direction.html flex_row_direction_ref.html
== floated_negative_margins_a.html floated_negative_margins_ref.html

View file

@ -1,29 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
font-family: 'ahem';
font-size: 100px;
margin: 0;
line-height: 1;
}
.fr {
float: right;
}
.green {
color: green;
}
.fixed {
width: 100px;
}
</style>
</head>
<body>
<div class="fr">
<div class="fixed">
<span class="green">X X</span>
</div>
</div>
</body>
</html>

View file

@ -1,23 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.fr {
float: right;
}
.green {
background-color: green;
}
.fixed {
width: 100px;
height: 200px;
}
body {
margin: 0;
}
</style>
</head>
<body>
<div class="fr green fixed"></div>
</body>
</html>