Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <style> |
michael@0 | 5 | @namespace url(test); |
michael@0 | 6 | div { |
michael@0 | 7 | background-color: red; |
michael@0 | 8 | } |
michael@0 | 9 | div[mixedCase=true] { |
michael@0 | 10 | background-color: green !important; |
michael@0 | 11 | } |
michael@0 | 12 | </style> |
michael@0 | 13 | <script> |
michael@0 | 14 | function f() { |
michael@0 | 15 | var elem = document.createElementNS("test","div"); |
michael@0 | 16 | elem.setAttribute("mixedCase",true); |
michael@0 | 17 | elem.appendChild(document.createTextNode("text")); |
michael@0 | 18 | document.getElementsByTagName("body")[0].appendChild(elem); } |
michael@0 | 19 | </script> |
michael@0 | 20 | </head> |
michael@0 | 21 | <body onload="f();"> |
michael@0 | 22 | </body> |
michael@0 | 23 | </html> |