mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
24 lines
429 B
HTML
24 lines
429 B
HTML
<!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>
|