mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Fix values for -moz-box-sizing too.
This commit is contained in:
parent
518d7ff81c
commit
adf8e096fb
@ -212,9 +212,9 @@ var gCSSProperties = {
|
|||||||
domProp: "MozBoxSizing",
|
domProp: "MozBoxSizing",
|
||||||
inherited: false,
|
inherited: false,
|
||||||
type: CSS_TYPE_LONGHAND,
|
type: CSS_TYPE_LONGHAND,
|
||||||
initial_values: [ "content" ],
|
initial_values: [ "content-box" ],
|
||||||
other_values: [ "border", "padding" ],
|
other_values: [ "border-box", "padding-box" ],
|
||||||
invalid_values: [ "margin" ]
|
invalid_values: [ "margin-box", "content", "padding", "border", "margin" ]
|
||||||
},
|
},
|
||||||
"-moz-column-count": {
|
"-moz-column-count": {
|
||||||
domProp: "MozColumnCount",
|
domProp: "MozColumnCount",
|
||||||
@ -249,7 +249,7 @@ var gCSSProperties = {
|
|||||||
type: CSS_TYPE_LONGHAND,
|
type: CSS_TYPE_LONGHAND,
|
||||||
initial_values: [ "content-box" ],
|
initial_values: [ "content-box" ],
|
||||||
other_values: [ "border-box", "padding-box", "margin-box" ],
|
other_values: [ "border-box", "padding-box", "margin-box" ],
|
||||||
invalid_values: []
|
invalid_values: [ "content", "padding", "border", "margin" ]
|
||||||
},
|
},
|
||||||
"-moz-force-broken-image-icon": {
|
"-moz-force-broken-image-icon": {
|
||||||
domProp: "MozForceBrokenImageIcon",
|
domProp: "MozForceBrokenImageIcon",
|
||||||
|
Loading…
Reference in New Issue
Block a user