mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-14 15:13:07 +00:00
Without this, retrieving `__proto__` from any interface will always yield an instance of `FunctionPrototype`.
10 lines
382 B
HTML
10 lines
382 B
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>
|