invalid handling of stroke-dashoffset when value matches stroke-dasharray
Confirmed Issue #9780637 • Assigned to Bogdan B.
Steps to reproduce
Sample code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Stroke Test</title>
<style>
path {
stroke-dashoffset: 30px;
stroke-dasharray: 30px;
}
</style>
</head>
<body>
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M3 12h18" stroke-linecap="round" stroke="#000" stroke-width="8" stroke-linejoin="round" fill="none" />
</svg>
</body>
</html>
In other browsers path is not visible, IE/Edge displays part of dot.
You need to sign in to your Microsoft account to add a comment.
Sign in