unicode-attribute-selector.html 634 B

12345678910111213141516171819202122
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <title>Unicode tests - attribute selectors</title>
  5. <style>
  6. div[dİr] {color: red;}
  7. div[dİr="ltr"] {text-indent: 30px;}
  8. input[dİsabled] {display: none;}
  9. /* input[dİsabled="disabled"] {display: inline;} */
  10. /* work around unreliable form-control rendering on Gtk+3 (see bug 1223198): */
  11. input { -moz-appearance: none; }
  12. </style>
  13. </head>
  14. <body>
  15. <div dir='ltr'><p lang="hi">स्टार</p></div>
  16. <input disabled>
  17. <input dİsabled="DİSABLED">
  18. <input dİsabled="disabled">
  19. </body>
  20. </html>