Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Components.utils.isXrayWrapper

This article needs a technical review. How you can help.

When privileged JavaScript in Gecko accesses objects belonging to less-privileged code (such as untrusted web content), it does so, by default, with "Xray vision": a mechanism that filters out certain changes to the objects that could cause them to behave in unexpected ways. For example, privileged code using an Xray to a DOM object sees only  the original, native version of the DOM object. Any expando properties are not visible, and if any native properties have been redefined, this has no effect.

Use this function to determine whether a given object is an Xray or not.

Syntax

boolean Components.utils.isXrayWrapper(obj);

Parameters

obj
The object to check.

Returns

true if the object is an Xray: false otherwise.

Example

var isXray = Components.utils.isXrayWrapper(gBrowser.contentWindow);       // true
var waived = Components.utils.waiveXrays(gBrowser.contentWindow);
isXray = Components.utils.isXrayWrapper(waived);                       // false

See also

Document Tags and Contributors

 Contributors to this page: teoli, wbamberg
 Last updated by: wbamberg,