Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>10pt converted to offset/client/scroll width</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
/* According to the CSS Values specification 10pt is abour 13.33px. */
#target { width: 10pt; }
</style>
<div id="target"></div>
<script>
test(() => {
assert_equals(target.scrollWidth, 13, "scrollWidth");
assert_equals(target.offsetWidth, 13, "offsetWidth");
assert_equals(target.clientWidth, 13, "clientWidth");
});
</script>