mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 12:32:21 +00:00
LibWeb: Disallow none
for min-width
and min-height
This commit is contained in:
parent
ce6a7ba050
commit
5a9d538acc
Notes:
github-actions[bot]
2024-10-27 20:03:46 +00:00
Author: https://github.com/awesomekling
Commit: 5a9d538acc
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2007
3 changed files with 8 additions and 10 deletions
|
@ -6,10 +6,10 @@ Rerun
|
||||||
|
|
||||||
Found 11 tests
|
Found 11 tests
|
||||||
|
|
||||||
9 Pass
|
10 Pass
|
||||||
2 Fail
|
1 Fail
|
||||||
Details
|
Details
|
||||||
Result Test Name MessageFail e.style['min-height'] = "none" should not set the property value assert_equals: expected "" but got "none"
|
Result Test Name MessagePass e.style['min-height'] = "none" should not set the property value
|
||||||
Pass e.style['min-height'] = "complex" should not set the property value
|
Pass e.style['min-height'] = "complex" should not set the property value
|
||||||
Pass e.style['min-height'] = "-10%" should not set the property value
|
Pass e.style['min-height'] = "-10%" should not set the property value
|
||||||
Pass e.style['min-height'] = "-0.5em" should not set the property value
|
Pass e.style['min-height'] = "-0.5em" should not set the property value
|
||||||
|
|
|
@ -6,10 +6,10 @@ Rerun
|
||||||
|
|
||||||
Found 11 tests
|
Found 11 tests
|
||||||
|
|
||||||
9 Pass
|
10 Pass
|
||||||
2 Fail
|
1 Fail
|
||||||
Details
|
Details
|
||||||
Result Test Name MessageFail e.style['min-width'] = "none" should not set the property value assert_equals: expected "" but got "none"
|
Result Test Name MessagePass e.style['min-width'] = "none" should not set the property value
|
||||||
Pass e.style['min-width'] = "complex" should not set the property value
|
Pass e.style['min-width'] = "complex" should not set the property value
|
||||||
Pass e.style['min-width'] = "-10%" should not set the property value
|
Pass e.style['min-width'] = "-10%" should not set the property value
|
||||||
Pass e.style['min-width'] = "-0.5em" should not set the property value
|
Pass e.style['min-width'] = "-0.5em" should not set the property value
|
||||||
|
|
|
@ -1947,8 +1947,7 @@
|
||||||
"percentage [0,∞]"
|
"percentage [0,∞]"
|
||||||
],
|
],
|
||||||
"valid-identifiers": [
|
"valid-identifiers": [
|
||||||
"auto",
|
"auto"
|
||||||
"none"
|
|
||||||
],
|
],
|
||||||
"percentages-resolve-to": "length",
|
"percentages-resolve-to": "length",
|
||||||
"quirks": [
|
"quirks": [
|
||||||
|
@ -1974,8 +1973,7 @@
|
||||||
"auto",
|
"auto",
|
||||||
"fit-content",
|
"fit-content",
|
||||||
"max-content",
|
"max-content",
|
||||||
"min-content",
|
"min-content"
|
||||||
"none"
|
|
||||||
],
|
],
|
||||||
"percentages-resolve-to": "length",
|
"percentages-resolve-to": "length",
|
||||||
"quirks": [
|
"quirks": [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue