Problem with test udom-dom-203-t.svg

Hi all,

The test udom-dom-203-t.svg uses access to textContent and performs some string comparison to decide if the test is a pass or fail. But this assumes that text normalization is done. This is optional in the spec so the test should be modified. I propose to change:

assertTrue(e.textContent == t);

to:

assertTrue(e.textContent.search(t));

Cyril
-- 
Cyril Concolato
Maître de Conférences/Associate Professor
Groupe Mutimedia/Multimedia Group
Département Traitement du Signal et Images
/Dept. Signal and Image Processing
Ecole Nationale Supérieure des Télécommunications
46 rue Barrault
75 013 Paris, France
http://tsi.enst.fr/~concolat 

Received on Tuesday, 4 November 2008 17:22:40 UTC