wpt / css / css-backgrounds / parsing / border-color-valid.html

Status: PASS | Duration: 56ms | Subtests: 7/7 | Open test on wpt.live | wpt.fyi

Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)

SubtestStatusMessage
e.style['border-color'] = "currentcolor" should set the property valuePASS
e.style['border-color'] = "currentColor" should set the property valuePASS
e.style['border-color'] = "red yellow green blue" should set the property valuePASS
e.style['border-top-color'] = "red" should set the property valuePASS
e.style['border-right-color'] = "yellow" should set the property valuePASS
e.style['border-bottom-color'] = "green" should set the property valuePASS
e.style['border-left-color'] = "blue" should set the property valuePASS

/css/css-backgrounds/parsing/border-color-valid.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Backgrounds and Borders Module Level 3: parsing border-color 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-color">
<meta name="assert" content="border-color supports the full grammar '<color>{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-color", "currentcolor", "currentcolor");
test_valid_value("border-color", "currentColor", "currentcolor");

test_valid_value("border-color", "red yellow green blue");

test_valid_value("border-top-color", "red");
test_valid_value("border-right-color", "yellow");
test_valid_value("border-bottom-color", "green");
test_valid_value("border-left-color", "blue");
</script>
</body>
</html>