Enable strict mode testing for sm/Boolean

This commit is contained in:
André Bargull 2025-04-30 14:16:23 +02:00 committed by Philip Chimento
parent 630ecb4eb8
commit 00872ab917

View File

@ -2,12 +2,11 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
flags:
- noStrict
description: |
pending
esid: pending
---*/
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
@ -22,4 +21,3 @@ assert.sameValue(Boolean.prototype.hasOwnProperty('toJSON'), false);
Object.prototype.toJSON = function() { return 2; };
assert.sameValue(JSON.stringify(new Boolean(true)), "2");