Accept unitless lengths in quirks mode for bottom, just as for left/top/right. (Bug 776591) r=bzbarsky

This commit is contained in:
L. David Baron 2012-08-20 19:23:31 -07:00
parent 983d9c226d
commit 7df440799e
2 changed files with 4 additions and 2 deletions

View File

@ -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,

View File

@ -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",