Skip to content

Commit f90da82

Browse files
Vinay Singhchromium-wpt-export-bot
Vinay Singh
authored andcommitted
Fix percentage based stroke-width in SVG shapes upon viewbox change
When svg elements are rendered with relative (percentage based) stroke-width, it isn't being recalculated on viewbox change. This poses an issue when the size of the viewbox changes such that the size of new viewbox differs from the original viewbox. In this scenario, the paint isn't invalidated and thus stroke is scaled wrongly and not adjusting well with the viewport. We have implemented a `bool ComputeHasRelativeLengths()` and used it in the LayoutSVGShape such that it uses the stroke-width data to determine if the current SVG element Layout has relative values and uses the same to trigger paint recalculation upon viewbox update. Bug: 384605094 Change-Id: I095c3d927af99e2b9ff1bf4acf086b61ed6d980a
1 parent ab0473b commit f90da82

2 files changed

+47
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
4+
<svg height="100" width="100" viewBox="40 40 20 20">
5+
<polyline stroke-width="10%" stroke="gold" points="20,20 80,80"></polyline>
6+
</svg>
7+
<svg height="100" width="100" viewBox="40 40 20 20">
8+
<polyline stroke-width="calc(5% + 5px)" stroke="gold" points="20,20 80,80"></polyline>
9+
</svg>
10+
<svg height="100" width="100" viewBox="40 40 20 20">
11+
<circle stroke-width="10%" stroke="gold" cx="50" cy="50" r="10" fill="none"></circle>
12+
</svg>
13+
<svg height="100" width="100" viewBox="40 40 20 20">
14+
<rect stroke-width="10%" stroke="gold" x="40" y="40" width="20" height="10" fill="none"></rect>
15+
</svg>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>
4+
A percentage stroke-width is updated when the viewport (viewBox) is updated.
5+
</title>
6+
<link rel="help" href="http://crbug.com/384605094">
7+
<link rel="help" href="https://www.w3.org/TR/SVG/painting.html#StrokeWidth">
8+
<link rel="help" href="https://www.w3.org/TR/SVG/coords.html#Units">
9+
<link rel="match" href="svg-percent-stroke-width-viewbox-update-ref.html">
10+
<script src="/common/rendering-utils.js"></script>
11+
12+
<svg id="svgPolyRoot" height="100" width="100" viewBox="30 30 40 40">
13+
<polyline stroke-width="10%" stroke="gold" points="20,20 80,80"></polyline>
14+
</svg>
15+
<svg id="svgPolyWithCalcStrokeWidthRoot" height="100" width="100" viewBox="30 30 40 40">
16+
<polyline stroke-width="calc(5% + 5px)" stroke="gold" points="20,20 80,80"></polyline>
17+
</svg>
18+
<svg id="svgCircleRoot" height="100" width="100" viewBox="30 30 40 40">
19+
<circle stroke-width="10%" stroke="gold" cx="50" cy="50" r="10" fill="none"></circle>
20+
</svg>
21+
<svg id="svgRectRoot" height="100" width="100" viewBox="30 30 40 40">
22+
<rect stroke-width="10%" stroke="gold" x="40" y="40" width="20" height="10" fill="none"></rect>
23+
</svg>
24+
25+
<script>
26+
waitForAtLeastOneFrame().then(() => {
27+
document.getElementById("svgPolyRoot").setAttribute("viewBox", "40 40 20 20");
28+
document.getElementById("svgPolyWithCalcStrokeWidthRoot").setAttribute("viewBox", "40 40 20 20");
29+
document.getElementById("svgCircleRoot").setAttribute("viewBox", "40 40 20 20");
30+
document.getElementById("svgRectRoot").setAttribute("viewBox", "40 40 20 20");
31+
});
32+
</script>

0 commit comments

Comments
 (0)