mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|