fune/testing/web-platform/tests/css/css-overflow/reference/webkit-line-clamp-dynamic-001-ref.html
Koji Ishii 802316c211 Bug 1672634 [wpt PR 26229] - Fix line cache when -webkit-line-clamp is specified, a=testonly
Automatic update from web-platform-tests
Fix line cache when `-webkit-line-clamp` is specified

|NGBlockLayoutAlgorithm| has two branches, one when
|lines_until_clamp_| becomes |<= 0| by the layout, and another
when it is |== 0|.

To make sure we run all these logic, this patch:
* Updates |lines_until_clamp_| by the number of reused lines.
* Limits reusing only up to 1, so that conditions above go
  normal layout codepath.

Bug: 1140951
Change-Id: I15fe81b4957fe70d23bb88aae700642297bb1550
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2491561
Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org>
Commit-Queue: Koji Ishii <kojii@chromium.org>
Cr-Commit-Position: refs/heads/master@{#819867}

--

wpt-commits: 97022d8af975e4f7612e58dbf56a8df93bf6c4d4
wpt-pr: 26229
2020-10-26 12:06:31 +00:00

16 lines
265 B
HTML

<!DOCTYPE html>
<style>
#container {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
font-size: 20px;
width: 10ch;
}
</style>
<body>
<div id="container">
abc def ghi jkl mno pqr stu vwx yz
123 456 789
</div>
</body>