- From: <karl@w3.org>
- Date: Tue, 05 Sep 2006 05:56:51 -0000
- To: www-style@w3.org
Hi,
This is a QA Review comment for "CSS Module: Namespaces"
http://www.w3.org/TR/2006/WD-css3-namespace-20060828/
2006-08-28
2nd WD
About http://www.w3.org/TR/2006/WD-css3-namespace-20060828/#css-qnames
The specification doesn't say anything about qnames if attributes values as it seems to be used intensively by XHTML 2.0, for example this test.
<html xmlns="http://www.w3.org/2002/06/xhtml2/"
      xmlns:dc="http://dublincore.org/documents/dcmi-namespace/"
      xml:lang="en">
   <head>
     <title>Some Document</title>
  <style type="text/css">
     @namespace dc "http://dublincore.org/documents/dcmi-namespace/";
   </style>
   </head>
   <body>
     <cite property="dc:title" 
           href="urn:isbn:0060006994">Fix-it Duck</cite>
   </body>
 </html>
It seems that the CSS namespaces doesn't apply to values of attributes?
Should the CSS author rely on escaping to apply a rule?
 .dc\:title { }
 
-- 
Karl Dubost - http://www.w3.org/People/karl/
W3C Conformance Manager, QA Activity Lead
   QA Weblog - http://www.w3.org/QA/
      *** Be Strict To Be Cool ***
Received on Tuesday, 5 September 2006 05:57:31 UTC