Closed Bug 1819464 Opened 1 year ago Closed 10 months ago

Add support for the CSS "transform-box" values "content-box" and "stroke-box"

Categories

(Core :: CSS Parsing and Computation, defect)

defect

Tracking

()

RESOLVED FIXED
118 Branch
Tracking Status
firefox118 --- fixed

People

(Reporter: dholbert, Assigned: boris)

References

(Blocks 2 open bugs)

Details

(Keywords: dev-doc-complete)

Attachments

(5 files)

It looks like we have several WPT tests failing due to lack of support for
transform-box: content-box
transform-box: stroke-box

Specifically:
https://wpt.fyi/results/css/css-transforms/parsing/transform-box-computed.html
https://wpt.fyi/results/css/css-transforms/parsing/transform-box-valid.html

(Safari/WebKit seems to support them. Chrome/Blink does not yet; that's tracked in https://bugs.chromium.org/p/chromium/issues/detail?id=924472 )

spec link: https://drafts.csswg.org/css-transforms-1/#transform-box

It looks like these keywords were added in response to
https://github.com/w3c/csswg-drafts/issues/999#issuecomment-391431901
(csswg resolution in https://github.com/w3c/csswg-drafts/issues/999#issuecomment-398823684 )

Depends on: 923193
Assignee: nobody → boris.chiou

Per spec, the initial value of transform-box should be view-box.
https://drafts.csswg.org/css-transforms-1/#transform-box

This doesn't have impact on the mapping of transform-box for SVG and CSS
layout. Just make sure the initial value is correct.

Also, add a prefernce for content-box and stroke-box. So we have to
define a new type, TransformBox, and let content-box and stroke-box
behind the preference.

Refactor this structure to match spec and make us easier to support
content-box and stroke-box.

Basically, the transform-box mapping is:

  1. For SVG elements without associated CSS layout box, the used value for
    content-box is fill-box and for border-box is stroke-box.
  2. For elements with associated CSS layout box, the used value for fill-box
    is content-box and for stroke-box and view-box is border-box.

So we use the switch-case for each layout, to map the box correctly.

Use a valid content-box for CSS layout. For SVG layout, just map it to
fill-box.

In order to pass the wpt, we have to use Moz2D to get the stroke
bounding box for stroke-box, because we cannot get the simple bounds for
irregular shape elements, e.g. path elements.

It's necessary to use a tigher stroke bounding box to get the proper
coordinate of the transform origin. However, GetStrokedBounds() might not
tight enough for some irregular shapes. In any case, it is still better
than using PathExtentsToMaxStrokeExtents(), which is the worst case
because it uses the maximum possible stroke extents (and this is how we
calculate the svg frame rect for invaliation). Obviously it's not suitable
for computing the proper transform-box, so we add an extra flag to enable
the way to get stroke bounds with Moz2D APIs, and this is called only
for transform-box now.

Attachment #9347281 - Attachment description: Bug 1819464 - Support stroke-box (for SVG layout). → Bug 1819464 - Part 5: Support stroke-box (for SVG layout).
Blocks: 1849054
Pushed by bchiou@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/9c22e16e0567
Part 1: Use view-box as the initial value for transform-box. r=emilio
https://hg.mozilla.org/integration/autoland/rev/473ebe5ec7aa
Part 2: Add content-box and stroke-box into transform-box in style. r=emilio
https://hg.mozilla.org/integration/autoland/rev/d9b057905efd
Part 3: Refactor TransformReferenceBox. r=emilio
https://hg.mozilla.org/integration/autoland/rev/803ea4d17810
Part 4: Support content-box (for CSS layout). r=emilio
https://hg.mozilla.org/integration/autoland/rev/e215151d2549
Part 5: Support stroke-box (for SVG layout). r=emilio
Created web-platform-tests PR https://github.com/web-platform-tests/wpt/pull/41589 for changes under testing/web-platform/tests
Upstream PR merged by moz-wptsync-bot
Duplicate of this bug: 1693820

No changes needed for the content or BCD. Just added the FF118 Release note

Regressions: 1864396
Duplicate of this bug: 1371943
Blocks: 1868374
Regressions: 1870200
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: