summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_CssRuleList.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/src/features/gen_CssRuleList.rs')
-rw-r--r--vendor/web-sys/src/features/gen_CssRuleList.rs37
1 files changed, 37 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_CssRuleList.rs b/vendor/web-sys/src/features/gen_CssRuleList.rs
new file mode 100644
index 000000000..1dd778fa0
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_CssRuleList.rs
@@ -0,0 +1,37 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = :: js_sys :: Object , js_name = CSSRuleList , typescript_type = "CSSRuleList")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `CssRuleList` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CSSRuleList)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CssRuleList`*"]
+ pub type CssRuleList;
+ # [wasm_bindgen (structural , method , getter , js_class = "CSSRuleList" , js_name = length)]
+ #[doc = "Getter for the `length` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CSSRuleList/length)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CssRuleList`*"]
+ pub fn length(this: &CssRuleList) -> u32;
+ #[cfg(feature = "CssRule")]
+ # [wasm_bindgen (method , structural , js_class = "CSSRuleList" , js_name = item)]
+ #[doc = "The `item()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CSSRuleList/item)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CssRule`, `CssRuleList`*"]
+ pub fn item(this: &CssRuleList, index: u32) -> Option<CssRule>;
+ #[cfg(feature = "CssRule")]
+ #[wasm_bindgen(method, structural, js_class = "CSSRuleList", indexing_getter)]
+ #[doc = "Indexing getter."]
+ #[doc = ""]
+ #[doc = ""]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CssRule`, `CssRuleList`*"]
+ pub fn get(this: &CssRuleList, index: u32) -> Option<CssRule>;
+}