summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-counter-styles/cssom/cssom-prefix-suffix-setter-invalid.html
blob: 7aba3a0a5b915356ae95bf96345d9f3d54ba0712 (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
<!DOCTYPE html>
<title>CSSCounterStyleRule prefix and suffix setters with invalid values</title>
<link rel="help" href="https://www.w3.org/TR/css-counter-styles-3/#the-csscounterstylerule-interface">
<link rel="author" href="mailto:xiaochengh@chromium.org">
<link rel="match" href="cssom-prefix-suffix-setter-ref.html">
<style id="sheet">
@counter-style foo {
  system: cyclic;
  symbols: A B C;
  prefix: '(';
  suffix: ')';
}
</style>

<ol style="list-style-type: foo; list-style-position: inside">
  <li></li>
  <li></li>
  <li></li>
</ol>

<script>
// Force layout update before changing the rule
document.body.offsetWidth;

const sheet = document.getElementById('sheet');
const foo_rule = sheet.sheet.rules[0];

// Invalid values should be ignored
foo_rule.prefix = '"(" "("';
foo_rule.prefix = ')';
foo_rule.prefix = '123';

foo_rule.suffix = '")" ")"';
foo_rule.suffix = '(';
foo_rule.suffix = '456';
</script>