- Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathcss-lists-no-interpolation.html
45 lines (39 loc) · 904 Bytes
/
css-lists-no-interpolation.html
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
<!DOCTYPE html>
<linkrel=authorhref="mailto:jarhar@chromium.org">
<linkrel=helphref="https://github.com/w3c/csswg-drafts/issues/4441">
<scriptsrc="/resources/testharness.js"></script>
<scriptsrc="/resources/testharnessreport.js"></script>
<scriptsrc="/css/support/interpolation-testcommon.js"></script>
<body>
<script>
test_no_interpolation({
property: 'counter-increment',
from: 'initial',
to: 'add 123'
});
test_no_interpolation({
property: 'counter-increment',
from: 'add 5',
to: 'add 123'
});
test_no_interpolation({
property: 'counter-reset',
from: 'initial',
to: 'add 123'
});
test_no_interpolation({
property: 'counter-set',
from: 'initial',
to: 'add 123'
});
test_no_interpolation({
property: 'list-style-position',
from: 'initial',
to: 'inside'
});
test_no_interpolation({
property: 'list-style-type',
from: 'initial',
to: 'square'
});
</script>