1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/received/css3-namespace/syntax-003.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 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-5.xml"/> 1.10 + <title>CSS Namespaces Test Suite: @namespace default namespace syntax</title> 1.11 + <style> 1.12 + *|test { background:red } 1.13 + </style> 1.14 + <style> 1.15 + @namespace url(test-a); 1.16 + test { background:lime } 1.17 + </style> 1.18 + <style> 1.19 + @namespace url('test-b'); 1.20 + test { background:lime } 1.21 + </style> 1.22 + <style> 1.23 + @namespace url("test-c"); 1.24 + test { background:lime } 1.25 + </style> 1.26 + <style> 1.27 + @namespace 'test-d'; 1.28 + test { background:lime } 1.29 + </style> 1.30 + <style> 1.31 + @namespace "test-e"; 1.32 + test { background:lime } 1.33 + </style> 1.34 + </head> 1.35 + <body> 1.36 + <p><test xmlns="test-a">This sentence should have a green background.</test></p> 1.37 + <p><test xmlns="test-b">This sentence should have a green background.</test></p> 1.38 + <p><test xmlns="test-c">This sentence should have a green background.</test></p> 1.39 + <p><test xmlns="test-d">This sentence should have a green background.</test></p> 1.40 + <p><test xmlns="test-e">This sentence should have a green background.</test></p> 1.41 + </body> 1.42 +</html>