Attributes.html 503 B

12345678910111213141516
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Attributes test</title>
  5. </head>
  6. <body>
  7. <!-- Normal attributes -->
  8. <button id="test0" class="value0" title="value1">class="value0" title="value1"</button>
  9. <!-- Attributes with no quotes or value -->
  10. <button id="test1" class=value2 disabled>class=value2 disabled</button>
  11. <!-- Attributes with no space between them. No valid, but accepted by the browser -->
  12. <button id="test2" class="value4"title="value5">class="value4"title="value5"</button>
  13. </body>
  14. </html>