summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/selectors/i18n/css3-selectors-lang-011.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/selectors/i18n/css3-selectors-lang-011.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/selectors/i18n/css3-selectors-lang-011.html')
-rw-r--r--testing/web-platform/tests/css/selectors/i18n/css3-selectors-lang-011.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/selectors/i18n/css3-selectors-lang-011.html b/testing/web-platform/tests/css/selectors/i18n/css3-selectors-lang-011.html
new file mode 100644
index 0000000000..648e937e97
--- /dev/null
+++ b/testing/web-platform/tests/css/selectors/i18n/css3-selectors-lang-011.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html lang="en" >
+<head>
+<meta charset="utf-8"/>
+<title>:lang(az-Arab-IR), lang="az-Arab-IR"</title>
+<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
+<link rel='help' href='http://www.w3.org/TR/css3-selectors/#lang-pseudo'>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<style type='text/css'>
+.test div { width: 50px; }
+ #colonlangcontroltest { color: red; font-weight: bold; width: 400px; }
+ #colonlangcontroltest:lang(xx) { display:none; }
+#box:lang(az-Arab-IR) { width: 100px; }
+</style>
+</head>
+<body>
+
+
+
+<div class="test"><div id="box" lang="az-Arab-IR">&#xA0;</div></div>
+<p lang='xx' id='colonlangcontroltest'>This test failed because it relies on :lang for results, but :lang is not supported by this browser.
+
+
+<!--Notes:
+This tests a detail related to :lang support. If :lang is not supported, a message will appear and the test will fail.
+-->
+<script>
+test(function() {
+assert_equals(document.getElementById('colonlangcontroltest').offsetWidth, 0)
+assert_equals(document.getElementById('box').offsetWidth, 100);
+}, "A :lang value with language, script and region subtags will match a lang attribute value with the same language, script and region subtags.");
+</script>
+
+<div id='log'></div>
+
+</body>
+</html>