summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-cascade/revert-val-004.html
blob: 6a7046c0e467896d8eb76efe7f4ae06409dc288a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<title>CSS Cascade: using 'revert' with the 'all' property</title>
<link rel="help" href="https://drafts.csswg.org/css-cascade/#default">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  div {
    display: inline;
  }
  .revert {
    all: revert;
  }
</style>
<div id=div></div>
<script>
  test(function() {
    let cs = getComputedStyle(div);
    assert_equals(cs.display, 'inline');
    div.className = 'revert';
    assert_equals(cs.display, 'block');
  }, 'The revert keyword works with the all property');
</script>