-
Notifications
You must be signed in to change notification settings - Fork 715
[css-text] What does the white-space-collapse
apply to when white-space trimming/positioning
#9724
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
It does apply to the spaces, not the the line or the whole block. If towards the end of a line you've got some spaces that cannot hang followed by some spaces that can, then only the ones that can hang get to hang, and the others do not. Similarly, if you've got some non collapsible spaces followed by some collapsible spaces at the end of the line, then step 3 gets rids of the collapsible spaces, and those other non collapsible spaces remain. If it is the other way around, and you've got a sequence of collapsible spaces followed by a sequence of non collapsible spaces, then the sequence of collapsible spaces aren't at the end of the line (the non-collapsible ones are), and so step 3 doesn't discard them. Similarly, if you've got some spaces that can hang, followed by some that cannot, then none of them hang, because the spaces at the end of the line aren't hangable, and those that are hangable aren't at the end of the line. I feel like the case with collapsible and non collapsible isn't even that hard to construct: <style>
code {
white-space: pre;
font-family: monospace; /* not important, just to make it realistic */
background: lightgray; /* not important, just to make it realistic */
}
</style>
<p>
In Makefiles, do no confuse sequences of spaces like <code> </code>
with tabs like <code>	</code> as they have a different behavior
even if they look the same. If the line ends so that there's room for the code element and a little more, but not enough for the next word, then you've got a collapsible space followed by the non collapsible sequence of spaces of the code element, followed by the collapsible space after the code element, at the end of the line. In this case, you remove the collapsible space after the code element, and keep both the non collapsible spaces in the code element (they're not collapsible) and the collapsible space before it (it's not at the end of the line). I feel like realistic examples with hangable / non hangable spaces are a tad more difficult to construct (at least in English), but the logic is the same. |
If that is the intended reading, the spec should probably clarify that, I think. I'll work on a PR to do that. |
What would happen if a sequence of whitespace that hangs unconditionally is followed by a sequence that hangs conditionally? |
Same logic? In cases where the condition is met and (all) the conditionally hangable spaces do hang because they didn't fit the line prior to justification, then condition part is fullfilled. The (conditionally) hanging spaces are just hanging spaces, as are the unconditionally hanging spaces at the end of the line, so it's just one big sequence of hanging spaces at the end of the line, and it can hang. However, if there remains at least one conditionally hangable space at the end of the line which is not hanging because it did fit the line prior to justification, then the sequence of unconditionally hangable spaces aren't actually at the end of the line since there's something in between (a non-hanging space), and thus they don't hang. |
<style>
div {
border: 1px solid black;
text-align: center;
animation: 5s linear infinite alternate width-animation;
}
.unconditional {
white-space: normal;
background-color: purple;
opacity: 0.6;
}
.conditional {
white-space: pre-wrap;
background-color: orange;
opacity: 0.6;
}
</style>
<div><!--
-->qwertyuiop<!--
--><span class="unconditional">     </span><!--
--><span class="conditional"> </span><!--
--></div> I understand that a correct implementation should render this animation, then. |
The CL https://crrev.com/c/4881393 changed the hanging space behavior to not depend on `text-align`, and it updated the implementation to match the spec text. However, that patch had a misunderstanding of the spec that made each line's hanging space behavior depend on its block container's styles, rather than on each space's inline item styles. That caused incompatibilities with other browsers. This patch makes this behavior dependent on the inline item styles, thus fixing the main source of incompatibilities. The spec text is not yet fully clear on the behavior of some edge cases, which is why the WPT tests this CL adds are marked as tentative. See w3c/csswg-drafts#9724 for the CSSWG issue discussing this. Bug: 40944859 Change-Id: Ib93d0ffe41a8c538c8a4c9a13838bc304c26b30e
The CL https://crrev.com/c/4881393 changed the hanging space behavior to not depend on `text-align`, and it updated the implementation to match the spec text. However, that patch had a misunderstanding of the spec that made each line's hanging space behavior depend on its block container's styles, rather than on each space's inline item styles. That caused incompatibilities with other browsers. This patch makes this behavior dependent on the inline item styles, thus fixing the main source of incompatibilities. The spec text is not yet fully clear on the behavior of some edge cases, which is why the WPT tests this CL adds are marked as tentative. See w3c/csswg-drafts#9724 for the CSSWG issue discussing this. Bug: 40944859 Change-Id: Ib93d0ffe41a8c538c8a4c9a13838bc304c26b30e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5147580 Reviewed-by: Koji Ishii <kojii@chromium.org> Commit-Queue: Andreu Botella <abotella@igalia.com> Cr-Commit-Position: refs/heads/main@{#1273823}
The CL https://crrev.com/c/4881393 changed the hanging space behavior to not depend on `text-align`, and it updated the implementation to match the spec text. However, that patch had a misunderstanding of the spec that made each line's hanging space behavior depend on its block container's styles, rather than on each space's inline item styles. That caused incompatibilities with other browsers. This patch makes this behavior dependent on the inline item styles, thus fixing the main source of incompatibilities. The spec text is not yet fully clear on the behavior of some edge cases, which is why the WPT tests this CL adds are marked as tentative. See w3c/csswg-drafts#9724 for the CSSWG issue discussing this. Bug: 40944859 Change-Id: Ib93d0ffe41a8c538c8a4c9a13838bc304c26b30e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5147580 Reviewed-by: Koji Ishii <kojii@chromium.org> Commit-Queue: Andreu Botella <abotella@igalia.com> Cr-Commit-Position: refs/heads/main@{#1273823}
The CL https://crrev.com/c/4881393 changed the hanging space behavior to not depend on `text-align`, and it updated the implementation to match the spec text. However, that patch had a misunderstanding of the spec that made each line's hanging space behavior depend on its block container's styles, rather than on each space's inline item styles. That caused incompatibilities with other browsers. This patch makes this behavior dependent on the inline item styles, thus fixing the main source of incompatibilities. The spec text is not yet fully clear on the behavior of some edge cases, which is why the WPT tests this CL adds are marked as tentative. See w3c/csswg-drafts#9724 for the CSSWG issue discussing this. Bug: 40944859 Change-Id: Ib93d0ffe41a8c538c8a4c9a13838bc304c26b30e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5147580 Reviewed-by: Koji Ishii <kojii@chromium.org> Commit-Queue: Andreu Botella <abotella@igalia.com> Cr-Commit-Position: refs/heads/main@{#1273823}
The CL https://crrev.com/c/4881393 changed the hanging space behavior to not depend on `text-align`, and it updated the implementation to match the spec text. However, that patch had a misunderstanding of the spec that made each line's hanging space behavior depend on its block container's styles, rather than on each space's inline item styles. That caused incompatibilities with other browsers. This patch makes this behavior dependent on the inline item styles, thus fixing the main source of incompatibilities. The spec text is not yet fully clear on the behavior of some edge cases, which is why the WPT tests this CL adds are marked as tentative. See w3c/csswg-drafts#9724 for the CSSWG issue discussing this. Bug: 40944859 Change-Id: Ib93d0ffe41a8c538c8a4c9a13838bc304c26b30e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5147580 Reviewed-by: Koji Ishii <kojii@chromium.org> Commit-Queue: Andreu Botella <abotella@igalia.com> Cr-Commit-Position: refs/heads/main@{#1273823}
…end on the item's style, a=testonly Automatic update from web-platform-tests Make trailing space hanging behavior depend on the item's style The CL https://crrev.com/c/4881393 changed the hanging space behavior to not depend on `text-align`, and it updated the implementation to match the spec text. However, that patch had a misunderstanding of the spec that made each line's hanging space behavior depend on its block container's styles, rather than on each space's inline item styles. That caused incompatibilities with other browsers. This patch makes this behavior dependent on the inline item styles, thus fixing the main source of incompatibilities. The spec text is not yet fully clear on the behavior of some edge cases, which is why the WPT tests this CL adds are marked as tentative. See w3c/csswg-drafts#9724 for the CSSWG issue discussing this. Bug: 40944859 Change-Id: Ib93d0ffe41a8c538c8a4c9a13838bc304c26b30e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5147580 Reviewed-by: Koji Ishii <kojii@chromium.org> Commit-Queue: Andreu Botella <abotella@igalia.com> Cr-Commit-Position: refs/heads/main@{#1273823} -- wpt-commits: 5f46e7c41541e9f2589ddf79177f113e98944427 wpt-pr: 45105
I agree with the above logic, as well as with the tests introduced in web-platform-tests/wpt#44384. @fantasai, can you have a look too and see if you agree? As for the spec
An alternative interpretation for the last case could be that any sequence of unconditionally hangable glyphs followed conditionally hangable glyphs becomes conditionally hangable as well. Honestly, while I can construct cases where this happens, I'm having a hard time thinking realistic cases where this would matter. |
The CSS Working Group just discussed The full IRC log of that discussion<emilio> andreubotella: we have hanging and conditionally-hanging glyphs<emilio> ... you can only hang at the end of a line <emilio> ... and you can have unconditional hanging spaces before hanging spaces <emilio> ... in which case if you grow the size of the line box there'd be a point where you reach the end of the conditionally hanging spaces and then all the spaces hang <emilio> ... I have a demo in the issue <emilio> andreubotella: [screenshares https://github.com//issues/9724#issuecomment-1867809865] <emilio> ... question is are we fine with that behavior? <emilio> florian: this can happen with different white-space-collapse at the end of the line <emilio> ... can't think of when this would happen in real content <emilio> ... another alternative would be that unconditionally-hanging followed by conditionally-hanging spaces all behave as conditionally-hanging <emilio> ... I don't think this matters in practice <emilio> ... the demo makes it the more obvious interpretation of the spec <emilio> ... I think we could do that <emilio> q+ <emilio> ack bramus <astearns> I think I prefer the proposal to propagating conditionality <emilio> andreubotella: the reason this would be rare in practice is that in order to have unconditional hanging spaces _before_ conditional you need to have combination of these values and characters such as ideographic spaces <emilio> florian: right, just a mix of ideographic and regular spaces won't cause this, you also need different white-space-collapse values <TabAtkins> emilio: Unless this really matters for some use-case, I think this is fine <TabAtkins> emilio: I'd be a bit skeptical of introducing this kind of "how you hang depends on how things after you hang" that Florian mentioned <TabAtkins> emilio: so unless taht behavior is really important for some realistic use-case, I thinkw hat you suggest is fine <astearns> ack emilio <astearns> ack fantasai <emilio> fantasai: I feel the second definition florian gave seemed simpler? <emilio> fantasai: so I lean towards that <emilio> ... but I agree it doesn't really matter in practice, so whatever is more straight-forward <emilio> andreubotella: yeah I guess whether you hang at all depends on what's after or how you hang seems fine <emilio> florian: what's harder to implement <emilio> andreubotella: don't know off the top of my head <emilio> fantasai: can ask internally <emilio> ... agree to whatever is simpler <emilio> astearns: So we can resolve either with whatever is simpler or with no change <emilio> fantasai: can we put option a and option b together and just ask for impl feedback? <emilio> florian: last comment in the issue does contain that but can clarify <emilio> fantasai: let's get those options together and poll at the end of the F2F |
Option a:
Option b:
|
Since we do not expect this is a case where authors will use and/or expect any particular behavior, the question is which of the options is easier to implement |
In Chromium, option B would only be very slightly harder to implement than option A, to the point where it doesn't really make any meaningful difference. But it might be possible that other browsers implement this differently. |
The CSS Working Group just discussed
The full IRC log of that discussion<TabAtkins> florian: we were discussing two options for what happens if, at the end of a line, you have a combo of conditionally hangeable glyphs and uncondtionally hangeable glyphs<TabAtkins> florian: option a and b are both describ3ed in the issue <TabAtkins> florian: [describes the options, read the issue for details] <TabAtkins> florian: last time we decided it deosn't matter, do whatever's simpler <TabAtkins> florian: we have feedback from andrew, they say B is slighty harder than A in chromium, but only slightly <TabAtkins> florian: anyone else have opinions? <TabAtkins> fantasai: i pinged our impl in Slack, we'll see if they come back with a response <TabAtkins> fantasai: (forgot to do that last week) <TabAtkins> emilio: no gecko feedback off the top of my head, gotta check with Jonathan <TabAtkins> florian: in order to push should we conditionally resolve unless someone objects? or re-reschedule for two weeks and come back? <TabAtkins> fantasai: pings are in flight <TabAtkins> astearns: pings should have happened last time we discussed, so i'm inclined to resolve on option A and come back if people do objec t <TabAtkins> emilio: i think they're both implementable <TabAtkins> emilio: unlikely to matter <TabAtkins> astearns: proposed resolution: option a <TabAtkins> astearns: objections? <TabAtkins> RESOLVED: Option A, but will revisit if impl feedback disagrees |
CSS-TEXT section 4.1.2 talks about the rendering and hanging of spaces in each line, and step 4 talks about whether a sequence of trailing spaces at the end of the line hangs, which depends on the values of
white-space-collapse
(andtext-wrap-mode
).However, when you look at it in detail, it's not clear what value should be used here. This whole section applies to the line as a whole, and a sequence of trailing spaces can span inlines. Should then each preserved space in the sequence of the line's trailing spaces hang or not depending on its
white-space-collapse
value? This doesn't seem to make sense, since this would allow for some spaces to hang when not at the end of the line, which doesn't seem to make sense, and is not allowed by the definition of hanging.In this example, if the entirety of the text fits within the line, the ideographic spaces would hang (since they're not collapsed in phase I, so they count as preserved, but they're still
white-space-collapse: continue
), but the spaces inside the span wouldn't.Because of this, when fixing hanging in Blink to align with the spec, I understood the
white-space-collapse
(andtext-wrap-mode
) values as applying to the line, rather than the spaces. Blink has a concept of a line box's style, which apparently is not in the spec (although I was not aware of that at the time of implementing this), which seems to be the same as the containing block box's computed style (except maybe including::first-line
styles) – and that is what I used in my implementation. This led to differences with other browsers in cases like this:If the relevant
white-space-collapse
(andtext-wrap-mode
) values should be those corresponding to each preserved space character, then the trailing spaces inside the span conditionally hang (since this is the last line), and therefore the "Something." text will be off-center (assuming that the text fully fits within the line, whether the spaces do or not). However, if the relevant values should be the containing block box's, then the spaces should hang (unconditionally) and the "Something." text will appear centered.cc @kojiishi @jfkthame @fantasai @frivoal
The text was updated successfully, but these errors were encountered: