mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
11 lines
398 B
HTML
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>
|