1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16

content / test / data / accessibility / html / html-attributes-and-tag-names.html [blame]

<html>
<head>
  <title>Hello World</title>
  <script>console.log("Skip me!");</script>
  <meta charset="utf-8">
  <link ref="canonical" href="https://abc.com">
  <script type="application/ld+json">{}</script>
</head>
<body>
  <h1>Heading</h1>
  <p>Paragraph</p>
  <div><input></div>
  <button id='a' class='b' aria-label='c'>D</button>
  <button>Click</button>
</body>
</html>