mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #18274 - DominoTree:18224-test, r=emilio
Add test for 18224 <!-- Please describe your changes on the following line: --> Add test for #18224 - wasn't sure what (if anything) to do beyond this - let me know if additional changes are necessary. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #18224 (github issue number if applicable). <!-- Either: --> - [x] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18274) <!-- Reviewable:end -->
This commit is contained in:
commit
6ca456ca21
3 changed files with 44 additions and 0 deletions
|
@ -1919,6 +1919,18 @@
|
|||
{}
|
||||
]
|
||||
],
|
||||
"css/flex-zero_lines.html": [
|
||||
[
|
||||
"/_mozilla/css/flex-zero_lines.html",
|
||||
[
|
||||
[
|
||||
"/_mozilla/css/flex-zero_lines_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/flex_column_direction.html": [
|
||||
[
|
||||
"/_mozilla/css/flex_column_direction.html",
|
||||
|
@ -8655,6 +8667,11 @@
|
|||
{}
|
||||
]
|
||||
],
|
||||
"css/flex-zero_lines_ref.html": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/flex_column_direction_ref.html": [
|
||||
[
|
||||
{}
|
||||
|
@ -23836,6 +23853,14 @@
|
|||
"9e262b0328e80050f5088a7264e7d40b67873750",
|
||||
"testharness"
|
||||
],
|
||||
"css/flex-zero_lines.html": [
|
||||
"0624d63ae563dbc4754da143b2631949ad114abd",
|
||||
"reftest"
|
||||
],
|
||||
"css/flex-zero_lines_ref.html": [
|
||||
"69db5dc9423df6c451c80faa70fff1c3a31cd7f7",
|
||||
"support"
|
||||
],
|
||||
"css/flex_column_direction.html": [
|
||||
"d8d62ddbb5be5da2fbbaed24d1c97880cb7d7d5f",
|
||||
"reftest"
|
||||
|
|
14
tests/wpt/mozilla/tests/css/flex-zero_lines.html
Normal file
14
tests/wpt/mozilla/tests/css/flex-zero_lines.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!doctype html>
|
||||
<meta charset="utf-8">
|
||||
<title></title>
|
||||
<link rel="match" href="flex-zero_lines_ref.html">
|
||||
<style>
|
||||
div {
|
||||
display: flex;
|
||||
height: 0;
|
||||
align-content: space-around;
|
||||
}
|
||||
</style>
|
||||
<div></div>
|
||||
TEST
|
||||
|
5
tests/wpt/mozilla/tests/css/flex-zero_lines_ref.html
Normal file
5
tests/wpt/mozilla/tests/css/flex-zero_lines_ref.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<!doctype html>
|
||||
<meta charset="utf-8">
|
||||
<title></title>
|
||||
TEST
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue