Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/text/crashtests/abspos-pseudo.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
#outer {
position: relative;
}
text::before {
position: absolute;
content: "FOO";
}
</style>
<div id="outer">
<svg width=100 height=100>
<text x=0 y=50 fill=red>ABC</text>
</svg>
</div>
<script>
let svg = document.querySelector("svg");
svg.getBoundingClientRect();
svg.remove();
</script>