1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = DocumentFragment , extends = Node , extends = EventTarget , extends = :: js_sys :: Object , js_name = ShadowRoot , typescript_type = "ShadowRoot")]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `ShadowRoot` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ShadowRoot`*"]
pub type ShadowRoot;
#[cfg(feature = "ShadowRootMode")]
# [wasm_bindgen (structural , method , getter , js_class = "ShadowRoot" , js_name = mode)]
#[doc = "Getter for the `mode` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/mode)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ShadowRoot`, `ShadowRootMode`*"]
pub fn mode(this: &ShadowRoot) -> ShadowRootMode;
#[cfg(feature = "Element")]
# [wasm_bindgen (structural , method , getter , js_class = "ShadowRoot" , js_name = host)]
#[doc = "Getter for the `host` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/host)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Element`, `ShadowRoot`*"]
pub fn host(this: &ShadowRoot) -> Element;
# [wasm_bindgen (structural , method , getter , js_class = "ShadowRoot" , js_name = innerHTML)]
#[doc = "Getter for the `innerHTML` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/innerHTML)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ShadowRoot`*"]
pub fn inner_html(this: &ShadowRoot) -> String;
# [wasm_bindgen (structural , method , setter , js_class = "ShadowRoot" , js_name = innerHTML)]
#[doc = "Setter for the `innerHTML` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/innerHTML)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ShadowRoot`*"]
pub fn set_inner_html(this: &ShadowRoot, value: &str);
#[cfg(feature = "Element")]
# [wasm_bindgen (structural , method , getter , js_class = "ShadowRoot" , js_name = activeElement)]
#[doc = "Getter for the `activeElement` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/activeElement)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Element`, `ShadowRoot`*"]
pub fn active_element(this: &ShadowRoot) -> Option<Element>;
#[cfg(feature = "StyleSheetList")]
# [wasm_bindgen (structural , method , getter , js_class = "ShadowRoot" , js_name = styleSheets)]
#[doc = "Getter for the `styleSheets` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/styleSheets)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ShadowRoot`, `StyleSheetList`*"]
pub fn style_sheets(this: &ShadowRoot) -> StyleSheetList;
#[cfg(feature = "Element")]
# [wasm_bindgen (structural , method , getter , js_class = "ShadowRoot" , js_name = pointerLockElement)]
#[doc = "Getter for the `pointerLockElement` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/pointerLockElement)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Element`, `ShadowRoot`*"]
pub fn pointer_lock_element(this: &ShadowRoot) -> Option<Element>;
#[cfg(feature = "Element")]
# [wasm_bindgen (structural , method , getter , js_class = "ShadowRoot" , js_name = fullscreenElement)]
#[doc = "Getter for the `fullscreenElement` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/fullscreenElement)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Element`, `ShadowRoot`*"]
pub fn fullscreen_element(this: &ShadowRoot) -> Option<Element>;
#[cfg(feature = "Element")]
# [wasm_bindgen (method , structural , js_class = "ShadowRoot" , js_name = getElementById)]
#[doc = "The `getElementById()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/getElementById)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Element`, `ShadowRoot`*"]
pub fn get_element_by_id(this: &ShadowRoot, element_id: &str) -> Option<Element>;
#[cfg(feature = "HtmlCollection")]
# [wasm_bindgen (method , structural , js_class = "ShadowRoot" , js_name = getElementsByClassName)]
#[doc = "The `getElementsByClassName()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/getElementsByClassName)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlCollection`, `ShadowRoot`*"]
pub fn get_elements_by_class_name(this: &ShadowRoot, class_names: &str) -> HtmlCollection;
#[cfg(feature = "HtmlCollection")]
# [wasm_bindgen (method , structural , js_class = "ShadowRoot" , js_name = getElementsByTagName)]
#[doc = "The `getElementsByTagName()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/getElementsByTagName)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlCollection`, `ShadowRoot`*"]
pub fn get_elements_by_tag_name(this: &ShadowRoot, local_name: &str) -> HtmlCollection;
#[cfg(feature = "HtmlCollection")]
# [wasm_bindgen (method , structural , js_class = "ShadowRoot" , js_name = getElementsByTagNameNS)]
#[doc = "The `getElementsByTagNameNS()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/getElementsByTagNameNS)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlCollection`, `ShadowRoot`*"]
pub fn get_elements_by_tag_name_ns(
this: &ShadowRoot,
namespace: Option<&str>,
local_name: &str,
) -> HtmlCollection;
#[cfg(feature = "Element")]
# [wasm_bindgen (method , structural , js_class = "ShadowRoot" , js_name = elementFromPoint)]
#[doc = "The `elementFromPoint()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/elementFromPoint)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Element`, `ShadowRoot`*"]
pub fn element_from_point(this: &ShadowRoot, x: f32, y: f32) -> Option<Element>;
# [wasm_bindgen (method , structural , js_class = "ShadowRoot" , js_name = elementsFromPoint)]
#[doc = "The `elementsFromPoint()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/elementsFromPoint)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ShadowRoot`*"]
pub fn elements_from_point(this: &ShadowRoot, x: f32, y: f32) -> ::js_sys::Array;
}
|