mirror of https://github.com/tc39/test262.git
harness/propertyHelper.js: Check the new property value chosen by isWritable for collision
This commit is contained in:
parent
07a2c2501e
commit
0c7af4685f
|
@ -173,6 +173,10 @@ function isWritable(obj, name, verifyProp, value) {
|
|||
var oldValue = obj[name];
|
||||
var writeSucceeded;
|
||||
|
||||
if (arguments.length < 4 && newValue === oldValue) {
|
||||
newValue = newValue + "2";
|
||||
}
|
||||
|
||||
try {
|
||||
obj[name] = newValue;
|
||||
} catch (e) {
|
||||
|
|
Loading…
Reference in New Issue