1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:28:13 +00:00

LibWeb: Don't override prototype on generated iterator prototypes

Generated iterator prototypes already have the IteratorPrototype as
their prototype, but we were incorrectly hijacking them and rerouting
to ObjectPrototype.

Regressed in cfe663435e.
This commit is contained in:
Andreas Kling 2023-06-08 07:07:40 +02:00
parent 3f1cc7125c
commit 7f90b0cab7
3 changed files with 19 additions and 19 deletions

View file

@ -0,0 +1,13 @@
<script src="include.js"></script>
<script>
test(() => {
let u = new URLSearchParams();
let iterator = u[Symbol.iterator]();
println(iterator);
println(iterator[Symbol.iterator]());
println(iterator === iterator[Symbol.iterator]());
println(iterator[Symbol.iterator].call("hello"));
println(iterator[Symbol.iterator].call(1));
println(iterator[Symbol.iterator].call(window));
});
</script>