mirror of
https://github.com/servo/servo.git
synced 2025-08-27 08:08:19 +01:00
Initialize block_container_inline_size for non-block root flows
Fixes #14948.
This commit is contained in:
parent
bd72da5f02
commit
39826f817e
8 changed files with 137 additions and 6 deletions
|
@ -1580,6 +1580,18 @@
|
|||
"url": "/_mozilla/css/flex_nochild.html"
|
||||
}
|
||||
],
|
||||
"css/flex_root_percent_size.html": [
|
||||
{
|
||||
"path": "css/flex_root_percent_size.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/flex_root_percent_size_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/flex_root_percent_size.html"
|
||||
}
|
||||
],
|
||||
"css/flex_row_direction.html": [
|
||||
{
|
||||
"path": "css/flex_row_direction.html",
|
||||
|
@ -5304,6 +5316,18 @@
|
|||
"url": "/_mozilla/css/table_preferred_width_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_root_percent_width.html": [
|
||||
{
|
||||
"path": "css/table_root_percent_width.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/table_root_percent_width_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/table_root_percent_width.html"
|
||||
}
|
||||
],
|
||||
"css/table_row_direction_a.html": [
|
||||
{
|
||||
"path": "css/table_row_direction_a.html",
|
||||
|
@ -17012,6 +17036,18 @@
|
|||
"url": "/_mozilla/css/flex_nochild.html"
|
||||
}
|
||||
],
|
||||
"css/flex_root_percent_size.html": [
|
||||
{
|
||||
"path": "css/flex_root_percent_size.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/flex_root_percent_size_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/flex_root_percent_size.html"
|
||||
}
|
||||
],
|
||||
"css/flex_row_direction.html": [
|
||||
{
|
||||
"path": "css/flex_row_direction.html",
|
||||
|
@ -20736,6 +20772,18 @@
|
|||
"url": "/_mozilla/css/table_preferred_width_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_root_percent_width.html": [
|
||||
{
|
||||
"path": "css/table_root_percent_width.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/table_root_percent_width_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/table_root_percent_width.html"
|
||||
}
|
||||
],
|
||||
"css/table_row_direction_a.html": [
|
||||
{
|
||||
"path": "css/table_row_direction_a.html",
|
||||
|
|
19
tests/wpt/mozilla/tests/css/flex_root_percent_size.html
Normal file
19
tests/wpt/mozilla/tests/css/flex_root_percent_size.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="match" href="flex_root_percent_size_ref.html">
|
||||
<style>
|
||||
html {
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border: 4px solid red;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
<title></title>
|
17
tests/wpt/mozilla/tests/css/flex_root_percent_size_ref.html
Normal file
17
tests/wpt/mozilla/tests/css/flex_root_percent_size_ref.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border: 4px solid red;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
<title></title>
|
19
tests/wpt/mozilla/tests/css/table_root_percent_width.html
Normal file
19
tests/wpt/mozilla/tests/css/table_root_percent_width.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="match" href="table_root_percent_width_ref.html">
|
||||
<style>
|
||||
html {
|
||||
display: table;
|
||||
box-sizing: border-box;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border: 4px solid red;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
<title></title>
|
|
@ -0,0 +1,17 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border: 4px solid red;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
<title></title>
|
Loading…
Add table
Add a link
Reference in a new issue