* refactor: delete existing steps * feat: create new steps * feat: start writing tests * feat: complete html tests * feat: remaining tests * chore: remove "test 1" Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> * fix: wow I really botched that find and replace Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> * fix: why firefox gotta be different? * fix: I can maths... * chore: apply shaun's review suggestions Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> * fix: unbotch the css oops * fix: acme widget corp * fix: remove z-index * feat: introduce the calc() function * fix: even one more find and replace oops Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com>
1.4 KiB
1.4 KiB
id, title, challengeType, dashedName
id | title | challengeType | dashedName |
---|---|---|---|
61fd6ab779390f49148773bb | Step 5 | 0 | step-5 |
--description--
Below your h1
element, create a div
element. Give it an id
attribute set to years
. You want this particular element to be hidden from screen readers, so give it the aria-hidden
attribute set to true
.
--hints--
You should create a new div
element after your h1
element.
assert(document.querySelector('h1')?.nextElementSibling?.localName === 'div');
Your new div
element should have an id
attribute set to years
.
assert(document.querySelector('div')?.getAttribute('id') === 'years');
Your new div
element should have the aria-hidden
attribute set to true
.
assert(document.querySelector('div')?.getAttribute('aria-hidden') === 'true');
--seed--
--seed-contents--
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AcmeWidgetCorp Balance Sheet</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<main>
<section>
<h1>
<span class="flex">
<span>AcmeWidgetCorp</span>
<span>Balance Sheet</span>
</span>
</h1>
--fcc-editable-region--
--fcc-editable-region--
</section>
</main>
</body>
</html>