[Webkit-unassigned] [Bug 206317] Clamp paddingBoxWidth/Height to a minimum of zero

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 23 14:47:20 PST 2020


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

--- Comment #5 from Simon Fraser (smfr) <simon.fraser at apple.com> ---
Comment on attachment 388593
  --> https://bugs.webkit.org/attachment.cgi?id=388593
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=388593&action=review

> Source/WebCore/rendering/RenderReplaced.cpp:464
> +    WTFLogAlways("computeConstrainedLogicalWidth logicalWidth=%f, marginStart=%f, marginEnd=%f, size().width()=%f, clientWidth()=%f",
> +        logicalWidth.toFloat(), marginStart.toFloat(), marginEnd.toFloat(), size().width().toFloat(), clientWidth().toFloat());
> +    logicalWidth = std::max(0_lu, (logicalWidth - (marginStart + marginEnd + borderLeft() + borderRight() + verticalScrollbarWidth())));
> +    WTFLogAlways("computeConstrainedLogicalWidth final logicalWidth=%f", logicalWidth.toFloat());

No logging please!

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20200123/16ffc820/attachment-0001.htm>


More information about the webkit-unassigned mailing list