- From: Yves Savourel <ysavourel@enlaso.com>
- Date: Fri, 1 Feb 2013 05:45:12 -0700
- To: "'Multilingual Web LT-TESTS Public'" <public-multilingualweb-lt-tests@w3.org>
Hi Leroy, all, The new languageinfo4html.html test case has a problem (regardless the fact that it's XHTML in the HTML test cases): The content of the <script> is in CDATA. We can't have that since we need a root element. One cannot parse this as XML. <script type="application/its+xml"> <![CDATA[ <its:rules xmlns:its="http://www.w3.org/2005/11/its" version="2.0"> <its:langRule selector="//h:p" langPointer="@class" xmlns:h="http://www.w3.org/1999/xhtml"/> </its:rules> ]]> </script> should be: <script type="application/its+xml"> <its:rules xmlns:its="http://www.w3.org/2005/11/its" version="2.0"> <its:langRule selector="//h:p" langPointer="@class" xmlns:h="http://www.w3.org/1999/xhtml"/> </its:rules> </script> (I haven't fixed it since I don't know what we'll decide for that XHTML test case). cheers, -yves
Received on Friday, 1 February 2013 12:45:41 UTC