blob: c502f0c1f432be495ae3cf93529544838f73012d [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<body>
<div id="element" class="box"></div>
<div id="host" class="box"></div>
<style>
.box { width: 100px; height: 50px; background: green; }
.box:dir(rtl) { background: red; }
</style>
<script>
document.documentElement.setAttribute('dir', 'rtl');
host.attachShadow({mode: 'closed'}).innerHTML = '<div class="box"></div><style>.box { width: 100px; height: 50px; background: green; } .box:dir(rtl) { background: red; }</style>'
element.getBoundingClientRect();
document.documentElement.removeAttribute('dir');
</script>
</body>
</html>