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