1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 22:58:36 +00:00
Files
UXP/layout/reftests/unicode/langattribute-ref.html

27 lines
411 B
HTML

<!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>