<!doctype html><htmlstyle="font-size:16px"><head><title>CSS Values and Units Test: rem subpixel change</title><linkrel="help"href="https://drafts.csswg.org/css-values/#rem"><scriptsrc="/resources/testharness.js"></script><scriptsrc="/resources/testharnessreport.js"></script></head><body><divstyle="font-size:16px"><divid="remElement"style="width: 10rem"></div></div><script>test(()=>{assert_equals(getComputedStyle(remElement).width,"160px");document.documentElement.style.fontSize="16.1px";assert_equals(getComputedStyle(remElement).width,"161px");},"Check that a 0.1px change in root font-size affect rem units.");</script><body></html>