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-layer-006.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>CSS Cascade Layers: 'revert-layer' reverts origin when no lower priority declarations in the same origin</title>
<link rel="author" href="mailto:xiaochengh@chromium.org">
<link rel="match" href="reference/ref-filled-green-100px-square.xht">
<style>
#outer {
  background-color: red;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
#inner {
  color: green;
  background-color: green;
  display: inline;
  display: revert-layer; /* This should behave as 'revert', setting 'display' to 'block' */
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="outer">
  <div id="inner">
    This<br>
    is<br>
    filler<br>
    text.<br>
    This<br>
    is<br>
    filler<br>
    text.
  </div>
</div>