summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/highlight-currentcolor-root-implicit-default-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/highlight-currentcolor-root-implicit-default-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/highlight-currentcolor-root-implicit-default-001.html')
-rw-r--r--testing/web-platform/tests/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/testing/web-platform/tests/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html b/testing/web-platform/tests/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html
deleted file mode 100644
index ecf787b9b4..0000000000
--- a/testing/web-platform/tests/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!doctype html>
-<meta charset="utf-8">
-<title>CSS Pseudo-Elements Test: implicit defaulting of ‘color’ in :root highlights</title>
-<meta name="assert" content="Checks the painting for ::selection and ::highlight, when ‘background-color’ is set in the root element but ‘color’ is implicitly defaulted. ‘background-color’ suppresses the UA default ‘color’ for ::selection via paired cascade. The resultant ‘color’ inherits through ancestor highlight pseudos up to the root, where the inherited value is defined as ‘currentColor’ for highlights, yielding green.">
-<link rel="help" href="https://drafts.csswg.org/css-pseudo/#highlight-selectors">
-<link rel="match" href="highlight-currentcolor-root-implicit-default-ref.html">
-<p>Pass if text below is green on lime, and the text itself represents green, not initial (black).</p>
-<main>FAIL</main>
-<main>FAIL</main>
-<style>
- main { color: green; }
- :root::selection { background-color: lime; }
- :root::highlight(foo) { background-color: lime; }
-</style>
-<script>
- const [selection, highlight] = document.querySelectorAll("main");
-
- let selectionRange = new Range();
- selectionRange.selectNode(selection);
- window.getSelection().addRange(selectionRange);
- selection.textContent = getComputedStyle(selection, "::selection").color;
-
- let highlightRange = new Range();
- highlightRange.selectNode(highlight);
- CSS.highlights.set("foo", new Highlight(highlightRange));
- highlight.textContent = getComputedStyle(highlight, "::highlight(foo)").color;
-</script>