[Webkit-unassigned] [Bug 96658] REGRESSION: transition doesn’t always override transition-property

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Sep 13 18:42:29 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=96658





--- Comment #3 from Simon Fraser (smfr) <simon.fraser at apple.com>  2012-09-13 18:42:57 PST ---
When parsing the shorthand, CSSParser::parseTransitionShorthand() fills in unsupplied values with the "initial" value:

    // Fill in any remaining properties with the initial value.
    for (i = 0; i < numProperties; ++i) {
        if (!parsedProperty[i])
            addAnimationValue(values[i], cssValuePool().createImplicitInitialValue());
    }

and later on we take this to imply that we should use Animation::initialAnimationProperty() which is CSSPropertyInvalid. Maybe that should be All?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list