ladybird/Tests/LibWeb/Text/input/SVG/svg-className-attribute.html

10 lines
318 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!DOCTYPE html>
2024-07-09 20:59:00 +01:00
<script src="../include.js"></script>
<svg xmlns="http://www.w3.org/2000/svg" id="svg-element" class="demo class"></svg>
<script>
test(() => {
const svgElement = document.getElementById("svg-element");
println(`svg.className = '${svgElement.className.baseVal}'`);
});
</script>