File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -144,9 +144,10 @@ export const LegacyElementMixin = dedupingMixin((base) => {
144
144
}
145
145
146
146
/**
147
+ * Sets the value of an attribute.
147
148
* @override
148
- * @param {string } name
149
- * @param {string } value
149
+ * @param {string } name The name of the attribute to change.
150
+ * @param {string } value The new attribute value.
150
151
*/
151
152
setAttribute ( name , value ) {
152
153
if ( legacyNoObservedAttributes && ! this . _legacyForceObservedAttributes ) {
@@ -160,8 +161,9 @@ export const LegacyElementMixin = dedupingMixin((base) => {
160
161
}
161
162
162
163
/**
164
+ * Removes an attribute.
163
165
* @override
164
- * @param {string } name
166
+ * @param {string } name The name of the attribute to remove.
165
167
*/
166
168
removeAttribute ( name ) {
167
169
if ( legacyNoObservedAttributes && ! this . _legacyForceObservedAttributes ) {
You can’t perform that action at this time.
0 commit comments