diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/cssom/getComputedStyle-margins-roundtrip.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/cssom/getComputedStyle-margins-roundtrip.html')
-rw-r--r-- | testing/web-platform/tests/css/cssom/getComputedStyle-margins-roundtrip.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/cssom/getComputedStyle-margins-roundtrip.html b/testing/web-platform/tests/css/cssom/getComputedStyle-margins-roundtrip.html new file mode 100644 index 0000000000..8913be012d --- /dev/null +++ b/testing/web-platform/tests/css/cssom/getComputedStyle-margins-roundtrip.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<title>Chromium bug: getComputedStyle() fixed-length inset values don't roundtrip</title> +<link rel="help" href="https://drafts.csswg.org/cssom/#resolved-value"> +<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1482703"> +<link rel="help" href="mailto:xiaochengh@chromium.org"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> + +<div id="target1" style="margin-left: 20.7px"></div> +<script> +test(() => { + assert_equals(getComputedStyle(target1).marginLeft, '20.7px'); +}, 'Fixed-length margin-left property value should roundtrip'); +</script> + +<div id="target2" style="margin-right: 20.7px"></div> +<script> +test(() => { + assert_equals(getComputedStyle(target2).marginRight, '20.7px'); +}, 'Fixed-length margin-right property value should roundtrip'); +</script> + +<div id="target3" style="margin-top: 20.7px"></div> +<script> +test(() => { + assert_equals(getComputedStyle(target3).marginTop, '20.7px'); +}, 'Fixed-length margin-top property value should roundtrip'); +</script> + +<div id="target4" style="margin-bottom: 20.7px"></div> +<script> +test(() => { + assert_equals(getComputedStyle(target4).marginBottom, '20.7px'); +}, 'Fixed-length margin-bottom property value should roundtrip'); +</script> |