diff options
Diffstat (limited to 'layout/reftests/unicode/langattribute.html')
-rw-r--r-- | layout/reftests/unicode/langattribute.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/unicode/langattribute.html b/layout/reftests/unicode/langattribute.html new file mode 100644 index 0000000000..9630eb86ad --- /dev/null +++ b/layout/reftests/unicode/langattribute.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html lang="dk"> +<head> + <title>testing lang attribute</title> + <style> + div:lang(fr) { + color: green; + } + input:lang(de) { + color: blue; + } + div:lang(dk) { + 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> |