ids.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <html id="html"><head>
  2. <link id="link-href" href="foo" />
  3. <link id="link-nohref" />
  4. </head><body>
  5. <div id="outer-div">
  6. <a id="name-anchor" name="foo"></a>
  7. <a id="tag-anchor" rel="tag" href="http://localhost/foo">link</a>
  8. <a id="nofollow-anchor" rel="nofollow" href="https://example.org">
  9. link</a>
  10. <ol id="first-ol" class="a b c">
  11. <li id="first-li">content</li>
  12. <li id="second-li" lang="En-us">
  13. <div id="li-div">
  14. </div>
  15. </li>
  16. <li id="third-li" class="ab c"></li>
  17. <li id="fourth-li" class="ab
  18. c"></li>
  19. <li id="fifth-li"></li>
  20. <li id="sixth-li"></li>
  21. <li id="seventh-li"> </li>
  22. </ol>
  23. <p id="paragraph">
  24. <b id="p-b">hi</b> <em id="p-em">there</em>
  25. <b id="p-b2">guy</b>
  26. <input type="checkbox" id="checkbox-unchecked" />
  27. <input type="checkbox" id="checkbox-disabled" disabled="" />
  28. <input type="text" id="text-checked" checked="checked" />
  29. <input type="hidden" />
  30. <input type="hidden" disabled="disabled" />
  31. <input type="checkbox" id="checkbox-checked" checked="checked" />
  32. <input type="checkbox" id="checkbox-disabled-checked"
  33. disabled="disabled" checked="checked" />
  34. <fieldset id="fieldset" disabled="disabled">
  35. <input type="checkbox" id="checkbox-fieldset-disabled" />
  36. <input type="hidden" />
  37. </fieldset>
  38. </p>
  39. <ol id="second-ol">
  40. </ol>
  41. <map name="dummymap">
  42. <area shape="circle" coords="200,250,25" href="foo.html" id="area-href" />
  43. <area shape="default" id="area-nohref" />
  44. </map>
  45. </div>
  46. <div id="foobar-div" foobar="ab bc
  47. cde"><span id="foobar-span"></span></div>
  48. </body></html>