summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/content-visibility/content-visibility-026.html
blob: 17ec9a21d5683972fca0cd88c57589906e37c3e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype HTML>
<html>
<meta charset="utf8">
<title>Content Visibility: Computed Values</title>
<link rel="author" title="Rakina Zata Amni" href="mailto:rakina@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
<meta name="assert" content="content-visibility:hidden does not affect computed value of 'contain'">
<meta name="assert" content="content-visibility:auto does not affect computed value of 'contain'">

<div id="container"></div>

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<script>

test(() => {
  assert_equals(getComputedStyle(container).contain, "none");
  container.style = "content-visibility:hidden";
  assert_equals(getComputedStyle(container).contentVisibility, "hidden");
  assert_equals(getComputedStyle(container).contain, "none");
}, "content-visibility:hidden does not affect computed value of 'contain'");

test(() => {
  assert_equals(getComputedStyle(container).contain, "none");
  container.style = "content-visibility:auto;contain:layout;";
  assert_equals(getComputedStyle(container).contentVisibility, "auto");
  assert_equals(getComputedStyle(container).contain, "layout");
}, "content-visibility:auto does not affect computed value of 'contain'");

</script>