tenfourfox/layout/reftests/unicode/unicode-attribute-selector.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
634 B
HTML

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unicode tests - attribute selectors</title>
<style>
div[dİr] {color: red;}
div[dİr="ltr"] {text-indent: 30px;}
input[dİsabled] {display: none;}
/* input[dİsabled="disabled"] {display: inline;} */
/* work around unreliable form-control rendering on Gtk+3 (see bug 1223198): */
input { -moz-appearance: none; }
</style>
</head>
<body>
<div dir='ltr'><p lang="hi">स्टार</p></div>
<input disabled>
<input dİsabled="DİSABLED">
<input dİsabled="disabled">
</body>
</html>