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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:51 次

字数:3346

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文