| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
// Resolve `auto` value based on container type.nit: "the"
// Resolve `auto` value based on container type.
// TODO(javiercon): For now, `auto` will always resolve to `none` for flex andnit: I'd suggest adding comment separation here like so:
```
// Resolve `auto` value based on container type.
//
// TODO(javiercon): ...
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
// Resolve `auto` value based on container type.Javier Contrerasnit: "the"
Done
// Resolve `auto` value based on container type.
// TODO(javiercon): For now, `auto` will always resolve to `none` for flex andnit: I'd suggest adding comment separation here like so:
```
// Resolve `auto` value based on container type.
//
// TODO(javiercon): ...
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
9 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: third_party/blink/renderer/core/css/css_gap_decoration_property_utils.cc
Insertions: 2, Deletions: 1.
@@ -187,7 +187,8 @@
return rule_break;
}
- // Resolve `auto` value based on container type.
+ // Resolve `auto` value based on thecontainer type.
+ //
// TODO(javiercon): For now, `auto` will always resolve to `none` for flex and
// multicol. This may change in the future depending on the resolution to
// https://github.com/w3c/csswg-drafts/issues/13127
```
[gap-decorations] Introduce rule-break: auto
This CL introduces an `auto` keyword for `rule-break` properties in
GapDecorations. While this isn't spec'd yet exactly, there seems to be
consensus that we will introduce it. The exact behavior of it might
change, but for now wit will resolve to `none` on non-grid container
types (flex and multicol) while resolving to `spanning-item` for grid.
Moreover we make `auto` the default for `rule-break` properties.
If needed this change is easily revertible, but at the same time easily
extendable for future behavior differences we might want for this
property among container types.
No extra tests are added since all currently existing tests that don't
specify `rule-break` will be exercising this logic.
https://github.com/w3c/csswg-drafts/issues/13127.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
The WPT PR for this CL has been merged upstream! https://github.com/web-platform-tests/wpt/pull/56494
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |