Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<title>CSS Cascade Layers: 'revert-layer' from the implicit outer layer to explicit</title>
<link rel="author" href="mailto:xiaochengh@chromium.org">
<link rel="match" href="reference/ref-filled-green-100px-square.xht">
<style>
#target {
width: 100px;
height: 100px;
}
@layer {
#target { background-color: green; }
}
#target {
background-color: red;
background-color: revert-layer;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="target"></div>