summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-sizing/fit-content-percentage-padding.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-sizing/fit-content-percentage-padding.html
parentInitial commit. (diff)
downloadfirefox-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/css-sizing/fit-content-percentage-padding.html')
-rw-r--r--testing/web-platform/tests/css/css-sizing/fit-content-percentage-padding.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-sizing/fit-content-percentage-padding.html b/testing/web-platform/tests/css/css-sizing/fit-content-percentage-padding.html
new file mode 100644
index 0000000000..4ff3f786c6
--- /dev/null
+++ b/testing/web-platform/tests/css/css-sizing/fit-content-percentage-padding.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
+<link rel="help" href="https://www.w3.org/TR/CSS22/box.html#propdef-padding-left">
+<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#valdef-width-fit-content-length-percentage">
+<meta name="assert" content="The shrink-to-fit container (#stf) should be just wide enough to fit both floats beside each other. The percentage padding shouldn't be affected by intrinsic sizing; it's simply resolved from its containing block (#container), which doesn't participate in the intrinsic size calculation at all.">
+<div id="container" style="width:400px; height:200px;">
+ <div id="stf" style="width:fit-content; padding-left:20%;">
+ <div style="float:left; width:50px; height:100px; background:cyan;"></div>
+ <div style="float:left; width:50px; height:100px; background:hotpink;"></div>
+ </div>
+</div>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+ var container = document.getElementById("container");
+ var stf = document.getElementById("stf");
+ test(()=> {
+ assert_equals(stf.offsetWidth, 180);
+ }, "Initial layout");
+
+ test(()=> {
+ container.style.width = "300px";
+ assert_equals(stf.offsetWidth, 160);
+ }, "Shrink width");
+
+ test(()=> {
+ container.style.width = "500px";
+ assert_equals(stf.offsetWidth, 200);
+ }, "Grow width");
+</script>