summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/cascade-highlight-001.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
commit8dd16259287f58f9273002717ec4d27e97127719 (patch)
tree3863e62a53829a84037444beab3abd4ed9dfc7d0 /testing/web-platform/tests/css/css-pseudo/cascade-highlight-001.html
parentReleasing progress-linux version 126.0.1-1~progress7.99u1. (diff)
downloadfirefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz
firefox-8dd16259287f58f9273002717ec4d27e97127719.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-pseudo/cascade-highlight-001.html')
-rw-r--r--testing/web-platform/tests/css/css-pseudo/cascade-highlight-001.html67
1 files changed, 0 insertions, 67 deletions
diff --git a/testing/web-platform/tests/css/css-pseudo/cascade-highlight-001.html b/testing/web-platform/tests/css/css-pseudo/cascade-highlight-001.html
deleted file mode 100644
index 6068a076f0..0000000000
--- a/testing/web-platform/tests/css/css-pseudo/cascade-highlight-001.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<!DOCTYPE html>
-
- <meta charset="UTF-8">
-
- <title>CSS Pseudo-Elements Test: higher specificity of selectors (Example 11)</title>
-
- <link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
- <link rel="help" href="https://www.w3.org/TR/css-pseudo-4/#highlight-cascade">
- <link rel="match" href="cascade-highlight-001-ref.html">
-
- <!--
- Example 11 is
- https://www.w3.org/TR/css-pseudo-4/#example-c35bf49a
- -->
-
- <meta name="assert" content="This test is an adaptation (or modified version) of Example 11 (#example-c35bf49a). The 'div &gt; span::selection' selector has an higher specificity than the 'span::selection' selector.">
-
- <link rel="stylesheet" href="support/highlights.css">
- <style>
- div
- {
- font-size: 300%;
- }
-
- div::selection
- {
- background-color: green;
- color: yellow;
- }
-
- div > span::selection
- /*
- count the number of element names and pseudo-elements in the selector (= d)
- a=0 b=0 c=0 d=3 -> specificity = 0,0,0,3
- */
- {
- background-color: green;
- }
-
- span::selection
- /*
- count the number of element names and pseudo-elements in the selector (= d)
- a=0 b=0 c=0 d=2 -> specificity = 0,0,0,2
- */
- {
- background-color: red;
- color: yellow;
- }
- </style>
-
- <script>
- function startTest()
- {
- var targetRange = document.createRange();
- /* We first create an empty range */
- targetRange.selectNodeContents(document.getElementById("test"));
- /* Then we set the range boundaries to the children of div#test */
- window.getSelection().addRange(targetRange);
- /* Finally, we now select such range of content */
- }
- </script>
-
- <body onload="startTest();">
-
- <p>Test passes if background color of "Text sample" is green and <strong>not red</strong>.
-
- <div id="test" class="highlight_reftest">Text <span>sample</span></div>