Test passes when it shouldn't on "Applied Visual Design: Use the del Tag to Strikethrough Text"
See original GitHub issueDescribe your problem and - if possible - how to reproduce it
On the “Applied Visual Design: Use the del Tag to Strikethrough Text” challenge there’s an instruction to add Wrap the del tag around “Google” inside the h4 tag and then add the word Alphabet beside it, which should not have the strikethrough formatting.
If you add the del tag to the Google word inside the <p>
INSTEAD of the <h4>
the test still passes.
Incorrect but passes:
<h4>Google</h4>
<em><p><del>Google</del> Alphabet was founded by Larry Page and Sergey Brin while they were <u>Ph.D. students</u> at <strong>Stanford University</strong>.</p></em>
Should pass only when the del is inside the <h4>
:
<h4><del>Google</del></h4>
<em><p>Google was founded by Larry Page and Sergey Brin while they were <u>Ph.D. students</u> at <strong>Stanford University</strong>.</p></em>
Add a Link to the page with the problem
Tell us about your browser and operating system
- Browser Name: Google Chrome
- Browser Version: Version 67.0.3396.87 (Official Build) (64-bit)
- Operating System: macOS High Sierra 10.13.15
If possible, add a screenshot here
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (2 by maintainers)
Top GitHub Comments
This particular challenge was rewritten to use the
s
tag and not thedel
tag, so this issue is not relevant anymore.The question is to strike-through Google and not Alphabet, below is the write answer to it:
GoogleAlphabet