mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Accept unitless lengths in quirks mode for bottom, just as for left/top/right. (Bug 776591) r=bzbarsky
This commit is contained in:
parent
983d9c226d
commit
7df440799e
@ -1297,7 +1297,8 @@ CSS_PROP_POSITION(
|
||||
bottom,
|
||||
Bottom,
|
||||
CSS_PROPERTY_PARSE_VALUE |
|
||||
CSS_PROPERTY_STORES_CALC,
|
||||
CSS_PROPERTY_STORES_CALC |
|
||||
CSS_PROPERTY_UNITLESS_LENGTH_QUIRK,
|
||||
"",
|
||||
VARIANT_AHLP | VARIANT_CALC,
|
||||
nullptr,
|
||||
|
@ -2383,7 +2383,8 @@ var gCSSProperties = {
|
||||
"calc(25px*3)",
|
||||
"calc(3*25px + 50%)",
|
||||
],
|
||||
invalid_values: [ "5" ]
|
||||
invalid_values: [],
|
||||
quirks_values: { "5": "5px" },
|
||||
},
|
||||
"box-shadow": {
|
||||
domProp: "boxShadow",
|
||||
|
Loading…
Reference in New Issue
Block a user