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>
6903969039 this.addEventListener('click', this._onClick.bind(this));
6904069040
6904169041<mark> this._internals.role = 'checkbox';
69042- this._internals.ariaChecked = false;</mark>
69042+ this._internals.ariaChecked = ' false' ;</mark>
6904369043 }
6904469044
6904569045 get form() { return this._internals.form; }
6904669046 get name() { return this.getAttribute('name'); }
6904769047 get type() { return this.localName; }
6904869048
69049- get checked() { return this.getAttribute ('checked'); }
69049+ get checked() { return this.hasAttribute ('checked'); }
6905069050 set checked(flag) { this.toggleAttribute('checked', Boolean(flag)); }
6905169051
6905269052 attributeChangedCallback(name, oldValue, newValue) {
You can’t perform that action at this time.
0 commit comments