summaryrefslogtreecommitdiffstats
path: root/layout/reftests/unicode/unicode-attribute-selector.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/unicode/unicode-attribute-selector.html')
-rw-r--r--layout/reftests/unicode/unicode-attribute-selector.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/unicode/unicode-attribute-selector.html b/layout/reftests/unicode/unicode-attribute-selector.html
new file mode 100644
index 0000000000..8d2eab9e42
--- /dev/null
+++ b/layout/reftests/unicode/unicode-attribute-selector.html
@@ -0,0 +1,21 @@
+<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>