File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -69039,14 +69039,14 @@ customElements.define('my-checkbox', MyCheckbox);</code></pre>
69039
69039
this.addEventListener('click', this._onClick.bind(this));
69040
69040
69041
69041
<mark> this._internals.role = 'checkbox';
69042
- this._internals.ariaChecked = false;</mark>
69042
+ this._internals.ariaChecked = ' false' ;</mark>
69043
69043
}
69044
69044
69045
69045
get form() { return this._internals.form; }
69046
69046
get name() { return this.getAttribute('name'); }
69047
69047
get type() { return this.localName; }
69048
69048
69049
- get checked() { return this.getAttribute ('checked'); }
69049
+ get checked() { return this.hasAttribute ('checked'); }
69050
69050
set checked(flag) { this.toggleAttribute('checked', Boolean(flag)); }
69051
69051
69052
69052
attributeChangedCallback(name, oldValue, newValue) {
You can’t perform that action at this time.
0 commit comments