mirror of
https://github.com/servo/servo.git
synced 2025-08-08 06:55:31 +01:00
Move flex_column_direction.html to wpt reftests.
This commit is contained in:
parent
4add7d23f8
commit
9623ed54d0
4 changed files with 25 additions and 1 deletions
|
@ -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
|
||||
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
|
||||
== font_size.html font_size_ref.html
|
||||
|
|
|
@ -1,37 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: flex container should layout flex items horizontally</title>
|
||||
<link rel="author" title="Kyle Zentner" href="mailto:zentner.kyle@gmail.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox/">
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
.flexbox {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 300px;
|
||||
}
|
||||
.first-item {
|
||||
background: orange;
|
||||
height: 150px;
|
||||
width: 100px;
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
.second-item {
|
||||
background: blue;
|
||||
height: 150px;
|
||||
width: 100px;
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flexbox">
|
||||
<div class="first-item"></div>
|
||||
<div class="second-item"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,32 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reftest Reference</title>
|
||||
<link rel="author" title="Kyle Zentner" href="mailto:zentner.kyle@gmail.com">
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
.flexbox {
|
||||
height: 300px;
|
||||
}
|
||||
.first-item {
|
||||
background: orange;
|
||||
width: 100px;
|
||||
height: 150px;
|
||||
}
|
||||
.second-item {
|
||||
background: blue;
|
||||
width: 100px;
|
||||
height: 150px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flexbox">
|
||||
<div class="first-item"></div>
|
||||
<div class="second-item"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue