ladybird/Tests/LibWeb/Text/input/SVG/svg-element-proto.html
2025-03-20 11:50:49 +01:00

11 lines
398 B
HTML

<!DOCTYPE html>
<script src="../include.js"></script>
<script>
test(() => {
println(SVGElement.toString());
println(SVGElement.__proto__.toString());
println(SVGElement.__proto__.__proto__.toString());
println(SVGElement.__proto__.__proto__.__proto__.toString());
println(SVGElement.__proto__.__proto__.__proto__.__proto__.toString());
});
</script>