1
0
Fork 0
firefox/testing/web-platform/tests/css/css-cascade/revert-val-004.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
604 B
HTML

<!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>