[Webkit-unassigned] [Bug 38050] Form button input elements lacking text in some cases after switching from visibility:collapse to visibility:visible
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Aug 4 17:11:20 PDT 2010
https://bugs.webkit.org/show_bug.cgi?id=38050
--- Comment #16 from Darin Adler <darin at apple.com> 2010-08-04 17:11:20 PST ---
(From update of attachment 63455)
> + if ((visibility() == COLLAPSE && other->visibility() != COLLAPSE)
> + || (visibility() != COLLAPSE && other->visibility() == COLLAPSE))
> + return StyleDifferenceLayout;
I think it is more readable like this:
if ((visibility() == COLLAPSE) != (other->visibility() == COLLAPSE))
return StyleDifferenceLayout;
--
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