blob: 7fde4e0b79eb261efffce2b3a8434411b4066066 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<style>
span { color: red; }
div:dir(rtl) + span { color: green; }
</style>
<body dir="rtl" onload="window.oldColor = getComputedStyle(document.querySelector('span')).color; document.querySelector('[dir=auto]').setAttribute('dir', '')">
<div dir="auto"></div>
<span>This should be green</span>
</body>
|