blob: d70fa53022e16e2fc01f9035e13f1f4eb9f118bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Cascade: "all: revert"</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<link rel="help" href="https://www.w3.org/TR/css-cascade-4/#default">
<meta name="assert" content="Checks that adding 'all: revert' has no effect on elements with no other author rules.">
<meta name="timeout" content="long">
<style>
.revert-all {
all: revert;
}
</style>
<div id="log"></div>
<div id="wrapper"></div>
<script src="/html/resources/common.js"></script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
function cloneStyle(style) {
const clone = Object.create(null);
for (let property of style) {
clone[property] = style.getPropertyValue(property);
}
return clone;
}
function assertSameClones(clone1, clone2, callback) {
for (let property in clone1) {
const value1 = clone1[property];
const value2 = clone2[property];
// assert_equals is slow, so only call it if it's going to fail.
if (value1 !== value2) {
assert_equals(value1, value2, property);
}
}
}
const wrapper = document.getElementById("wrapper");
const elementNames = [...HTML5_ELEMENTS, "math", "svg", "z-custom"].sort();
for (let elementName of elementNames) {
test(function() {
const element = document.createElement(elementName);
wrapper.appendChild(element);
const style = getComputedStyle(element);
const clonedBaseStyle = cloneStyle(style);
element.classList.add("revert-all");
const clonedRevertedStyle = cloneStyle(style);
assertSameClones(clonedRevertedStyle, clonedBaseStyle);
}, elementName);
}
</script>
|