fix: added the missing quote for checkbox for issue (#64584)

Co-authored-by: majestic-owl448 <26656284+majestic-owl448@users.noreply.github.com>
This commit is contained in:
Saurabh Shakya
2025-12-14 21:12:27 +05:30
committed by GitHub
parent b5f7796c06
commit 0cb93406a8
2 changed files with 4 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ You should have a selector in your CSS of `input[type="checkbox"]`.
assert.exists(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]'));
```
You should add a `width` property to your `input[type="checkbox]` selector.
You should add a `width` property to your `input[type="checkbox"]` selector.
```js
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.width);
@@ -35,7 +35,7 @@ You should have a `width` property with a value of `20px`.
assert.strictEqual(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.width, "20px");
```
You should add a `height` property to your `input[type="checkbox]` selector.
You should add a `height` property to your `input[type="checkbox"]` selector.
```js
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.height);
@@ -47,7 +47,7 @@ You should have a `height` property with a value of `20px`.
assert.strictEqual(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.height, "20px");
```
You should add a `cursor` property to your `input[type="checkbox]` selector.
You should add a `cursor` property to your `input[type="checkbox"]` selector.
```js
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.cursor);

View File

@@ -27,7 +27,7 @@ You should have an `appearance` property with a value of `none`.
assert.strictEqual(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.appearance, "none");
```
You should add a `border` property to your `input[type="checkbox]` selector.
You should add a `border` property to your `input[type="checkbox"]` selector.
```js
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.border);