mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1154773 - Change undefined property a.prototype. r=Yoric
This commit is contained in:
parent
3b2aa995f3
commit
4f85f34def
@ -90,7 +90,7 @@ function objEquiv(a, b) {
|
||||
return false;
|
||||
}
|
||||
// An identical 'prototype' property.
|
||||
if (a.prototype !== b.prototype) {
|
||||
if ((a.prototype || undefined) != (b.prototype || undefined)) {
|
||||
return false;
|
||||
}
|
||||
// Object.keys may be broken through screwy arguments passing. Converting to
|
||||
|
Loading…
Reference in New Issue
Block a user