5 bugs that HTML validation caught for me

Browsers are extremely forgiving when it comes to invalid HTML. As a result, most web developers don’t bother with validating the HTML that they write. Don’t lie to me. I know you don’t. I have run your website’s source through a validator 👀.

The traditional way of validating HTML is to pass the URL of your website or copy-paste its source directly into the W3C HTML validator. This is not convenient. It’s manual, slow, and nobody will remember to do it for every pull request.

That’s why I wrote an Elixir library that provides ExUnit assertions for HTML validation. If the HTML produced by my Phoenix Controller action is invalid, the unit test will fail. It’s automatic, fast, and I only need to remember to write the right test assertion once 🚀.

In this post, I want to share with you the types of HTML bugs that I managed to catch with HTML validation, to convince you to give HTML validation a try. Note that I am not claiming that those kinds of bugs are always caused by invalid HTML, only that that was the case for me.

1. Styling ends unexpectedly

Demo on CodePen.

Given the markup below, you might expect all three phrases, “Text before a list”, “List item”, and “Text after a list” to be styled with red text.

1
2
3
4
5
6
7
8
9
10
11
12
13
<style>
  p { color: #dd0000; }
</style>

<p>
  Text before a list. 

  <ul>
    <li>List item.</li>
  </ul>

  Text after a list.
</p>

In reality, only the first phrase is red.

Expectations: All text is red. Reality: text before a list is red, all the other text is black.
We wanted all the text to be red. It's not.

HTML validation error

No p element in scope but a p end tag seen

r a list.↩</p>↩</bod

List elements cannot be nested inside paragraphs. Opening a list element implicitly closes the paragraph, which in turn causes our explicit </p> closing tag to be invalid. To achieve the expected result, we would need to wrap the first and last phrase in their own paragraphs, and also apply the text color style to the list.

2. Clicking on a label selects the wrong input

Demo on CodePen.

When a label is correctly assigned to an input, clicking the label should select that input. Sometimes, we copy-paste some markup and forget to update all the necessary attributes, leading to something like this:

1
2
3
4
5
6
7
8
9
10
11
12
13
<fieldset>
  <legend>Select T-Shirt color:</legend>

  <div>
    <input type="radio" id="color" name="color" value="red">
    <label for="color">Red</label>
  </div>

  <div>
    <input type="radio" id="color" name="color" value="blue">
    <label for="color">Blue</label>
  </div>
</fieldset>
Expectations: clicking a radio inputs
Clicking the "blue" label selects the "red" option. Oops!

HTML validation error

Duplicate ID color

<div>↩ <input type="radio" id="color" name="color" value="blue">

The first occurrence of ID color was here

<div>↩ <input type="radio" id="color" name="color" value="red">

All ids in a document must be unique. When a label’s for attribute refers to a non-unique id, clicking the label will select the first occurrence of an input with that id.

3. Autocomplete does not work

Demo on CodePen.

Autocomplete is very convenient for filling out long forms. But it’s easy to get it wrong - there are a lot of possible values for the autocomplete attribute. Can you spot what’s wrong with the one below?

1
2
3
4
5
6
7
8
9
<div>
  <label for="user-fn">Vorname</label>
  <input
    id="user-fn"
    name="name[first]"
    type="text"
    autocomplete="first-name"
  >
</div>
Expectations: focusing a first name input triggers my password manager's personal data autocomplete. Reality: focusing a first name input does not offer any kind of autocomplete.
My password manager helps me fill out my personal data fast even when the browser doesn't have any data saved for autocomplete. Except when the input wasn't correctly marked to be autocompleted with a "given name".

HTML validation error

Bad value first-name for attribute autocomplete on element input: The string first-name is not a valid autofill field name

/label>↩ <input id="user-fn" name="name[first]" type="text" autocomplete="first-name">↩</div

The correct autocomplete value would be given-name. Similarly, it’s not last-name, but family-name. I never remember that!

4. Images are gibberish to screen reader users

Demo on CodePen.

An innocent little image. Or is it?

1
2
3
4
5
<img
  width="500"
  height="373"
  src="https://angelika.me/assets/posts/blend-mode-in-css/my-bounding-box-89443a5b911b743881cde37a81f7ba63cb6cd59b8b92b5e96c61b29f888158b7.png"
>

Not for screen reader users. For them, it’s my bounding box eighty-nine thousand four hundred forty-three A five B nine hundred eleven B seven hundred forty-three thousand eight hundred eighty-one C D E thirty-seven A eighty-one F seven B A sixty-three C D fifty-nine B eight B ninety-two B five E sixty-nine C sixty-one B twenty-nine F eight hundred eighty-eight thousand one hundred fifty-eight B seven image.

Expectations: a screen reader announces an image of a cat with a caption. Reality: a screen reader reads out loud the image file name, which is a bunch of random characters.
A screen reader announcing the same image twice: once with alt text, and once without it. I paused the recording before it finished reading the long file name.

HTML validation error

An img element must have an alt attribute, except under certain conditions. For details, consult guidance on providing text alternatives for images

d>↩<body>↩<img width="500" height="373" src="https://angelika.me/assets/posts/blend-mode-in-css/my-bounding-box-89443a5b911b743881cde37a81f7ba63cb6cd59b8b92b5e96c61b29f888158b7.png">↩</bod

Every image tag needs to have an alternative text that will be displayed or spoken when the image cannot be visually perceived by the user (when using a text-based browser, a screen reader, or even in case of network errors, or users blocking remote content in emails).

When alt text is not provided, the file name is used instead. Often, the file name is autogenerated gibberish, producing a terrible experience.

Make sure the alt text briefly and accurately describes the image in the current context, or hide it completely if it’s purely decorative by providing empty alt text.

5. List not announced by screen readers

Demo on CodePen.

When a screen reader announces a list, it also announces its length, for example “list, 5 items”. This is useful information to screen reader users because it helps them know how much content to expect in the list. In the below scenario, the list will not be announced, nor its length.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="tabs">
  <div role="tablist" aria-label="Sample Tabs">
    <button
      role="tab"
      aria-selected="true"
      aria-controls="panel-1"
      id="tab-1"
      tabindex="0">
      First Tab
    </button>
    <!-- some code omitted -->
  </div>

  <ul id="panel-1" role="tabpanel" tabindex="0" aria-labelledby="tab-1">
    <li>Content for the first panel</li>
  </ul>
  <!-- csome code omitted -->
</div>
Expectations: a screen reader announces a list with one item inside of a tab panel. Reality: the list is not announced because it was given the role of a tabpanel, which overrides its list role.
A screen reader announcing the same list twice: once when the list is inside of a tabpanel, and once when the list is the tabpanel. In the second scenario, the list and its length are not announced.

HTML validation error

Bad value tabpanel for attribute role on element ul

</div>↩ <ul id="panel-1" role="tabpanel" tabindex="0" aria-labelledby="tab-1">

The mistake, in this case, was applying the tabpanel role directly on the list. The correct implementation would be to wrap the list with an extra div and give that div the tabpanel role and the other related attributes.

Select a highlight color:
Below is a bunch of random links to things that I think are cool Moop Mama - Alle Kinder (YouTube Music Video) The Correspondents - Finally (YouTube Music Video) Cow Thinks She's A Dog (YouTube Video) Sierpinski Triangle - My CSS Art