Expect percentages to be unsupported for -moz-column-width. I'm not sure why I made it as it is, since they were never supported in either our implementation or the spec.

This commit is contained in:
L. David Baron 2008-12-29 10:07:36 -05:00
parent d477e9faf9
commit 9532b5af90
3 changed files with 2 additions and 4 deletions

View File

@ -368,8 +368,8 @@ var gCSSProperties = {
inherited: false,
type: CSS_TYPE_LONGHAND,
initial_values: [ "auto" ],
other_values: [ "15px", "50%" ],
invalid_values: [ "20", "-1px" ]
other_values: [ "15px" ],
invalid_values: [ "20", "-1px", "50%" ]
},
"-moz-column-rule-width": {
domProp: "MozColumnRuleWidth",

View File

@ -36,7 +36,6 @@
/** Test for computation of values in property database **/
var gNotAccepted = {
"-moz-column-width": [ "50%" ],
"list-style": [ "none disc outside" ],
};

View File

@ -47,7 +47,6 @@
*/
var gNotAccepted = {
"-moz-column-width": [ "50%" ],
"list-style": [ "none disc outside" ],
};