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
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
if (a.shadyUpgradeFragment && !w.Pa) {
var b = a.shadyUpgradeFragment;
b.__proto__ = ShadowRoot.prototype;
b.ya(this, a); // <--- if we do not allow to change the b.__proto__ - it still be a null
wc(b, b);
a = b.__noInsertionPoint ? null : b.querySelectorAll("slot");
b.__noInsertionPoint = void 0;
a && a.length && (b.sa(a),
b.s());
b.host.__shady_native_appendChild(b)
} else
Steps to reproduce
Run following code to protect changing the __proto__ value:
webcomponents-sd.js:95 Uncaught TypeError: b.ya is not a function
at HTMLElement.attachShadow [as __shady_attachShadow] (webcomponents-sd.js:95:222)
at P.attachShadow (webcomponents-sd.js:123:124)
at a._attachDom (desktop_polymer.js:4254:96)
at a._readyClients (desktop_polymer.js:4253:70)
at a._flushClients (desktop_polymer.js:4176:125)
at a._propertiesChanged (desktop_polymer.js:4182:69)
at HTMLElement._flushProperties (desktop_polymer.js:4053:200)
at a.ready (desktop_polymer.js:4180:35)
at a.ready (desktop_polymer.js:4252:131)
at a.ready (desktop_polymer.js:4563:48)
Version
Browsers affected
Chrome
Firefox
Edge
Safari
IE 11
The text was updated successfully, but these errors were encountered:
Description
Object.prototype.__proto__
— https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/proto
Example
Steps to reproduce
Run following code to protect changing the
__proto__
value:Expected behavior
No error is thrown
Actual behavior
Error is thrown:
Version
Browsers affected
The text was updated successfully, but these errors were encountered: