prototype property lookup frozen

Benchmark created on


Preparation HTML

<script>
o1 = { a: 1 };
o2 = { a: 1 };
Object.freeze(o2);

p1 = Object.create(o1);
p2 = Object.create(o2);
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
non frozen
p1.a
ready
frozen
p2.a
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.