Skip to content

Commit 7126095

Browse files
committed
Fix the use of attr() in the example stylesheet to match current V&U.
--HG-- extra : rebase_source : 084a45e2e6c772accee8d236b7d9fcd5ee28cc6f
1 parent 5e4ce5b commit 7126095

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

css3-lists/Overview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3075,13 +3075,13 @@ <h2 id=ua-stylesheet><span class=secno>13. </span> Sample style sheet for
30753075

30763076
/* The start attribute on ol elements */
30773077
ol[start] {
3078-
counter-reset: list-item attr(start, integer, 1);
3078+
counter-reset: list-item attr(start integer, 1);
30793079
counter-increment: list-item -1;
30803080
}
30813081

30823082
/* The value attribute on li elements */
30833083
li[value] {
3084-
counter-set: list-item attr(value, integer, 1);
3084+
counter-set: list-item attr(value integer, 1);
30853085
counter-increment: none; /* Turn off default increase */
30863086
}
30873087

css3-lists/Overview.src.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2049,13 +2049,13 @@ <h2 id='ua-stylesheet'>
20492049

20502050
/* The start attribute on ol elements */
20512051
ol[start] {
2052-
counter-reset: list-item attr(start, integer, 1);
2052+
counter-reset: list-item attr(start integer, 1);
20532053
counter-increment: list-item -1;
20542054
}
20552055

20562056
/* The value attribute on li elements */
20572057
li[value] {
2058-
counter-set: list-item attr(value, integer, 1);
2058+
counter-set: list-item attr(value integer, 1);
20592059
counter-increment: none; /* Turn off default increase */
20602060
}
20612061

0 commit comments

Comments
 (0)