blob: 49836ccfb2b25c4a3ff317d94fbf2c9828ee2934 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html dir="ltr">
<head>
<script>
document.documentElement.setAttribute('dir', 'rtl');
</script>
<style>
div {
width: 100px;
height: 100px;
float: left;
}
div:dir(rtl) {
background-color: green;
}
div:dir(ltr) {
background-color: red;
}
</style>
</head>
<body>
<div></div>
</body>
</html>