Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-cascade/revert-val-004.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>CSS Cascade: using 'revert' with the 'all' property</title>
<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>