summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-sizing/parsing/max-width-computed.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-sizing/parsing/max-width-computed.html')
-rw-r--r--testing/web-platform/tests/css/css-sizing/parsing/max-width-computed.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-sizing/parsing/max-width-computed.html b/testing/web-platform/tests/css/css-sizing/parsing/max-width-computed.html
new file mode 100644
index 0000000000..be92bcdd7f
--- /dev/null
+++ b/testing/web-platform/tests/css/css-sizing/parsing/max-width-computed.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8">
+<title>CSS basic box model: getComputedStyle().maxWidth</title>
+<link rel="help" href="https://drafts.csswg.org/css-sizing-3/#propdef-max-width">
+<meta name="assert" content="max-width computed value is as specified, with <length-percentage> values computed">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/css/support/computed-testcommon.js"></script>
+<style>
+ #target {
+ font-size: 40px;
+ }
+</style>
+</head>
+<body>
+<div id="target"></div>
+<script>
+test_computed_value("max-width", "none");
+test_computed_value("max-width", "min-content");
+test_computed_value("max-width", "max-content");
+
+test_computed_value("max-width", "10px");
+test_computed_value("max-width", "20%");
+
+test_computed_value('max-width', 'calc(10% + 40px)');
+test_computed_value('max-width', 'calc(10px - 0.5em)', '0px');
+test_computed_value('max-width', 'calc(10px + 0.5em)', '30px');
+
+test_computed_value("max-width", "fit-content(10px)");
+test_computed_value("max-width", "fit-content(20%)");
+test_computed_value("max-width", "fit-content(calc(10% + 40px))");
+test_computed_value("max-width", "fit-content(calc(10px + 0.5em))", "fit-content(30px)");
+</script>
+</body>
+</html>