wpt / svg / painting / reftests / non-scaling-stroke-with-none-preserve-aspect-ratio.html

Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/svg/painting/reftests/non-scaling-stroke-with-none-preserve-aspect-ratio.html

<!DOCTYPE html>
<title>SVG &lt;image&gt; with preserveAspectRatio=none and Non‑Scaling Stroke</title>
<link rel="author" title="Divyansh Mangal" href="mailto:dmangal@microsoft.com">
<link rel="match" href="non-scaling-stroke-with-none-preserve-aspect-ratio-ref.html">
<svg width="100" height="100">
  <rect width="100" height="100" fill="green"></rect>
  <image
    preserveAspectRatio="none"
    href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke-width='1px' stroke='black' width='0.5' height='0.5' viewBox='0 0 0.5 0.5'%3E%3Cpolyline vector-effect='non-scaling-stroke' points='0.5 0 0 0.5'/%3E%3C/svg%3E%0A"
    height="100"
    width="100"/>
</svg>

/svg/painting/reftests/non-scaling-stroke-with-none-preserve-aspect-ratio-ref.html

<!DOCTYPE html>
<svg width="100" height="100">
  <rect width="100" height="100" fill="green"/>
  <line x1="100" y1="0" x2="0" y2="100" stroke="black" stroke-width="1px"/>
</svg>