fix: add missing quote in checkbox selector (#64585)

This commit is contained in:
Souparno Nag
2025-12-14 20:57:07 +05:30
committed by GitHub
parent 0233d77794
commit b5f7796c06

View File

@@ -15,7 +15,7 @@ After doing so, since the checkbox won't be visible anymore, set a `border` with
# --hints--
You should add an `appearance` property to your `input[type="checkbox]` selector.
You should add an `appearance` property to your `input[type="checkbox"]` selector.
```js
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.appearance);