1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
|
"""Tests for inlines layout."""
import pytest
from weasyprint.formatting_structure import boxes
from ..testing_utils import SANS_FONTS, assert_no_logs, render_pages
@assert_no_logs
def test_empty_linebox():
page, = render_pages('<p> </p>')
html, = page.children
body, = html.children
paragraph, = body.children
assert len(paragraph.children) == 0
assert paragraph.height == 0
@pytest.mark.xfail
@assert_no_logs
def test_empty_linebox_removed_space():
# Whitespace removed at the beginning of the line => empty line => no line
page, = render_pages('''
<style>
p { width: 1px }
</style>
<p><br> </p>
''')
page, = render_pages('<p> </p>')
html, = page.children
body, = html.children
paragraph, = body.children
# TODO: The second line should be removed
assert len(paragraph.children) == 1
@assert_no_logs
def test_breaking_linebox():
page, = render_pages('''
<style>
p { font-size: 13px;
width: 300px;
font-family: %(fonts)s;
background-color: #393939;
color: #FFFFFF;
line-height: 1;
text-decoration: underline overline line-through;}
</style>
<p><em>Lorem<strong> Ipsum <span>is very</span>simply</strong><em>
dummy</em>text of the printing and. naaaa </em> naaaa naaaa naaaa
naaaa naaaa naaaa naaaa naaaa</p>
''' % {'fonts': SANS_FONTS})
html, = page.children
body, = html.children
paragraph, = body.children
assert len(list(paragraph.children)) == 3
lines = paragraph.children
for line in lines:
assert line.style['font_size'] == 13
assert line.element_tag == 'p'
for child in line.children:
assert child.element_tag in ('em', 'p')
assert child.style['font_size'] == 13
for child_child in child.children:
assert child.element_tag in ('em', 'strong', 'span')
assert child.style['font_size'] == 13
@assert_no_logs
def test_position_x_ltr():
page, = render_pages('''
<style>
span {
padding: 0 10px 0 15px;
margin: 0 2px 0 3px;
border: 1px solid;
}
</style>
<body><span>a<br>b<br>c</span>''')
html, = page.children
body, = html.children
line1, line2, line3 = body.children
span1, = line1.children
assert span1.position_x == 0
text1, br1 = span1.children
assert text1.position_x == 15 + 3 + 1
span2, = line2.children
assert span2.position_x == 0
text2, br2 = span2.children
assert text2.position_x == 0
span3, = line3.children
assert span3.position_x == 0
text3, = span3.children
assert text3.position_x == 0
@assert_no_logs
def test_position_x_rtl():
page, = render_pages('''
<style>
body {
direction: rtl;
width: 100px;
}
span {
padding: 0 10px 0 15px;
margin: 0 2px 0 3px;
border: 1px solid;
}
</style>
<body><span>a<br>b<br>c</span>''')
html, = page.children
body, = html.children
line1, line2, line3 = body.children
span1, = line1.children
text1, br1 = span1.children
assert span1.position_x == 100 - text1.width - (10 + 2 + 1)
assert text1.position_x == 100 - text1.width - (10 + 2 + 1)
span2, = line2.children
text2, br2 = span2.children
assert span2.position_x == 100 - text2.width
assert text2.position_x == 100 - text2.width
span3, = line3.children
text3, = span3.children
assert span3.position_x == 100 - text3.width - (15 + 3 + 1)
assert text3.position_x == 100 - text3.width
@assert_no_logs
def test_breaking_linebox_regression_1():
# See https://unicode.org/reports/tr14/
page, = render_pages('<pre>a\nb\rc\r\nd\u2029e</pre>')
html, = page.children
body, = html.children
pre, = body.children
lines = pre.children
texts = []
for line in lines:
text_box, = line.children
texts.append(text_box.text)
assert texts == ['a', 'b', 'c', 'd', 'e']
@assert_no_logs
def test_breaking_linebox_regression_2():
html_sample = '''
<style>
@font-face { src: url(weasyprint.otf); font-family: weasyprint }
</style>
<p style="width: %d.5em; font-family: weasyprint">ab
<span style="padding-right: 1em; margin-right: 1em">c def</span>g
hi</p>'''
for i in range(16):
page, = render_pages(html_sample % i)
html, = page.children
body, = html.children
p, = body.children
lines = p.children
if i in (0, 1, 2, 3):
line_1, line_2, line_3, line_4 = lines
textbox_1, = line_1.children
assert textbox_1.text == 'ab'
span_1, = line_2.children
textbox_1, = span_1.children
assert textbox_1.text == 'c'
span_1, textbox_2 = line_3.children
textbox_1, = span_1.children
assert textbox_1.text == 'def'
assert textbox_2.text == 'g'
textbox_1, = line_4.children
assert textbox_1.text == 'hi'
elif i in (4, 5, 6, 7, 8):
line_1, line_2, line_3 = lines
textbox_1, span_1 = line_1.children
assert textbox_1.text == 'ab '
textbox_2, = span_1.children
assert textbox_2.text == 'c'
span_1, textbox_2 = line_2.children
textbox_1, = span_1.children
assert textbox_1.text == 'def'
assert textbox_2.text == 'g'
textbox_1, = line_3.children
assert textbox_1.text == 'hi'
elif i in (9, 10):
line_1, line_2 = lines
textbox_1, span_1 = line_1.children
assert textbox_1.text == 'ab '
textbox_2, = span_1.children
assert textbox_2.text == 'c'
span_1, textbox_2 = line_2.children
textbox_1, = span_1.children
assert textbox_1.text == 'def'
assert textbox_2.text == 'g hi'
elif i in (11, 12, 13):
line_1, line_2 = lines
textbox_1, span_1, textbox_3 = line_1.children
assert textbox_1.text == 'ab '
textbox_2, = span_1.children
assert textbox_2.text == 'c def'
assert textbox_3.text == 'g'
textbox_1, = line_2.children
assert textbox_1.text == 'hi'
else:
line_1, = lines
textbox_1, span_1, textbox_3 = line_1.children
assert textbox_1.text == 'ab '
textbox_2, = span_1.children
assert textbox_2.text == 'c def'
assert textbox_3.text == 'g hi'
@assert_no_logs
def test_breaking_linebox_regression_3():
# Regression test #1 for https://github.com/Kozea/WeasyPrint/issues/560
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<div style="width: 5.5em; font-family: weasyprint">'
'aaaa aaaa a [<span>aaa</span>]')
html, = page.children
body, = html.children
div, = body.children
line1, line2, line3, line4 = div.children
assert line1.children[0].text == line2.children[0].text == 'aaaa'
assert line3.children[0].text == 'a'
text1, span, text2 = line4.children
assert text1.text == '['
assert text2.text == ']'
assert span.children[0].text == 'aaa'
@assert_no_logs
def test_breaking_linebox_regression_4():
# Regression test #2 for https://github.com/Kozea/WeasyPrint/issues/560
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<div style="width: 5.5em; font-family: weasyprint">'
'aaaa a <span>b c</span>d')
html, = page.children
body, = html.children
div, = body.children
line1, line2, line3 = div.children
assert line1.children[0].text == 'aaaa'
assert line2.children[0].text == 'a '
assert line2.children[1].children[0].text == 'b'
assert line3.children[0].children[0].text == 'c'
assert line3.children[1].text == 'd'
@assert_no_logs
def test_breaking_linebox_regression_5():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/580
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<div style="width: 5.5em; font-family: weasyprint">'
'<span>aaaa aaaa a a a</span><span>bc</span>')
html, = page.children
body, = html.children
div, = body.children
line1, line2, line3, line4 = div.children
assert line1.children[0].children[0].text == 'aaaa'
assert line2.children[0].children[0].text == 'aaaa'
assert line3.children[0].children[0].text == 'a a'
assert line4.children[0].children[0].text == 'a'
assert line4.children[1].children[0].text == 'bc'
@assert_no_logs
def test_breaking_linebox_regression_6():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/586
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<div style="width: 5.5em; font-family: weasyprint">'
'a a <span style="white-space: nowrap">/ccc</span>')
html, = page.children
body, = html.children
div, = body.children
line1, line2 = div.children
assert line1.children[0].text == 'a a'
assert line2.children[0].children[0].text == '/ccc'
@assert_no_logs
def test_breaking_linebox_regression_7():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/660
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<div style="width: 3.5em; font-family: weasyprint">'
'<span><span>abc d e</span></span><span>f')
html, = page.children
body, = html.children
div, = body.children
line1, line2, line3 = div.children
assert line1.children[0].children[0].children[0].text == 'abc'
assert line2.children[0].children[0].children[0].text == 'd'
assert line3.children[0].children[0].children[0].text == 'e'
assert line3.children[1].children[0].text == 'f'
@assert_no_logs
def test_breaking_linebox_regression_8():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/783
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<p style="font-family: weasyprint"><span>\n'
'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\n'
'bbbbbbbbbbb\n'
'<b>cccc</b></span>ddd</p>')
html, = page.children
body, = html.children
p, = body.children
line1, line2 = p.children
assert line1.children[0].children[0].text == (
'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbb')
assert line2.children[0].children[0].children[0].text == 'cccc'
assert line2.children[1].text == 'ddd'
@pytest.mark.xfail
@assert_no_logs
def test_breaking_linebox_regression_9():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/783
# TODO: inlines.can_break_inside return False for span but we can break
# before the <b> tag. can_break_inside should be fixed.
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<p style="font-family: weasyprint"><span>\n'
'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbb\n'
'<b>cccc</b></span>ddd</p>')
html, = page.children
body, = html.children
p, = body.children
line1, line2 = p.children
assert line1.children[0].children[0].text == (
'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbb')
assert line2.children[0].children[0].children[0].text == 'cccc'
assert line2.children[1].text == 'ddd'
@assert_no_logs
def test_breaking_linebox_regression_10():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/923
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<p style="width:195px; font-family: weasyprint">'
' <span>'
' <span>xxxxxx YYY yyyyyy yyy</span>'
' ZZZZZZ zzzzz'
' </span> )x '
'</p>')
html, = page.children
body, = html.children
p, = body.children
line1, line2, line3, line4 = p.children
assert line1.children[0].children[0].children[0].text == 'xxxxxx YYY'
assert line2.children[0].children[0].children[0].text == 'yyyyyy yyy'
assert line3.children[0].children[0].text == 'ZZZZZZ zzzzz'
assert line4.children[0].text == ')x'
@assert_no_logs
def test_breaking_linebox_regression_11():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/953
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<p style="width:10em; font-family: weasyprint">'
' line 1<br><span>123 567 90</span>x'
'</p>')
html, = page.children
body, = html.children
p, = body.children
line1, line2, line3 = p.children
assert line1.children[0].text == 'line 1'
assert line2.children[0].children[0].text == '123 567'
assert line3.children[0].children[0].text == '90'
assert line3.children[1].text == 'x'
@assert_no_logs
def test_breaking_linebox_regression_12():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/953
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<p style="width:10em; font-family: weasyprint">'
' <br><span>123 567 90</span>x'
'</p>')
html, = page.children
body, = html.children
p, = body.children
line1, line2, line3 = p.children
assert line2.children[0].children[0].text == '123 567'
assert line3.children[0].children[0].text == '90'
assert line3.children[1].text == 'x'
@assert_no_logs
def test_breaking_linebox_regression_13():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/953
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<p style="width:10em; font-family: weasyprint">'
' 123 567 90 <span>123 567 90</span>x'
'</p>')
html, = page.children
body, = html.children
p, = body.children
line1, line2, line3 = p.children
assert line1.children[0].text == '123 567 90'
assert line2.children[0].children[0].text == '123 567'
assert line3.children[0].children[0].text == '90'
assert line3.children[1].text == 'x'
@assert_no_logs
def test_breaking_linebox_regression_14():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/1638
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
' body {font-family: weasyprint; width: 3em}'
'</style>'
'<span> <span>a</span> b</span><span>c</span>')
html, = page.children
body, = html.children
line1, line2 = body.children
assert line1.children[0].children[0].children[0].text == 'a'
assert line2.children[0].children[0].text == 'b'
assert line2.children[1].children[0].text == 'c'
@assert_no_logs
def test_breaking_linebox_regression_15():
# Regression test for https://github.com/ietf-tools/datatracker/issues/5507
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
' body {font-family: weasyprint; font-size: 4px}'
' pre {float: left}'
'</style>'
'<pre>ab©\n'
'déf\n'
'ghïj\n'
'klm</pre>')
html, = page.children
body, = html.children
pre, = body.children
line1, line2, line3, line4 = pre.children
assert line1.children[0].text == 'ab©'
assert line2.children[0].text == 'déf'
assert line3.children[0].text == 'ghïj'
assert line4.children[0].text == 'klm'
assert line1.children[0].width == 4 * 3
assert line2.children[0].width == 4 * 3
assert line3.children[0].width == 4 * 4
assert line4.children[0].width == 4 * 3
assert pre.width == 4 * 4
@assert_no_logs
def test_breaking_linebox_regression_16():
# Regression test for https://github.com/Kozea/WeasyPrint/issues/1973
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
' body {font-family: weasyprint; font-size: 4px}'
' p {float: left}'
'</style>'
'<p>tést</p>'
'<pre>ab©\n'
'déf\n'
'ghïj\n'
'klm</pre>')
html, = page.children
body, = html.children
p, pre = body.children
line1, = p.children
assert line1.children[0].text == 'tést'
assert p.width == 4 * 4
line1, line2, line3, line4 = pre.children
assert line1.children[0].text == 'ab©'
assert line2.children[0].text == 'déf'
assert line3.children[0].text == 'ghïj'
assert line4.children[0].text == 'klm'
assert line1.children[0].width == 4 * 3
assert line2.children[0].width == 4 * 3
assert line3.children[0].width == 4 * 4
assert line4.children[0].width == 4 * 3
@assert_no_logs
def test_linebox_text():
page, = render_pages('''
<style>
p { width: 165px; font-family:%(fonts)s;}
</style>
<p><em>Lorem Ipsum</em>is very <strong>coool</strong></p>
''' % {'fonts': SANS_FONTS})
html, = page.children
body, = html.children
paragraph, = body.children
lines = list(paragraph.children)
assert len(lines) == 2
text = ' '.join(
(''.join(box.text for box in line.descendants()
if isinstance(box, boxes.TextBox)))
for line in lines)
assert text == 'Lorem Ipsumis very coool'
@assert_no_logs
def test_linebox_positions():
for width, expected_lines in [(165, 2), (1, 5), (0, 5)]:
page = '''
<style>
p { width:%(width)spx; font-family:%(fonts)s;
line-height: 20px }
</style>
<p>this is test for <strong>Weasyprint</strong></p>'''
page, = render_pages(page % {'fonts': SANS_FONTS, 'width': width})
html, = page.children
body, = html.children
paragraph, = body.children
lines = list(paragraph.children)
assert len(lines) == expected_lines
ref_position_y = lines[0].position_y
ref_position_x = lines[0].position_x
for line in lines:
assert ref_position_y == line.position_y
assert ref_position_x == line.position_x
for box in line.children:
assert ref_position_x == box.position_x
ref_position_x += box.width
assert ref_position_y == box.position_y
assert ref_position_x - line.position_x <= line.width
ref_position_x = line.position_x
ref_position_y += line.height
@assert_no_logs
def test_forced_line_breaks_pre():
# These lines should be small enough to fit on the default A4 page
# with the default 12pt font-size.
page, = render_pages('''
<style> pre { line-height: 42px }</style>
<pre>Lorem ipsum dolor sit amet,
consectetur adipiscing elit.
Sed sollicitudin nibh
et turpis molestie tristique.</pre>
''')
html, = page.children
body, = html.children
pre, = body.children
assert pre.element_tag == 'pre'
lines = pre.children
assert all(isinstance(line, boxes.LineBox) for line in lines)
assert len(lines) == 7
assert [line.height for line in lines] == [42] * 7
@assert_no_logs
def test_forced_line_breaks_paragraph():
page, = render_pages('''
<style> p { line-height: 42px }</style>
<p>Lorem ipsum dolor sit amet,<br>
consectetur adipiscing elit.<br><br><br>
Sed sollicitudin nibh<br>
<br>
et turpis molestie tristique.</p>
''')
html, = page.children
body, = html.children
paragraph, = body.children
assert paragraph.element_tag == 'p'
lines = paragraph.children
assert all(isinstance(line, boxes.LineBox) for line in lines)
assert len(lines) == 7
assert [line.height for line in lines] == [42] * 7
@assert_no_logs
def test_inlinebox_splitting():
# The text is strange to test some corner cases
# See https://github.com/Kozea/WeasyPrint/issues/389
for width in [10000, 100, 10, 0]:
page, = render_pages('''
<style>p { font-family:%(fonts)s; width: %(width)spx; }</style>
<p><strong>WeasyPrint is a frée softwäre ./ visual rendèring enginè
for HTML !!! and CSS.</strong></p>
''' % {'fonts': SANS_FONTS, 'width': width})
html, = page.children
body, = html.children
paragraph, = body.children
lines = paragraph.children
if width == 10000:
assert len(lines) == 1
else:
assert len(lines) > 1
text_parts = []
for line in lines:
strong, = line.children
text, = strong.children
text_parts.append(text.text)
assert ' '.join(text_parts) == (
'WeasyPrint is a frée softwäre ./ visual '
'rendèring enginè for HTML !!! and CSS.')
@assert_no_logs
def test_whitespace_processing():
for source in ['a', ' a ', ' \n \ta', ' a\t ']:
page, = render_pages('<p><em>%s</em></p>' % source)
html, = page.children
body, = html.children
p, = body.children
line, = p.children
em, = line.children
text, = em.children
assert text.text == 'a', 'source was %r' % (source,)
page, = render_pages(
'<p style="white-space: pre-line">\n\n<em>%s</em></pre>' %
source.replace('\n', ' '))
html, = page.children
body, = html.children
p, = body.children
_line1, _line2, line3 = p.children
em, = line3.children
text, = em.children
assert text.text == 'a', 'source was %r' % (source,)
@assert_no_logs
def test_inline_replaced_auto_margins():
page, = render_pages('''
<style>
@page { size: 200px }
img { display: inline; margin: auto; width: 50px }
</style>
<body><img src="pattern.png" />''')
html, = page.children
body, = html.children
line, = body.children
img, = line.children
assert img.margin_top == 0
assert img.margin_right == 0
assert img.margin_bottom == 0
assert img.margin_left == 0
@assert_no_logs
def test_empty_inline_auto_margins():
page, = render_pages('''
<style>
@page { size: 200px }
span { margin: auto }
</style>
<body><span></span>''')
html, = page.children
body, = html.children
block, = body.children
span, = block.children
assert span.margin_top != 0
assert span.margin_right == 0
assert span.margin_bottom != 0
assert span.margin_left == 0
@assert_no_logs
def test_font_stretch():
page, = render_pages('''
<style>
p { float: left; font-family: %s }
</style>
<p>Hello, world!</p>
<p style="font-stretch: condensed">Hello, world!</p>
''' % SANS_FONTS)
html, = page.children
body, = html.children
p_1, p_2 = body.children
normal = p_1.width
condensed = p_2.width
assert condensed < normal
@assert_no_logs
@pytest.mark.parametrize('source, lines_count', (
('<body>hyphénation', 1), # Default: no hyphenation
('<body lang=fr>hyphénation', 1), # lang only: no hyphenation
('<body style="hyphens: auto">hyphénation', 1), # hyphens only: no hyph.
('<body style="hyphens: auto" lang=fr>hyphénation', 4), # both: hyph.
('<body>hyp­hénation', 2), # Hyphenation with soft hyphens
('<body style="hyphens: none">hyp­hénation', 1), # … unless disabled
))
def test_line_count(source, lines_count):
page, = render_pages(
'<html style="width: 5em; font-family: weasyprint">'
'<style>@font-face {'
' src:url(weasyprint.otf); font-family :weasyprint'
'}</style>' + source)
html, = page.children
body, = html.children
lines = body.children
assert len(lines) == lines_count
@assert_no_logs
def test_vertical_align_1():
# +-------+ <- position_y = 0
# +-----+ |
# 40px | | | 60px
# | | |
# +-----+-------+ <- baseline
page, = render_pages('''
<span>
<img src="pattern.png" style="width: 40px"
><img src="pattern.png" style="width: 60px"
></span>''')
html, = page.children
body, = html.children
line, = body.children
span, = line.children
img_1, img_2 = span.children
assert img_1.height == 40
assert img_2.height == 60
assert img_1.position_y == 20
assert img_2.position_y == 0
# 60px + the descent of the font below the baseline
assert 60 < line.height < 70
assert body.height == line.height
@assert_no_logs
def test_vertical_align_2():
# +-------+ <- position_y = 0
# 35px | |
# +-----+ | 60px
# 40px | | |
# | +-------+ <- baseline
# +-----+ 15px
page, = render_pages('''
<span>
<img src="pattern.png" style="width: 40px; vertical-align: -15px"
><img src="pattern.png" style="width: 60px"></span>''')
html, = page.children
body, = html.children
line, = body.children
span, = line.children
img_1, img_2 = span.children
assert img_1.height == 40
assert img_2.height == 60
assert img_1.position_y == 35
assert img_2.position_y == 0
assert line.height == 75
assert body.height == line.height
@assert_no_logs
def test_vertical_align_3():
# Same as previously, but with percentages
page, = render_pages('''
<span style="line-height: 10px">
<img src="pattern.png" style="width: 40px; vertical-align: -150%"
><img src="pattern.png" style="width: 60px"></span>''')
html, = page.children
body, = html.children
line, = body.children
span, = line.children
img_1, img_2 = span.children
assert img_1.height == 40
assert img_2.height == 60
assert img_1.position_y == 35
assert img_2.position_y == 0
assert line.height == 75
assert body.height == line.height
@assert_no_logs
def test_vertical_align_4():
# Same again, but have the vertical-align on an inline box.
page, = render_pages('''
<span style="line-height: 10px">
<span style="line-height: 10px; vertical-align: -15px">
<img src="pattern.png" style="width: 40px"></span>
<img src="pattern.png" style="width: 60px"></span>''')
html, = page.children
body, = html.children
line, = body.children
span_1, = line.children
span_2, _whitespace, img_2 = span_1.children
img_1, = span_2.children
assert img_1.height == 40
assert img_2.height == 60
assert img_1.position_y == 35
assert img_2.position_y == 0
assert line.height == 75
assert body.height == line.height
@assert_no_logs
def test_vertical_align_5():
# Same as previously, but with percentages
page, = render_pages(
'<style>'
' @font-face {src: url(weasyprint.otf); font-family: weasyprint}'
'</style>'
'<span style="line-height: 12px; font-size: 12px;'
' font-family: weasyprint">'
'<img src="pattern.png" style="width: 40px; vertical-align: middle">'
'<img src="pattern.png" style="width: 60px"></span>')
html, = page.children
body, = html.children
line, = body.children
span, = line.children
img_1, img_2 = span.children
assert img_1.height == 40
assert img_2.height == 60
# middle of the image (position_y + 20) is at half the ex-height above
# the baseline of the parent. The ex-height of weasyprint.otf is 0.8em
# TODO: ex unit doesn't work with @font-face fonts, see computed_values.py
# assert img_1.position_y == 35.2 # 60 - 0.5 * 0.8 * font-size - 40/2
assert img_2.position_y == 0
# assert line.height == 75.2
assert body.height == line.height
@assert_no_logs
def test_vertical_align_6():
# sup and sub currently mean +/- 0.5 em
# With the initial 16px font-size, that’s 8px.
page, = render_pages('''
<span style="line-height: 10px">
<img src="pattern.png" style="width: 60px"
><img src="pattern.png" style="width: 40px; vertical-align: super"
><img src="pattern.png" style="width: 40px; vertical-align: sub"
></span>''')
html, = page.children
body, = html.children
line, = body.children
span, = line.children
img_1, img_2, img_3 = span.children
assert img_1.height == 60
assert img_2.height == 40
assert img_3.height == 40
assert img_1.position_y == 0
assert img_2.position_y == 12 # 20 - 16 * 0.5
assert img_3.position_y == 28 # 20 + 16 * 0.5
assert line.height == 68
assert body.height == line.height
@assert_no_logs
def test_vertical_align_7():
page, = render_pages('''
<body style="line-height: 10px">
<span>
<img src="pattern.png" style="vertical-align: text-top"
><img src="pattern.png" style="vertical-align: text-bottom"
></span>''')
html, = page.children
body, = html.children
line, = body.children
span, = line.children
img_1, img_2 = span.children
assert img_1.height == 4
assert img_2.height == 4
assert img_1.position_y == 0
assert img_2.position_y == 12 # 16 - 4
assert line.height == 16
assert body.height == line.height
@assert_no_logs
def test_vertical_align_8():
# This case used to cause an exception:
# The second span has no children but should count for line heights
# since it has padding.
page, = render_pages('''<span style="line-height: 1.5">
<span style="padding: 1px"></span></span>''')
html, = page.children
body, = html.children
line, = body.children
span_1, = line.children
span_2, = span_1.children
assert span_1.height == 16
assert span_2.height == 16
# The line’s strut does not has 'line-height: normal' but the result should
# be smaller than 1.5.
assert span_1.margin_height() == 24
assert span_2.margin_height() == 24
assert line.height == 24
@assert_no_logs
def test_vertical_align_9():
page, = render_pages('''
<span>
<img src="pattern.png" style="width: 40px; vertical-align: -15px"
><img src="pattern.png" style="width: 60px"
></span><div style="display: inline-block; vertical-align: 3px">
<div>
<div style="height: 100px">foo</div>
<div>
<img src="pattern.png" style="
width: 40px; vertical-align: -15px"
><img src="pattern.png" style="width: 60px"
></div>
</div>
</div>''')
html, = page.children
body, = html.children
line, = body.children
span, div_1 = line.children
assert line.height == 178
assert body.height == line.height
# Same as earlier
img_1, img_2 = span.children
assert img_1.height == 40
assert img_2.height == 60
assert img_1.position_y == 138
assert img_2.position_y == 103
div_2, = div_1.children
div_3, div_4 = div_2.children
div_line, = div_4.children
div_img_1, div_img_2 = div_line.children
assert div_1.position_y == 0
assert div_1.height == 175
assert div_3.height == 100
assert div_line.height == 75
assert div_img_1.height == 40
assert div_img_2.height == 60
assert div_img_1.position_y == 135
assert div_img_2.position_y == 100
@assert_no_logs
def test_vertical_align_10():
# The first two images bring the top of the line box 30px above
# the baseline and 10px below.
# Each of the inner span
page, = render_pages('''
<span style="font-size: 0">
<img src="pattern.png" style="vertical-align: 26px">
<img src="pattern.png" style="vertical-align: -10px">
<span style="vertical-align: top">
<img src="pattern.png" style="vertical-align: -10px">
<span style="vertical-align: -10px">
<img src="pattern.png" style="vertical-align: bottom">
</span>
</span>
<span style="vertical-align: bottom">
<img src="pattern.png" style="vertical-align: 6px">
</span>
</span>''')
html, = page.children
body, = html.children
line, = body.children
span_1, = line.children
img_1, img_2, span_2, span_4 = span_1.children
img_3, span_3 = span_2.children
img_4, = span_3.children
img_5, = span_4.children
assert body.height == line.height
assert line.height == 40
assert img_1.position_y == 0
assert img_2.position_y == 36
assert img_3.position_y == 6
assert img_4.position_y == 36
assert img_5.position_y == 30
@assert_no_logs
def test_vertical_align_11():
page, = render_pages('''
<span style="font-size: 0">
<img src="pattern.png" style="vertical-align: bottom">
<img src="pattern.png" style="vertical-align: top; height: 100px">
</span>
''')
html, = page.children
body, = html.children
line, = body.children
span, = line.children
img_1, img_2 = span.children
assert img_1.position_y == 96
assert img_2.position_y == 0
@assert_no_logs
def test_vertical_align_12():
# Reference for the next test
page, = render_pages('''
<span style="font-size: 0; vertical-align: top">
<img src="pattern.png">
</span>
''')
html, = page.children
body, = html.children
line, = body.children
span, = line.children
img_1, = span.children
assert img_1.position_y == 0
@assert_no_logs
def test_vertical_align_13():
# Should be the same as above
page, = render_pages('''
<span style="font-size: 0; vertical-align: top; display: inline-block">
<img src="pattern.png">
</span>''')
html, = page.children
body, = html.children
line_1, = body.children
span, = line_1.children
line_2, = span.children
img_1, = line_2.children
assert img_1.element_tag == 'img'
assert img_1.position_y == 0
@assert_no_logs
def test_box_decoration_break_inline_slice():
# https://www.w3.org/TR/css-backgrounds-3/#the-box-decoration-break
page_1, = render_pages('''
<style>
@font-face { src: url(weasyprint.otf); font-family: weasyprint }
@page { size: 100px }
span { font-family: weasyprint; box-decoration-break: slice;
padding: 5px; border: 1px solid black }
</style>
<span>a<br/>b<br/>c</span>''')
html, = page_1.children
body, = html.children
line_1, line_2, line_3 = body.children
span, = line_1.children
assert span.width == 16
assert span.margin_width() == 16 + 5 + 1
text, br = span.children
assert text.position_x == 5 + 1
span, = line_2.children
assert span.width == 16
assert span.margin_width() == 16
text, br = span.children
assert text.position_x == 0
span, = line_3.children
assert span.width == 16
assert span.margin_width() == 16 + 5 + 1
text, = span.children
assert text.position_x == 0
@assert_no_logs
def test_box_decoration_break_inline_clone():
# https://www.w3.org/TR/css-backgrounds-3/#the-box-decoration-break
page_1, = render_pages('''
<style>
@font-face { src: url(weasyprint.otf); font-family: weasyprint }
@page { size: 100px }
span { font-size: 12pt; font-family: weasyprint;
box-decoration-break: clone;
padding: 5px; border: 1px solid black }
</style>
<span>a<br/>b<br/>c</span>''')
html, = page_1.children
body, = html.children
line_1, line_2, line_3 = body.children
span, = line_1.children
assert span.width == 16
assert span.margin_width() == 16 + 2 * (5 + 1)
text, br = span.children
assert text.position_x == 5 + 1
span, = line_2.children
assert span.width == 16
assert span.margin_width() == 16 + 2 * (5 + 1)
text, br = span.children
assert text.position_x == 5 + 1
span, = line_3.children
assert span.width == 16
assert span.margin_width() == 16 + 2 * (5 + 1)
text, = span.children
assert text.position_x == 5 + 1
@assert_no_logs
def test_bidi_position_x_invariant():
page, = render_pages('''
<style>
.float-border {
float: left;
border-right: 100px solid black;
}
</style>
<div class="float-border" style="direction: ltr">abc</div>
<div> </div>
<div class="float-border" style="direction: rtl">abc</div>
''')
html, = page.children
body, = html.children
block_ltr, _, block_rtl = body.children
line_ltr, = block_ltr.children
text_ltr, = line_ltr.children
line_rtl, = block_rtl.children
text_rtl, = line_rtl.children
assert block_ltr.position_x == block_rtl.position_x
assert line_ltr.position_x == line_rtl.position_x
assert text_ltr.position_x == text_rtl.position_x
|