1
0
Fork 0
firefox/testing/web-platform/tests/svg/path/reftests/path-zoom-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
319 B
HTML

<!doctype html>
<html>
<style type="text/css">
path {
stroke-width: 10px;
stroke: blue;
fill: lime;
}
svg {
width: 100px;
height: 100px;
border: 1px solid black;
background: red;
zoom: 400%;
}
</style>
<body>
<svg>
<path d="m 5 5 h90 v90 h-90 z"></path>
</svg>
</body>
</html>