diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
commit | 086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch) | |
tree | a4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /layout/svg/SVGUtils.h | |
parent | Adding debian version 124.0.1-1. (diff) | |
download | firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/svg/SVGUtils.h')
-rw-r--r-- | layout/svg/SVGUtils.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/layout/svg/SVGUtils.h b/layout/svg/SVGUtils.h index f28879b796..809f75e344 100644 --- a/layout/svg/SVGUtils.h +++ b/layout/svg/SVGUtils.h @@ -346,6 +346,12 @@ class SVGUtils final { // For a frame with a clip-path, if this flag is set then the result // will not be clipped to the bbox of the content inside the clip-path. eDoNotClipToBBoxOfContentInsideClipPath = 1 << 10, + // For some cases, e.g. when using transform-box: stroke-box, we may have + // the cyclical dependency if any of the elements in the subtree has + // non-scaling-stroke. In this case, we should break it and use + // transform-box:fill-box instead. + // https://github.com/w3c/csswg-drafts/issues/9640 + eAvoidCycleIfNonScalingStroke = 1 << 11, }; /** * This function in primarily for implementing the SVG DOM function getBBox() |