-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
layout: Fix table geometry when collapsed borders have different sizes #35122
Merged
Loirooriol
merged 1 commit into
servo:main
from
Loirooriol:collapsed-borders-different-widths
Jan 23, 2025
Merged
layout: Fix table geometry when collapsed borders have different sizes #35122
Loirooriol
merged 1 commit into
servo:main
from
Loirooriol:collapsed-borders-different-widths
Jan 23, 2025
+121
−16
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Even though when painting the collapsed borders we were using the right size, when sizing the table we were treating cells as having a border of half the maximum border size along the entire grid line. Now we only take the maximum among the borders adjacent to the cell. Signed-off-by: Oriol Brufau <obrufau@igalia.com>
Loirooriol
added
A-layout/table
A-layout/2020
https://github.com/servo/servo/wiki/Layout-2020
T-linux-wpt-2020
Do a try run of the WPT
labels
Jan 22, 2025
🔨 Triggering try run (#12909492827) for Linux (WPT) |
🤖 Opened new upstream WPT pull request (web-platform-tests/wpt#50215) with upstreamable changes. |
Test results for linux-wpt-layout-2020 from try job (#12909492827): Flaky unexpected result (27)
Stable unexpected results that are known to be intermittent (13)
|
✨ Try run (#12909492827) succeeded. |
mrobinson
approved these changes
Jan 23, 2025
chickenleaf
pushed a commit
to chickenleaf/servo
that referenced
this pull request
Jan 24, 2025
servo#35122) Even though when painting the collapsed borders we were using the right size, when sizing the table we were treating cells as having a border of half the maximum border size along the entire grid line. Now we only take the maximum among the borders adjacent to the cell. Signed-off-by: Oriol Brufau <obrufau@igalia.com> Signed-off-by: L Ashwin B <lashwinib@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Even though when painting the collapsed borders we were using the right size, when sizing the table we were treating cells as having a border of half the maximum border size along the entire grid line.
Now we only take the maximum among the borders adjacent to the cell.
./mach build -d
does not report any errors./mach test-tidy
does not report any errors