gecko-dev/layout/reftests/bugs/1379041.html

12 строки
283 B
HTML

<!doctype html>
<html style="font-size: 8px">
<div style="font-size: 2rem">Should be 16px black text.</div>
<script>
window.onload = function() {
let div = document.querySelector('div');
window.getDefaultComputedStyle(div).color;
div.style.color = "black";
}
</script>
</html>