Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!doctype html>
<title>Meta color-scheme in shadow-tree should not apply</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/compute-root-color-scheme.js"></script>
<!--
NOTE: This test assumes that the browser's default color-scheme is "light",
-->
<script>
const host = document.createElement("div");
host.id = "host";
document.head.appendChild(host);
const root = host.attachShadow({mode:"open"});
const meta = document.createElement("meta");
meta.setAttribute("name", "color-scheme");
meta.setAttribute("content", "dark");
root.appendChild(meta);
assert_root_color_scheme("light", "Meta color-scheme in shadow tree does not apply.");
</script>