unicode-attribute-selector.html (634B)
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 15 <body> 16 <div dir='ltr'><p lang="hi">स्टार</p></div> 17 <input disabled> 18 <input dİsabled="DİSABLED"> 19 <input dİsabled="disabled"> 20 </body> 21 </html>