summaryrefslogtreecommitdiffstats
path: root/layout/reftests/unicode/langattribute-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/unicode/langattribute-ref.html')
-rw-r--r--layout/reftests/unicode/langattribute-ref.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/unicode/langattribute-ref.html b/layout/reftests/unicode/langattribute-ref.html
new file mode 100644
index 0000000000..d3908825a6
--- /dev/null
+++ b/layout/reftests/unicode/langattribute-ref.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="dk">
+<head>
+ <title>testing lang attribute</title>
+ <style>
+ div[lang="fr"] {
+ color: green;
+ }
+ div[lang="de"] > input {
+ color: blue;
+ }
+ div:not([lang]) {
+ color: yellow;
+ }
+ </style>
+</head>
+<body>
+<div lang="fr">fr language</div>
+<div lang="de">
+ <input value="de language">
+</div>
+<div>
+ dk language
+</div>
+</body>
+</html>