Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/content-visibility/document-element-computed-style.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html style="display:none">
<link rel=author href="mailto:jarhar@chromium.org">
<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>