You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(value)value.constructor;// Test for SecurityError.
returnvalue;
}catch(ignore){
returnFORBIDDEN;
}
}
Due to implementation details for getters on platform objects this throws TypeError: Illegal invocation, which then gets caught and misinterpreted as SecurityError. As a result the property value is rendered as [forbidden].
To reproduce:
Create a cell that returns a native object (e.g. screen, performance)
Expand the object
The text was updated successfully, but these errors were encountered:
When walking an object,
valueof
attempts to access properties on the object's prototype:inspector/src/object.js
Lines 18 to 26 in fe14a1b
Due to implementation details for getters on platform objects this throws
TypeError: Illegal invocation
, which then gets caught and misinterpreted asSecurityError
. As a result the property value is rendered as[forbidden]
.To reproduce:
screen
,performance
)The text was updated successfully, but these errors were encountered: