mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
10 lines
323 B
XML
10 lines
323 B
XML
|
|
<!--
|
||
|
|
Check that we don't crash due to an nsSVGMarkerFrame having a null
|
||
|
|
mMarkedFrame and incorrectly calling GetCanvasTM() on the nsSVGMarkerFrame.
|
||
|
|
-->
|
||
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<marker><text>a</text></marker>
|
||
|
|
<script>
|
||
|
|
document.querySelector("text").getComputedTextLength();
|
||
|
|
</script>
|
||
|
|
</svg>
|