RESOLVED FIXED Bug 222516
Blending of border-image-width should be discrete between "auto" values and other types
https://bugs.webkit.org/show_bug.cgi?id=222516
Summary Blending of border-image-width should be discrete between "auto" values and o...
Antoine Quint
Reported 2021-02-27 10:44:43 PST
Blending of border-image-width should be discrete between "auto" values and other types
Attachments
Patch (12.64 KB, patch)
2021-02-27 10:47 PST, Antoine Quint
no flags
Patch (14.85 KB, patch)
2021-02-27 11:01 PST, Antoine Quint
no flags
Patch (14.73 KB, patch)
2021-02-28 00:29 PST, Antoine Quint
no flags
Patch (58.40 KB, patch)
2021-02-28 01:59 PST, Antoine Quint
no flags
Antoine Quint
Comment 1 2021-02-27 10:47:53 PST
Antoine Quint
Comment 2 2021-02-27 11:01:57 PST
Dean Jackson
Comment 3 2021-02-27 14:48:37 PST
Comment on attachment 421753 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=421753&action=review > Source/WebCore/ChangeLog:9 > + got tricked by an "auto" Length returning true for Length::isZero(). So we also check that 0 values aren't Is this a bug? Seems like returning isZero for an auto length is wrong. Did you check why that is? if (isCalculated()) return false; return m_isFloat ? !m_floatValue : !m_intValue; Seems like auto should be similar to calculated. But I bet some code would break if we made a change here.
Simon Fraser (smfr)
Comment 4 2021-02-27 15:53:21 PST
Comment on attachment 421753 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=421753&action=review > Source/WebCore/animation/CSSPropertyAnimation.cpp:756 > + if (a.type() == b.type() || (a.isZero() && !a.isAuto()) || (b.isZero() && !b.isAuto())) Wouldn't it be better to add a function to Length that does what isZero() && !isAuto() does?
Antoine Quint
Comment 5 2021-02-28 00:26:00 PST
(In reply to Simon Fraser (smfr) from comment #4) > Comment on attachment 421753 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=421753&action=review > > > Source/WebCore/animation/CSSPropertyAnimation.cpp:756 > > + if (a.type() == b.type() || (a.isZero() && !a.isAuto()) || (b.isZero() && !b.isAuto())) > > Wouldn't it be better to add a function to Length that does what isZero() && > !isAuto() does? Actually, I think isZero() should return false when isAuto() is true, as Dean suggested. I'll file a patch to see if EWS is happy with that.
Antoine Quint
Comment 6 2021-02-28 00:29:32 PST
Antoine Quint
Comment 7 2021-02-28 01:42:52 PST
(In reply to Antoine Quint from comment #5) > (In reply to Simon Fraser (smfr) from comment #4) > > Comment on attachment 421753 [details] > > Patch > > > > View in context: > > https://bugs.webkit.org/attachment.cgi?id=421753&action=review > > > > > Source/WebCore/animation/CSSPropertyAnimation.cpp:756 > > > + if (a.type() == b.type() || (a.isZero() && !a.isAuto()) || (b.isZero() && !b.isAuto())) > > > > Wouldn't it be better to add a function to Length that does what isZero() && > > !isAuto() does? > > Actually, I think isZero() should return false when isAuto() is true, as > Dean suggested. I'll file a patch to see if EWS is happy with that. This looks like a winner, there are a bunch of new PASS results from css-grid tests as well!
Antoine Quint
Comment 8 2021-02-28 01:59:48 PST
EWS
Comment 9 2021-02-28 03:59:57 PST
Committed r273635: <https://commits.webkit.org/r273635> All reviewed patches have been landed. Closing bug and clearing flags on attachment 421773 [details].
Radar WebKit Bug Importer
Comment 10 2021-02-28 04:00:20 PST
Note You need to log in before you can comment on or make changes to this bug.