Skip to content
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

Inline split fixes#12699 #12760

Merged
merged 4 commits into from Aug 9, 2016
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

reduce max_inline_size inside breaking strategy by border_padding

  • Loading branch information
splav committed Aug 8, 2016
commit ba0a6708767300e9fceaa7751d036340d5af13a5
@@ -1644,7 +1644,7 @@ impl Fragment {
_ => return None,
};

let mut remaining_inline_size = max_inline_size;
let mut remaining_inline_size = max_inline_size - self.border_padding.inline_start_end();

This comment has been minimized.

@pcwalton

pcwalton Aug 8, 2016

Contributor

Disregard previous comment, I was very confused. Sorry about that.

let mut inline_start_range = Range::new(text_fragment_info.range.begin(), ByteIndex(0));
let mut inline_end_range = None;
let mut overflowing = false;
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.