mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
Automatic update from web-platform-tests[LayoutNG] Fix first-line baseline when 'overflow' is not 'visible' This patch fixes first-line baseline when the 'overflow' property is other than 'visible'. CSS2 states that: The baseline of an 'inline-block' is the baseline of its last line box in the normal flow, unless it has either no in-flow line boxes or if its 'overflow' property has a computed value other than 'visible', in which case the baseline is the bottom margin edge. https://drafts.csswg.org/css2/visudet.html#propdef-vertical-align This rule should apply only to 'inline-block', but it was incorrectly applied to first-line baseline as well. This patch fixes incorrect alignment in the comment lines of Gerrit code review site. Bug: 636993 Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_layout_ng Change-Id: I49ffd8c050f384765c61c5678a431fa74492356d Reviewed-on: https://chromium-review.googlesource.com/1140336 Reviewed-by: Emil A Eklund <eae@chromium.org> Commit-Queue: Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#576294} -- wpt-commits: 2b76cf7ab641d9ae6c0d00f0c32865b4285b3ce1 wpt-pr: 12038
31 lines
982 B
HTML
31 lines
982 B
HTML
<!DOCTYPE html>
|
|
<title>A block with 'overflow: hidden' should produce normal baseline</title>
|
|
<link rel="author" title="Koji Ishii" href="kojii@chromium.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-baselines">
|
|
<link rel="match" href="reference/align-items-baseline-overflow-non-visible-ref.html">
|
|
<style>
|
|
.flex {
|
|
display: flex;
|
|
align-items: baseline;
|
|
}
|
|
.overflow {
|
|
overflow: hidden;
|
|
height: 2em;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<!--
|
|
CSS2 states that:
|
|
The baseline of an 'inline-block' is the baseline of its last line box in
|
|
the normal flow, unless it has either no in-flow line boxes or if its
|
|
'overflow' property has a computed value other than 'visible', in which case
|
|
the baseline is the bottom margin edge.
|
|
https://drafts.csswg.org/css2/visudet.html#propdef-vertical-align
|
|
This rule should apply only to 'inline-block', and not to normal block.
|
|
-->
|
|
<div class="flex">
|
|
<span>XX</span>
|
|
<div><div class="overflow">YY</div></div>
|
|
</div>
|
|
</body>
|