1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/received/css3-namespace/syntax-010.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,36 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 + <head> 1.6 + <link rel="author" title="Anne van Kesteren" href="http://annevankesteren.nl/"/> 1.7 + <link rel="author" title="Opera Software ASA" href="http://opera.com/"/> 1.8 + <link rel="help" href="http://www.w3.org/TR/css3-namespace/#syntax"/> 1.9 + <link rel="match" href="reftest/ref-lime-3.xml"/> 1.10 + <meta name="flags" content="invalid"/> 1.11 + <title>CSS Namespaces Test Suite: duplicate @namespace declarations</title> 1.12 + <style> 1.13 + @namespace "1"; 1.14 + @namespace dummy "yummy"; 1.15 + @namespace "2"; 1.16 + *|t { background:lime } 1.17 + t { background:red } 1.18 + </style> 1.19 + <style> 1.20 + @namespace "1"; 1.21 + @namespace dummy "yummy"; 1.22 + @namespace "2"; 1.23 + *|t2 { background:red } 1.24 + t2 { background:lime } 1.25 + </style> 1.26 + <style> 1.27 + @namespace x "1"; 1.28 + @namespace dummy "yummy"; 1.29 + @namespace x "2"; 1.30 + *|t3 { background:red } 1.31 + x|t3 { background:lime } 1.32 + </style> 1.33 + </head> 1.34 + <body> 1.35 + <p><t xmlns="1">This sentence should have a green background.</t></p> 1.36 + <p><t2 xmlns="2">This sentence should have a green background.</t2></p> 1.37 + <p><t3 xmlns="2">This sentence should have a green background.</t3></p> 1.38 + </body> 1.39 +</html>