| Summary: | [LFC] Add margin box verification back now that Display::Box has non-computed horizontal margin. | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | zalan <zalan> | ||||
| Component: | Layout and Rendering | Assignee: | zalan <zalan> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | bfulgham, koivisto, simon.fraser, webkit-bug-importer, zalan | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | WebKit Nightly Build | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
zalan
2018-08-31 07:59:21 PDT
Created attachment 348641 [details]
Patch
Comment on attachment 348641 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=348641&action=review > Source/WebCore/layout/Verification.cpp:132 > + borderBox.top() - displayBox.nonCollapsedMarginTop() > + , borderBox.left() - displayBox.nonComputedMarginLeft() > + , displayBox.nonComputedMarginLeft() + borderBox.width() + displayBox.nonComputedMarginRight() > + , displayBox.nonCollapsedMarginTop() + borderBox.height() + displayBox.nonCollapsedMarginBottom() Those commas would look better at the end of the line. Committed r235561: <https://trac.webkit.org/changeset/235561> |