Amaya 7.2 bug: properties and selectors

Hi,

Following the selector used to express a property, the result can be 
different when this property is define twice or more (strange use, but ...).
The first behavior of the following examples seems to be the good one.

Examples :
--------
h2 {
	color: blue;
	color: red;
	color: green;
}

==> h2 will appear in green color
Same result is observed with the following selectors:
	p h2
	p > h2

whereas with this code :
----------------------

.myclass h2 {
	color: blue;
	color: red;
	color: green;
}

==> h2 will appear in blue color

Same result is observed with the following selectors:
	p.myclass h2
	p.myclass > h2


(I have observed the same behavior with others property like 'border' 
for instance)


Best regards,

Frederic Bes.
-- 

Frederic.Bes@inrialpes.fr
INRIA Rhone-Alpes - Equipe WAM | ZIRST - 655 avenue de l'Europe
B207 - Tel: +33 04.76.61.54.13 | Montbonnot - 38334 ST ISMIER CEDEX

Received on Wednesday, 12 February 2003 10:06:33 UTC