summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/507762-3.html
blob: ce4c7ab8e9dc0a40aafdd785a9dfcc44b1b15359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<style>
@namespace url(test);
div {
background-color: green;
}
div[dir=RTL ] 
{background-color: red !important;
}
</style>
<script>
function f() {
var elem = document.createElementNS("test","div");
elem.setAttribute("dir","rtl");
elem.appendChild(document.createTextNode("text"));
document.getElementsByTagName("body")[0].appendChild(elem); }
</script>
</head>
<body onload="f();">
</body>
</html>