Bug 830260 followup to address review comment.

This commit is contained in:
Boris Zbarsky 2014-12-01 15:22:44 -05:00
parent d5dd36e273
commit eac49c9227

View File

@ -24,7 +24,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=830260
'Passing null as a color to setProperty should remove the property');
div.style.color = "green";
ise(div.style.color, "green", 'Assigning "green" as a color should not parse');
ise(div.style.color, "green", 'Assigning "green" as a color should parse');
div.style.color = null;
ise(div.style.color, "",