--- id: 5f0d4d04b435f13ab6550053 title: Step 53 challengeType: 0 dashedName: step-53 --- # --description-- Aggiungi un elemento `legend` con il testo `What's your cat's personality?` all'interno del secondo elemento `fieldset`. # --hints-- Hai eliminato il secondo elemento `fieldset` oppure manca un tag di apertura o di chiusura. ```js assert( document.querySelectorAll('fieldset').length === 2 && code.match(/<\/fieldset>/g).length === 2 ); ``` L'elemento `legend` dovrebbe avere un tag di apertura. I tag di apertura hanno questa sintassi: ``. ```js const secondFieldset = $('fieldset')[1]; assert( secondFieldset && [...secondFieldset.children].filter((child) => child.nodeName === 'LEGEND') .length ); ``` L'elemento `legend` dovrebbe avere un tag di chiusura. I tag di chiusura hanno un carattere`/` subito dopo il carattere `<`. ```js assert(code.match(/<\/legend\>/g).length === 2); ``` L'elemento `legend` dovrebbe avere il testo `What's your cat's personality?`. Hai omesso il testo o hai un refuso. ```js const secondFieldset = $('fieldset')[1]; assert( secondFieldset && [...secondFieldset.children].filter((child) => { const extraSpacesRemoved = child.innerText.replace(/\s+/g, ' '); return ( child.nodeName === 'LEGEND' && extraSpacesRemoved.match(/What's your cat's personality\??$/i) ); }).length ); ``` # --seed-- ## --seed-contents-- ```html

CatPhotoApp

Cat Photos

Click here to view more cat photos.

A cute orange cat lying on its back.

Cat Lists

Things cats love:

  • cat nip
  • laser pointers
  • lasagna
A slice of lasagna on a plate.
Cats love lasagna.

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
Five cats looking around a field.
Cats hate other cats.

Cat Form

Is your cat an indoor or outdoor cat?
--fcc-editable-region--
--fcc-editable-region--
```