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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<iframe></iframe>
<iframe srcdoc="Foo"></iframe>
<script>
const NON_CONTENT_ACCESSIBLE_PROPERTIES = [
"-x-span",
"-x-lang",
"-x-text-scale",
"-moz-window-input-region-margin",
"-moz-window-shadow",
"-moz-window-opacity",
"-moz-window-transform",
"-moz-window-transform-origin",
"-moz-top-layer",
"-moz-script-size-multiplier",
"-moz-script-level",
"-moz-math-display",
"-moz-math-variant",
"-moz-script-min-size",
"-moz-font-smoothing-background-color",
"-moz-min-font-size-ratio",
"-moz-script-size-multiplier",
"-moz-default-appearance",
"-moz-inert",
"-moz-control-character-visibility",
"-moz-context-properties",
];
function testInWin(win) {
const doc = win.document;
const sheet = doc.createElement("style");
const div = doc.createElement("div");
doc.documentElement.appendChild(sheet);
doc.documentElement.appendChild(div);
sheet.textContent = `div { color: initial }`;
assert_equals(sheet.sheet.cssRules[0].style.length, 1, `sanity: ${doc.documentURI}`);
for (const prop of NON_CONTENT_ACCESSIBLE_PROPERTIES) {
sheet.textContent = `div { ${prop}: initial }`;
let block = sheet.sheet.cssRules[0].style;
assert_equals(
block.length,
0,
`${prop} shouldn't be parsed in ${doc.documentURI}`
);
block.setProperty(prop, "initial");
assert_equals(
block.length,
0,
`${prop} shouldn't be settable via CSSOM in ${doc.documentURI}`
);
assert_equals(
win.getComputedStyle(div).getPropertyValue(prop),
"",
`${prop} shouldn't be accessible via CSSOM in ${doc.documentURI}`
);
assert_false(
win.CSS.supports(prop + ': initial'),
`${prop} shouldn't be exposed in CSS.supports in ${doc.documentURI}`
);
assert_false(
win.CSS.supports(prop, 'initial'),
`${prop} shouldn't be exposed in CSS.supports in ${doc.documentURI} (2-value version)`
);
}
}
let t = async_test("test non-content-accessible props");
onload = t.step_func_done(function() {
testInWin(window);
for (let f of document.querySelectorAll("iframe")) {
testInWin(f.contentWindow);
}
});
</script>
|