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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#![allow(unused_imports)]
#![allow(clippy::all)]
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 = HTMLTableCellElement , typescript_type = "HTMLTableCellElement")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `HtmlTableCellElement` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub type HtmlTableCellElement;
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = colSpan)]
    #[doc = "Getter for the `colSpan` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/colSpan)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn col_span(this: &HtmlTableCellElement) -> u32;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = colSpan)]
    #[doc = "Setter for the `colSpan` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/colSpan)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_col_span(this: &HtmlTableCellElement, value: u32);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = rowSpan)]
    #[doc = "Getter for the `rowSpan` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/rowSpan)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn row_span(this: &HtmlTableCellElement) -> u32;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = rowSpan)]
    #[doc = "Setter for the `rowSpan` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/rowSpan)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_row_span(this: &HtmlTableCellElement, value: u32);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = headers)]
    #[doc = "Getter for the `headers` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/headers)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn headers(this: &HtmlTableCellElement) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = headers)]
    #[doc = "Setter for the `headers` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/headers)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_headers(this: &HtmlTableCellElement, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = cellIndex)]
    #[doc = "Getter for the `cellIndex` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/cellIndex)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn cell_index(this: &HtmlTableCellElement) -> i32;
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = align)]
    #[doc = "Getter for the `align` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/align)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn align(this: &HtmlTableCellElement) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = align)]
    #[doc = "Setter for the `align` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/align)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_align(this: &HtmlTableCellElement, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = axis)]
    #[doc = "Getter for the `axis` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/axis)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn axis(this: &HtmlTableCellElement) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = axis)]
    #[doc = "Setter for the `axis` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/axis)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_axis(this: &HtmlTableCellElement, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = height)]
    #[doc = "Getter for the `height` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/height)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn height(this: &HtmlTableCellElement) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = height)]
    #[doc = "Setter for the `height` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/height)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_height(this: &HtmlTableCellElement, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = width)]
    #[doc = "Getter for the `width` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/width)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn width(this: &HtmlTableCellElement) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = width)]
    #[doc = "Setter for the `width` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/width)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_width(this: &HtmlTableCellElement, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = ch)]
    #[doc = "Getter for the `ch` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/ch)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn ch(this: &HtmlTableCellElement) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = ch)]
    #[doc = "Setter for the `ch` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/ch)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_ch(this: &HtmlTableCellElement, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = chOff)]
    #[doc = "Getter for the `chOff` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/chOff)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn ch_off(this: &HtmlTableCellElement) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = chOff)]
    #[doc = "Setter for the `chOff` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/chOff)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_ch_off(this: &HtmlTableCellElement, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = noWrap)]
    #[doc = "Getter for the `noWrap` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/noWrap)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn no_wrap(this: &HtmlTableCellElement) -> bool;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = noWrap)]
    #[doc = "Setter for the `noWrap` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/noWrap)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_no_wrap(this: &HtmlTableCellElement, value: bool);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = vAlign)]
    #[doc = "Getter for the `vAlign` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/vAlign)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn v_align(this: &HtmlTableCellElement) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = vAlign)]
    #[doc = "Setter for the `vAlign` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/vAlign)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_v_align(this: &HtmlTableCellElement, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "HTMLTableCellElement" , js_name = bgColor)]
    #[doc = "Getter for the `bgColor` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/bgColor)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn bg_color(this: &HtmlTableCellElement) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "HTMLTableCellElement" , js_name = bgColor)]
    #[doc = "Setter for the `bgColor` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement/bgColor)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `HtmlTableCellElement`*"]
    pub fn set_bg_color(this: &HtmlTableCellElement, value: &str);
}