summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/before-in-display-none-thcrash.html
blob: 5759089a5057a37afcc087abc2c5a1703a75fcb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<title>CSS Test: Invalidating style inside display:none with ::before should not crash.</title>
<link rel="help" href="https://crbug.com/1013570">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  #outer { display: none }
  #outer::before { content: " "; }
</style>
<div id="outer">
  <div id="inner"></div>
</div>
<script>
  test(() => {
    assert_equals(getComputedStyle(inner).color, "rgb(0, 0, 0)");
    inner.style.color = "green";
    assert_equals(getComputedStyle(inner).color, "rgb(0, 128, 0)");
  }, "Invalidating style inside display:none with ::before should not crash.");
</script>