mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
script: Expose node helpers as NodeTraits
and give more descriptive names (#34832)
This puts a few commonly used `Node` helpers into a trait (`NodeTraits`) and gives them more descriptive names and documentation. The renames: - `document_from_node` -> `NodeTraits::owner_document` - `window_from_node` -> `NodeTraits::owner_window` - `stylesheets_owner_from_node<T:` -> `NodeTraits::stylesheet_list_owner` - `containing_shadow_root` -> `NodeTraits::containing_shadow_root` Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
621ddd749c
commit
e8f75c9aea
66 changed files with 415 additions and 426 deletions
|
@ -133,7 +133,7 @@ use crate::dom::mediaquerylist::{MediaQueryList, MediaQueryListMatchState};
|
|||
use crate::dom::mediaquerylistevent::MediaQueryListEvent;
|
||||
use crate::dom::messageevent::MessageEvent;
|
||||
use crate::dom::navigator::Navigator;
|
||||
use crate::dom::node::{document_from_node, from_untrusted_node_address, Node, NodeDamage};
|
||||
use crate::dom::node::{from_untrusted_node_address, Node, NodeDamage, NodeTraits};
|
||||
use crate::dom::performance::Performance;
|
||||
use crate::dom::promise::Promise;
|
||||
use crate::dom::screen::Screen;
|
||||
|
@ -882,7 +882,7 @@ impl WindowMethods<crate::DomTypeHolder> for Window {
|
|||
let container = window_proxy.frame_element()?;
|
||||
|
||||
// Step 6.
|
||||
let container_doc = document_from_node(container);
|
||||
let container_doc = container.owner_document();
|
||||
let current_doc = GlobalScope::current()
|
||||
.expect("No current global object")
|
||||
.as_window()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue