/[suikacvs]/markup/html/whatpm/t/css-3.dat
Suika

Contents of /markup/html/whatpm/t/css-3.dat

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Sun Feb 10 07:34:10 2008 UTC (17 years, 5 months ago) by wakaba
Branch: MAIN
++ whatpm/t/ChangeLog	10 Feb 2008 07:34:02 -0000
2008-02-10  Wakaba  <wakaba@suika.fam.cx>

	* css-3.dat: New test file.

	* CSS-Parser-1.t: |css-3.dat| is added.  '-moz-pre-wrap' added.
	Typo for 'collapse' value fixed.  Support for '@namespace'
	serialization.

	* css-1.dat: New test data for selectors parsing.

	* css-font.dat: Error locations for 'u' errors are corrected.

	* css-table.dat: Test data for 'border-collapse' are added.

	* css-text.dat: Test data for '-moz-pre-wrap' are added.

	* css-visual.dat: Test data for 'background-position' are added.

++ whatpm/Whatpm/Charset/ChangeLog	10 Feb 2008 07:31:32 -0000
2008-02-10  Wakaba  <wakaba@suika.fam.cx>

	* CharDet.pm (detect): Catch an error in detection function.

++ whatpm/Whatpm/CSS/ChangeLog	10 Feb 2008 07:30:34 -0000
2008-02-10  Wakaba  <wakaba@suika.fam.cx>

	* Parser.pm: |attr(prefix|localname)| did not work.  Support
	for uppercase namespace prefixes (namespace prefixes were
	not normalized into lowercase when they were looked up.).  Report
	the property name token when an unknown property error is raised.
	The '-moz-pre-wrap' value is supported for 'white-space' property.
	('background-position'): 'center left' and 'center right'
	were not supported.

	* SelectorsParser.pm: Report the namespace prefix token when
	an undeclared prefix error is raised.  S_TOKEN in
	COMBINATOR_STATE was not handled correctly.

1 wakaba 1.1 #data
2     x|y {}
3     #errors
4     ;1;1;m;namespace prefix:not declared;x
5     #cssom
6    
7     #data
8     xYz|y {}
9     #errors
10     ;1;1;m;namespace prefix:not declared;xYz
11     #cssom
12    
13     #data
14     x|* {}
15     #errors
16     ;1;1;m;namespace prefix:not declared;x
17     #cssom
18    
19     #data
20     xYz|* {}
21     #errors
22     ;1;1;m;namespace prefix:not declared;xYz
23     #cssom
24    
25     #data
26     [x|y] {}
27     #errors
28     ;1;2;m;namespace prefix:not declared;x
29     #cssom
30    
31     #data
32     [xYz|y] {}
33     #errors
34     ;1;2;m;namespace prefix:not declared;xYz
35     #cssom
36    
37     #data
38     p {
39     content: attr(x|y);
40     }
41     #errors
42     ;2;17;m;namespace prefix:not declared;x
43     #cssom
44     | <p>
45    
46     #data
47     p {
48     content: attr(xYz|y);
49     }
50     #errors
51     ;2;17;m;namespace prefix:not declared;xYz
52     #cssom
53     | <p>
54    
55     #data
56     @namespace x 'about:';
57     x|y {}
58     #cssom
59     | @namespace x: <about:>
60     | <x|y>
61     #csstext
62     @namespace x url(about:);
63     x|y {
64     }
65    
66     #data
67     @namespace X 'about:';
68     x|y {}
69     #cssom
70     | @namespace x: <about:>
71     | <x|y>
72     #csstext
73     @namespace x url(about:);
74     x|y {
75     }
76    
77     #data
78     @namespace x 'about:';
79     @namespace X 'opera:';
80     x|y {}
81     #cssom
82     | @namespace x: <about:>
83     | @namespace x: <opera:>
84     | <x|y>
85     #csstext
86     @namespace x url(about:);
87     @namespace x url(opera:);
88     x|y {
89     }
90    

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24