1
0
Fork 0
firefox/testing/web-platform/tests/css/cssom-view/pt-to-px-width.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
627 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>10pt converted to offset/client/scroll width</title>
<link rel="help" href="https://www.w3.org/TR/css-values-4/#absolute-lengths">
<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>