Skip to content

Commit f8e0a59

Browse files
committed
[css2] Fixed bug (found by Philippe): no whitespace was allowed between "foo"
and "{" in the rule "@page foo{...". --HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401630
1 parent 8e47a24 commit f8e0a59

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

css2/grammar.src

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
22
<html lang="en">
3-
<!-- $Id: grammar.src,v 2.14 1998-04-27 11:58:33 bbos Exp $ -->
3+
<!-- $Id: grammar.src,v 2.15 1998-05-04 15:09:50 bbos Exp $ -->
44
<HEAD>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<TITLE>Appendix D: The grammar of CSS2</TITLE>
@@ -63,11 +63,11 @@ medium
6363
: IDENT S*
6464
;
6565
page
66-
: PAGE_SYM S* IDENT? pseudo_page?
66+
: PAGE_SYM S* IDENT? pseudo_page? S*
6767
'{' S* declaration [ ';' S* declaration ]* '}' S*
6868
;
6969
pseudo_page
70-
: ':' IDENT S*
70+
: ':' IDENT
7171
;
7272
font_face
7373
: FONT_FACE_SYM S*

0 commit comments

Comments
 (0)