Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 46 subtest issues.
 - This WPT test may be referenced by the following Test IDs:
            
- /css/css-ui/parsing/interactivity-computed.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>CSS Basic User Interface Test: interactivity - computed values</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<script src="/css/support/inheritance-testcommon.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>
<div id="container">
  <div id="target"></div>
</div>
<script>
  test_computed_value("interactivity", "auto");
  test_computed_value("interactivity", "inert");
  assert_inherited("interactivity", "auto", "inert");
  test_no_interpolation({
    property: "interactivity",
    from: "auto",
    to: "inert"
  });
</script>