tenfourfox/layout/reftests/bugs/507762-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

24 lines
440 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
@namespace url(test);
div {
background-color: red;
}
div[mixedCase=true] {
background-color: green !important;
}
</style>
<script>
function f() {
var elem = document.createElementNS("test","div");
elem.setAttribute("mixedCase",true);
elem.appendChild(document.createTextNode("text"));
document.getElementsByTagName("body")[0].appendChild(elem); }
</script>
</head>
<body onload="f();">
</body>
</html>