1
0
Fork 0
firefox/testing/web-platform/tests/css/css-contain/content-visibility/document-element-computed-style.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
673 B
HTML

<!DOCTYPE html>
<html style="display:none">
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1251931">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div style="content-visibility:hidden"></div>
<script>
test(() => {
document.documentElement.offsetTop;
document.documentElement.style.display = "block";
assert_equals(getComputedStyle(document.documentElement).color, 'rgb(0, 0, 0)');
}, `Verifies that ComputedStyle gets updated when the documentElement's style is dirtied in the presence of content-visibility.`);
</script>