Components.utils.unwaiveXrays 编辑
Undo a previous call to Components.utils.waiveXrays()
, restoring Xray vision for the caller.
For example, if privileged code accesses a DOM object belonging to web content, it will by default see it using Xray vision, meaning that among other things expando properties added to the object by content are not visible. Privileged code can waive Xray vision using waiveXrays
, and it will then see expandos. It can then use unwaiveXrays
to restore its Xray vision for the object.
The waiveXrays
operation is transitive: it waives Xrays not just for the given object, but for all properties of the object (and their properties, and so on). The unwaiveXrays
operation undoes the operation, so Xray vision is restored transitively as well.
Syntax
xray = Components.utils.unwaiveXrays(obj);
Parameters
obj
- The object for which we wish to restore Xrays.
Returns
The object with Xrays restored.
Example
Suppose a page script adds an expando to its global window:
// page script
foo = "I'm an expando";
By default, chrome code won't see foo
, because it sees the content window with Xray vision, but the chrome code can waive Xray protection. The chrome code can then use unwaiveXrays
to restore Xray protection:
// chrome code
// contentWindow is an Xray
var isXray = Components.utils.isXrayWrapper(gBrowser.contentWindow); // true
// expandos are not visible in Xrays
var foo = gBrowser.contentWindow.foo; // undefined
// you can waive Xray vision for an object
var waived = Components.utils.waiveXrays(gBrowser.contentWindow);
isXray = Components.utils.isXrayWrapper(waived); // false
foo = waived.foo; // "I'm an expando"
// waiving is transitive
isXray = Components.utils.isXrayWrapper(waived.document); // false
// use unwaiveXrays to undo the waiver
var unwaived = Components.utils.unwaiveXrays(waived);
isXray = Components.utils.isXrayWrapper(unwaived); // true
foo = unwaived.foo; // undefined
// unwaiving is transitive
isXray = Components.utils.isXrayWrapper(unwaived.document); // true
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论