summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_HtmlQuoteElement.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/src/features/gen_HtmlQuoteElement.rs')
-rw-r--r--vendor/web-sys/src/features/gen_HtmlQuoteElement.rs28
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_HtmlQuoteElement.rs b/vendor/web-sys/src/features/gen_HtmlQuoteElement.rs
new file mode 100644
index 000000000..9d18e1382
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_HtmlQuoteElement.rs
@@ -0,0 +1,28 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = HtmlElement , extends = Element , extends = Node , extends = EventTarget , extends = :: js_sys :: Object , js_name = HTMLQuoteElement , typescript_type = "HTMLQuoteElement")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `HtmlQuoteElement` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HtmlQuoteElement`*"]
+ pub type HtmlQuoteElement;
+ # [wasm_bindgen (structural , method , getter , js_class = "HTMLQuoteElement" , js_name = cite)]
+ #[doc = "Getter for the `cite` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement/cite)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HtmlQuoteElement`*"]
+ pub fn cite(this: &HtmlQuoteElement) -> String;
+ # [wasm_bindgen (structural , method , setter , js_class = "HTMLQuoteElement" , js_name = cite)]
+ #[doc = "Setter for the `cite` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement/cite)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HtmlQuoteElement`*"]
+ pub fn set_cite(this: &HtmlQuoteElement, value: &str);
+}