mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 07:19:37 +03:00
Improve formatting of copied/saved text from text selections in PREs. Improve formatting in other odd cases too.
svn path=/trunk/netsurf/; revision=4071
This commit is contained in:
parent
7b1c0bde45
commit
8de0baae0b
@ -469,15 +469,26 @@ bool traverse_tree(struct box *box, unsigned start_idx, unsigned end_idx,
|
||||
box->type == BOX_TABLE ||
|
||||
box->type == BOX_FLOAT_LEFT ||
|
||||
box->type == BOX_FLOAT_RIGHT) &&
|
||||
!box->list_marker) {
|
||||
(!box->list_marker ||
|
||||
box->list_marker &&
|
||||
*before == WHITESPACE_TAB)) {
|
||||
*before = WHITESPACE_TWO_NEW_LINES;
|
||||
}
|
||||
else if (*before < WHITESPACE_ONE_NEW_LINE &&
|
||||
else if (*before <= WHITESPACE_ONE_NEW_LINE &&
|
||||
(box->type == BOX_TABLE_ROW ||
|
||||
box->type == BOX_BR ||
|
||||
(box->type != BOX_TABLE_ROW &&
|
||||
box->list_marker))) {
|
||||
*before = WHITESPACE_ONE_NEW_LINE;
|
||||
(box->type != BOX_INLINE &&
|
||||
box->list_marker) ||
|
||||
(box->parent->style &&
|
||||
(box->parent->style->white_space ==
|
||||
CSS_WHITE_SPACE_PRE ||
|
||||
box->parent->style->white_space ==
|
||||
CSS_WHITE_SPACE_PRE_WRAP) &&
|
||||
box->type == BOX_INLINE_CONTAINER))) {
|
||||
if (*before == WHITESPACE_ONE_NEW_LINE)
|
||||
*before = WHITESPACE_TWO_NEW_LINES;
|
||||
else
|
||||
*before = WHITESPACE_ONE_NEW_LINE;
|
||||
}
|
||||
else if (*before < WHITESPACE_TAB &&
|
||||
box->type == BOX_TABLE_CELL) {
|
||||
|
Loading…
Reference in New Issue
Block a user