LibWeb: Parse the border-image-outset property

This commit is contained in:
Tim Ledbetter
2025-06-10 23:54:48 +01:00
committed by Sam Atkins
parent 245905b833
commit 98e63e3dd5
Notes: github-actions[bot] 2025-07-03 09:21:04 +00:00
12 changed files with 236 additions and 154 deletions

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Backgrounds and Borders Module Level 3: parsing border-image-outset with invalid values</title>
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#border-image-outset">
<meta name="assert" content="border-image-outset supports only the grammar '[ <length> | <number> ]{1,4}'.">
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script src="../../../css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_invalid_value("border-image-outset", "auto");
test_invalid_value("border-image-outset", "-1");
test_invalid_value("border-image-outset", "-2px");
test_invalid_value("border-image-outset", "1%");
test_invalid_value("border-image-outset", "1 2 3 4 5");
</script>
</body>
</html>

View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Backgrounds and Borders Module Level 3: parsing border-image-outset with valid values</title>
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#border-image-outset">
<meta name="assert" content="border-image-outset supports the full grammar '[ <length> | <number> ]{1,4}'.">
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script src="../../../css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_valid_value("border-image-outset", "1px");
test_valid_value("border-image-outset", "2");
test_valid_value("border-image-outset", "1px 2 3px 4");
</script>
</body>
</html>