mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
Automatic update from web-platform-tests CSS: Shortest serialization for gap shorthand gap is <'row-gap'> <'column-gap'>? https://drafts.csswg.org/css-align-3/#propdef-gap If row-gap and column-gap are the same, we serialize only a single value, consistent with Firefox and the shortest representation principle. https://drafts.csswg.org/cssom/#serializing-css-values Change-Id: I8a2380d963cdbb7f33676b435d9cfb909abf9e77 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1750521 Auto-Submit: Eric Willigers <ericwilligers@chromium.org> Commit-Queue: Rune Lillesveen <futhark@chromium.org> Reviewed-by: Rune Lillesveen <futhark@chromium.org> Cr-Commit-Position: refs/heads/master@{#686773} -- wpt-commits: a06709fbf13b28f4b1b3d24f5bbc2e5274fe87af wpt-pr: 18407
21 lines
670 B
HTML
21 lines
670 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Box Alignment Level 3: parsing gap with invalid values</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-gap">
|
|
<meta name="assert" content="gap supports only the grammar '<row-gap> <column-gap>?'.">
|
|
<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("gap", "auto");
|
|
test_invalid_value("gap", "-10px");
|
|
|
|
test_invalid_value("gap", "10px 20% 30px");
|
|
test_invalid_value("gap", "normal 10px normal");
|
|
</script>
|
|
</body>
|
|
</html>
|