fix:(RWD beta): correct parent selector (#45360)

pull/45365/head
Lasse Jørgensen 2022-03-07 06:11:20 +01:00 committed by GitHub
parent 608dc83ecd
commit 90c58ff349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ You should give the `meta` a `content` attribute of `width=device-width, initial
```js
// TODO: Double-check this is the only correct answer
assert.equal(document.querySelectorAll('head > meta[content="width=device-width, initial-scale=1.0"]')?.length || document.querySelectorAll('body > meta[content="width=device-width, initial-scale=1"]')?.length, 1);
assert.equal(document.querySelectorAll('head > meta[content="width=device-width, initial-scale=1.0"]')?.length || document.querySelectorAll('head > meta[content="width=device-width, initial-scale=1"]')?.length, 1);
```
# --seed--