Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
michael@0 | 1 | <html xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 2 | <head> |
michael@0 | 3 | <link rel="author" title="Anne van Kesteren" href="http://annevankesteren.nl/"/> |
michael@0 | 4 | <link rel="author" title="Opera Software ASA" href="http://opera.com/"/> |
michael@0 | 5 | <link rel="help" href="http://www.w3.org/TR/css3-namespace/#syntax"/> |
michael@0 | 6 | <link rel="match" href="reftest/ref-lime-3.xml"/> |
michael@0 | 7 | <meta name="flags" content="invalid"/> |
michael@0 | 8 | <title>CSS Namespaces Test Suite: duplicate @namespace declarations</title> |
michael@0 | 9 | <style> |
michael@0 | 10 | @namespace "1"; |
michael@0 | 11 | @namespace dummy "yummy"; |
michael@0 | 12 | @namespace "2"; |
michael@0 | 13 | *|t { background:lime } |
michael@0 | 14 | t { background:red } |
michael@0 | 15 | </style> |
michael@0 | 16 | <style> |
michael@0 | 17 | @namespace "1"; |
michael@0 | 18 | @namespace dummy "yummy"; |
michael@0 | 19 | @namespace "2"; |
michael@0 | 20 | *|t2 { background:red } |
michael@0 | 21 | t2 { background:lime } |
michael@0 | 22 | </style> |
michael@0 | 23 | <style> |
michael@0 | 24 | @namespace x "1"; |
michael@0 | 25 | @namespace dummy "yummy"; |
michael@0 | 26 | @namespace x "2"; |
michael@0 | 27 | *|t3 { background:red } |
michael@0 | 28 | x|t3 { background:lime } |
michael@0 | 29 | </style> |
michael@0 | 30 | </head> |
michael@0 | 31 | <body> |
michael@0 | 32 | <p><t xmlns="1">This sentence should have a green background.</t></p> |
michael@0 | 33 | <p><t2 xmlns="2">This sentence should have a green background.</t2></p> |
michael@0 | 34 | <p><t3 xmlns="2">This sentence should have a green background.</t3></p> |
michael@0 | 35 | </body> |
michael@0 | 36 | </html> |