aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/inline.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-09-29 00:11:33 -0500
committerGitHub <noreply@github.com>2016-09-29 00:11:33 -0500
commitccfc60161b8d92217b9f77040d6928d429bcbe9d (patch)
tree7e458f204f5200913968ba38e477373f67cb1c90 /components/layout/inline.rs
parent13c4393516df0d3415ed28d107f3744d56b59623 (diff)
parentb021952be9c556cb55ade993d0781d8a3f9b46aa (diff)
downloadservo-ccfc60161b8d92217b9f77040d6928d429bcbe9d.tar.gz
servo-ccfc60161b8d92217b9f77040d6928d429bcbe9d.zip
Auto merge of #13470 - pcwalton:inline-absolute-hypothetical-baseline, r=notriddle
layout: Improve the interaction between baseline-offset-of-last-line-in-flow logic and inline absolute hypothetical boxes. See commits for details. These changes place the heart icon on Twitter in the right place. r? @notriddle <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13470) <!-- Reviewable:end -->
Diffstat (limited to 'components/layout/inline.rs')
-rw-r--r--components/layout/inline.rs14
1 files changed, 8 insertions, 6 deletions
diff --git a/components/layout/inline.rs b/components/layout/inline.rs
index ec1d223cd36..099d9af14d5 100644
--- a/components/layout/inline.rs
+++ b/components/layout/inline.rs
@@ -1262,13 +1262,16 @@ impl InlineFlow {
}
pub fn baseline_offset_of_last_line(&self) -> Option<Au> {
- match self.lines.last() {
- None => None,
- Some(ref last_line) => {
- Some(last_line.bounds.start.b + last_line.bounds.size.block -
- last_line.inline_metrics.depth_below_baseline)
+ // Find the last line that doesn't consist entirely of hypothetical boxes.
+ for line in self.lines.iter().rev() {
+ if (line.range.begin().get()..line.range.end().get()).any(|index| {
+ !self.fragments.fragments[index as usize].is_hypothetical()
+ }) {
+ return Some(line.bounds.start.b + line.bounds.size.block -
+ line.inline_metrics.depth_below_baseline)
}
}
+ None
}
}
@@ -1451,7 +1454,6 @@ impl Flow for InlineFlow {
self.minimum_depth_below_baseline);
scanner.scan_for_lines(self, layout_context);
-
// Now, go through each line and lay out the fragments inside.
let line_count = self.lines.len();
for (line_index, line) in self.lines.iter_mut().enumerate() {