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 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
|
"""Test the text layout."""
import pytest
from weasyprint.css import InitialStyle
from weasyprint.formatting_structure.build import capitalize
from weasyprint.text.fonts import FontConfiguration
from weasyprint.text.line_break import split_first_line
from .testing_utils import MONO_FONTS, SANS_FONTS, assert_no_logs, render_pages
def make_text(text, width=None, **style):
"""Wrapper for split_first_line() creating a style dict."""
new_style = InitialStyle(FontConfiguration())
new_style['font_family'] = MONO_FONTS.split(',')
new_style.update(style)
return split_first_line(
text, new_style, context=None, max_width=width,
justification_spacing=0)
@assert_no_logs
def test_line_content():
for width, remaining in [(100, 'text for test'),
(45, 'is a text for test')]:
text = 'This is a text for test'
_, length, resume_index, _, _, _ = make_text(
text, width, font_family=SANS_FONTS.split(','), font_size=19)
assert text[resume_index:] == remaining
assert length + 1 == resume_index # +1 for the removed trailing space
@assert_no_logs
def test_line_with_any_width():
_, _, _, width_1, _, _ = make_text('some text')
_, _, _, width_2, _, _ = make_text('some text some text')
assert width_1 < width_2
@assert_no_logs
def test_line_breaking():
string = 'Thïs is a text for test'
# These two tests do not really rely on installed fonts
_, _, resume_index, _, _, _ = make_text(string, 90, font_size=1)
assert resume_index is None
_, _, resume_index, _, _, _ = make_text(string, 90, font_size=100)
assert string.encode()[resume_index:].decode() == 'is a text for test'
_, _, resume_index, _, _, _ = make_text(
string, 100, font_family=SANS_FONTS.split(','), font_size=19)
assert string.encode()[resume_index:].decode() == 'text for test'
@assert_no_logs
def test_line_breaking_rtl():
string = 'لوريم ايبسوم دولا'
# These two tests do not really rely on installed fonts
_, _, resume_index, _, _, _ = make_text(string, 90, font_size=1)
assert resume_index is None
_, _, resume_index, _, _, _ = make_text(string, 90, font_size=100)
assert string.encode()[resume_index:].decode() == 'ايبسوم دولا'
@assert_no_logs
def test_line_breaking_nbsp():
# Regression test for #1561.
page, = render_pages('''
<style>
body { font-family: weasyprint; width: 7.5em }
</style>
<body>a <span>b</span> c d <span>ef
''')
html, = page.children
body, = html.children
line_1, line_2 = body.children
assert line_1.children[0].text == 'a '
assert line_1.children[1].children[0].text == 'b'
assert line_1.children[2].text == ' c'
assert line_2.children[0].text == 'd\xa0'
assert line_2.children[1].children[0].text == 'ef'
@assert_no_logs
def test_text_dimension():
string = 'This is a text for test. This is a test for text.py'
_, _, _, width_1, height_1, _ = make_text(string, 200, font_size=12)
_, _, _, width_2, height_2, _ = make_text(string, 200, font_size=20)
assert width_1 * height_1 < width_2 * height_2
@assert_no_logs
def test_text_font_size_zero():
page, = render_pages('''
<style>
p { font-size: 0; }
</style>
<p>test font size zero</p>
''')
html, = page.children
body, = html.children
paragraph, = body.children
line, = paragraph.children
# zero-sized text boxes are removed
assert not line.children
assert line.height == 0
assert paragraph.height == 0
@assert_no_logs
def test_text_font_size_very_small():
# Regression test for #1499.
page, = render_pages('''
<style>
p { font-size: 0.00000001px }
</style>
<p>test font size zero</p>
''')
html, = page.children
body, = html.children
paragraph, = body.children
line, = paragraph.children
assert line.height < 0.001
assert paragraph.height < 0.001
@assert_no_logs
def test_text_spaced_inlines():
page, = render_pages('''
<p>start <i><b>bi1</b> <b>bi2</b></i> <b>b1</b> end</p>
''')
html, = page.children
body, = html.children
paragraph, = body.children
line, = paragraph.children
start, i, space, b, end = line.children
assert start.text == 'start '
assert space.text == ' '
assert space.width > 0
assert end.text == ' end'
bi1, space, bi2 = i.children
bi1, = bi1.children
bi2, = bi2.children
assert bi1.text == 'bi1'
assert space.text == ' '
assert space.width > 0
assert bi2.text == 'bi2'
b1, = b.children
assert b1.text == 'b1'
@assert_no_logs
def test_text_align_left():
# <--------------------> page, body
# +-----+
# +---+ |
# | | |
# +---+-----+
# ^ ^ ^ ^
# x=0 x=40 x=100 x=200
page, = render_pages('''
<style>
@page { size: 200px }
</style>
<body>
<img src="pattern.png" style="width: 40px"
><img src="pattern.png" style="width: 60px">''')
html, = page.children
body, = html.children
line, = body.children
img_1, img_2 = line.children
# initial value for text-align: left (in ltr text)
assert img_1.position_x == 0
assert img_2.position_x == 40
@assert_no_logs
def test_text_align_right():
# <--------------------> page, body
# +-----+
# +---+ |
# | | |
# +---+-----+
# ^ ^ ^ ^
# x=0 x=100 x=200
# x=140
page, = render_pages('''
<style>
@page { size: 200px }
body { text-align: right }
</style>
<body>
<img src="pattern.png" style="width: 40px"
><img src="pattern.png" style="width: 60px">''')
html, = page.children
body, = html.children
line, = body.children
img_1, img_2 = line.children
assert img_1.position_x == 100 # 200 - 60 - 40
assert img_2.position_x == 140 # 200 - 60
@assert_no_logs
def test_text_align_center():
# <--------------------> page, body
# +-----+
# +---+ |
# | | |
# +---+-----+
# ^ ^ ^ ^
# x= x=50 x=150
# x=90
page, = render_pages('''
<style>
@page { size: 200px }
body { text-align: center }
</style>
<body>
<img src="pattern.png" style="width: 40px"
><img src="pattern.png" style="width: 60px">''')
html, = page.children
body, = html.children
line, = body.children
img_1, img_2 = line.children
assert img_1.position_x == 50
assert img_2.position_x == 90
@assert_no_logs
def test_text_align_justify():
page, = render_pages('''
<style>
@page { size: 300px 1000px }
body { text-align: justify }
</style>
<p><img src="pattern.png" style="width: 40px">
<strong>
<img src="pattern.png" style="width: 60px">
<img src="pattern.png" style="width: 10px">
<img src="pattern.png" style="width: 100px"
></strong><img src="pattern.png" style="width: 290px"
><!-- Last image will be on its own line. -->''')
html, = page.children
body, = html.children
paragraph, = body.children
line_1, line_2 = paragraph.children
image_1, space_1, strong = line_1.children
image_2, space_2, image_3, space_3, image_4 = strong.children
image_5, = line_2.children
assert space_1.text == ' '
assert space_2.text == ' '
assert space_3.text == ' '
assert image_1.position_x == 0
assert space_1.position_x == 40
assert strong.position_x == 70
assert image_2.position_x == 70
assert space_2.position_x == 130
assert image_3.position_x == 160
assert space_3.position_x == 170
assert image_4.position_x == 200
assert strong.width == 230
assert image_5.position_x == 0
@assert_no_logs
def test_text_align_justify_all():
page, = render_pages('''
<style>
@page { size: 300px 1000px }
body { text-align: justify-all }
</style>
<p><img src="pattern.png" style="width: 40px">
<strong>
<img src="pattern.png" style="width: 60px">
<img src="pattern.png" style="width: 10px">
<img src="pattern.png" style="width: 100px"
></strong><img src="pattern.png" style="width: 200px">
<img src="pattern.png" style="width: 10px">''')
html, = page.children
body, = html.children
paragraph, = body.children
line_1, line_2 = paragraph.children
image_1, space_1, strong = line_1.children
image_2, space_2, image_3, space_3, image_4 = strong.children
image_5, space_4, image_6 = line_2.children
assert space_1.text == ' '
assert space_2.text == ' '
assert space_3.text == ' '
assert space_4.text == ' '
assert image_1.position_x == 0
assert space_1.position_x == 40
assert strong.position_x == 70
assert image_2.position_x == 70
assert space_2.position_x == 130
assert image_3.position_x == 160
assert space_3.position_x == 170
assert image_4.position_x == 200
assert strong.width == 230
assert image_5.position_x == 0
assert space_4.position_x == 200
assert image_6.position_x == 290
@assert_no_logs
def test_text_align_all_last():
page, = render_pages('''
<style>
@page { size: 300px 1000px }
body { text-align-all: justify; text-align-last: right }
</style>
<p><img src="pattern.png" style="width: 40px">
<strong>
<img src="pattern.png" style="width: 60px">
<img src="pattern.png" style="width: 10px">
<img src="pattern.png" style="width: 100px"
></strong><img src="pattern.png" style="width: 200px"
><img src="pattern.png" style="width: 10px">''')
html, = page.children
body, = html.children
paragraph, = body.children
line_1, line_2 = paragraph.children
image_1, space_1, strong = line_1.children
image_2, space_2, image_3, space_3, image_4 = strong.children
image_5, image_6 = line_2.children
assert space_1.text == ' '
assert space_2.text == ' '
assert space_3.text == ' '
assert image_1.position_x == 0
assert space_1.position_x == 40
assert strong.position_x == 70
assert image_2.position_x == 70
assert space_2.position_x == 130
assert image_3.position_x == 160
assert space_3.position_x == 170
assert image_4.position_x == 200
assert strong.width == 230
assert image_5.position_x == 90
assert image_6.position_x == 290
@assert_no_logs
def test_text_align_not_enough_space():
page, = render_pages('''
<style>
p { text-align: center; width: 0 }
span { display: inline-block }
</style>
<p><span>aaaaaaaaaaaaaaaaaaaaaaaaaa</span></p>''')
html, = page.children
body, = html.children
paragraph, = body.children
span, = paragraph.children
assert span.position_x == 0
@assert_no_logs
def test_text_align_justify_no_space():
# single-word line (zero spaces)
page, = render_pages('''
<style>
body { text-align: justify; width: 50px }
</style>
<p>Supercalifragilisticexpialidocious bar</p>
''')
html, = page.children
body, = html.children
paragraph, = body.children
line_1, line_2 = paragraph.children
text, = line_1.children
assert text.position_x == 0
@assert_no_logs
def test_text_align_justify_text_indent():
# text-indent
page, = render_pages('''
<style>
@page { size: 300px 1000px }
body { text-align: justify }
p { text-indent: 3px }
</style>
<p><img src="pattern.png" style="width: 40px">
<strong>
<img src="pattern.png" style="width: 60px">
<img src="pattern.png" style="width: 10px">
<img src="pattern.png" style="width: 100px"
></strong><img src="pattern.png" style="width: 290px"
><!-- Last image will be on its own line. -->''')
html, = page.children
body, = html.children
paragraph, = body.children
line_1, line_2 = paragraph.children
image_1, space_1, strong = line_1.children
image_2, space_2, image_3, space_3, image_4 = strong.children
image_5, = line_2.children
assert space_1.text == ' '
assert space_2.text == ' '
assert space_3.text == ' '
assert image_1.position_x == 3
assert space_1.position_x == 43
assert strong.position_x == 72
assert image_2.position_x == 72
assert space_2.position_x == 132
assert image_3.position_x == 161
assert space_3.position_x == 171
assert image_4.position_x == 200
assert strong.width == 228
assert image_5.position_x == 0
@assert_no_logs
def test_text_align_justify_no_break_between_children():
# Test justification when line break happens between two inline children
# that must stay together.
# Regression test for #637.
page, = render_pages('''
<style>
p { text-align: justify; font-family: weasyprint; width: 7em }
</style>
<p>
<span>a</span>
<span>b</span>
<span>bla</span><span>,</span>
<span>b</span>
</p>
''')
html, = page.children
body, = html.children
paragraph, = body.children
line_1, line_2 = paragraph.children
span_1, space_1, span_2, space_2 = line_1.children
assert span_1.position_x == 0
assert span_2.position_x == 6 * 16 # 1 character + 5 spaces
assert line_1.width == 7 * 16 # 7em
span_1, span_2, space_1, span_3, space_2 = line_2.children
assert span_1.position_x == 0
assert span_2.position_x == 3 * 16 # 3 characters
assert span_3.position_x == 5 * 16 # (3 + 1) characters + 1 space
@pytest.mark.parametrize('text', [
'Lorem ipsum dolor<em>sit amet</em>',
'Lorem ipsum <em>dolorsit</em> amet',
'Lorem ipsum <em></em>dolorsit amet',
'Lorem ipsum<em> </em>dolorsit amet',
'Lorem ipsum<em> dolorsit</em> amet',
'Lorem ipsum <em>dolorsit </em>amet',
])
@assert_no_logs
def test_word_spacing(text):
# Regression test.
page, = render_pages('''
<style></style> <!-- element.text is None -->
<body><strong>Lorem ipsum dolor<em>sit amet</em></strong>''')
html, = page.children
body, = html.children
line, = body.children
strong_1, = line.children
page, = render_pages('''
<style>strong { word-spacing: 11px }</style>
<body><strong>%s</strong>''' % text)
html, = page.children
body, = html.children
line, = body.children
strong_2, = line.children
assert strong_2.width - strong_1.width == 33
@assert_no_logs
def test_letter_spacing_1():
page, = render_pages('''
<body><strong>Supercalifragilisticexpialidocious</strong>''')
html, = page.children
body, = html.children
line, = body.children
strong_1, = line.children
page, = render_pages('''
<style>strong { letter-spacing: 11px }</style>
<body><strong>Supercalifragilisticexpialidocious</strong>''')
html, = page.children
body, = html.children
line, = body.children
strong_2, = line.children
assert strong_2.width - strong_1.width == 34 * 11
# an embedded tag should not affect the single-line letter spacing
page, = render_pages(
'<style>strong { letter-spacing: 11px }</style>'
'<body><strong>Supercali<span>fragilistic</span>expialidocious'
'</strong>')
html, = page.children
body, = html.children
line, = body.children
strong_3, = line.children
assert strong_3.width == strong_2.width
# duplicate wrapped lines should also have same overall width
# Note work-around for word-wrap bug (issue #163) by marking word
# as an inline-block
page, = render_pages(
'<style>'
' strong {'
' letter-spacing: 11px;'
f' max-width: {strong_3.width * 1.5}px'
'}'
' span { display: inline-block }'
'</style>'
'<body><strong>'
' <span>Supercali<i>fragilistic</i>expialidocious</span> '
' <span>Supercali<i>fragilistic</i>expialidocious</span>'
'</strong>')
html, = page.children
body, = html.children
line1, line2 = body.children
assert line1.children[0].width == line2.children[0].width
assert line1.children[0].width == strong_2.width
@pytest.mark.parametrize('spacing', ['word-spacing', 'letter-spacing'])
@assert_no_logs
def test_spacing_ex(spacing):
# Regression test.
render_pages(f'<div style="{spacing}: 2ex">abc def')
@pytest.mark.parametrize('indent', ['12px', '6%'])
@assert_no_logs
def test_text_indent(indent):
page, = render_pages('''
<style>
@page { size: 220px }
body { margin: 10px; text-indent: %(indent)s }
</style>
<p>Some text that is long enough that it take at least three line,
but maybe more.
''' % {'indent': indent})
html, = page.children
body, = html.children
paragraph, = body.children
lines = paragraph.children
text_1, = lines[0].children
text_2, = lines[1].children
text_3, = lines[2].children
assert text_1.position_x == 22 # 10px margin-left + 12px indent
assert text_2.position_x == 10 # No indent
assert text_3.position_x == 10 # No indent
@assert_no_logs
def test_text_indent_inline():
# Regression test for #1000.
page, = render_pages('''
<style>
p { display: inline-block; text-indent: 1em; font-family: weasyprint }
</style>
<p><span>text
''')
html, = page.children
body, = html.children
paragraph, = body.children
line, = paragraph.children
assert line.width == (4 + 1) * 16
@pytest.mark.parametrize('indent', ['12px', '6%'])
@assert_no_logs
def test_text_indent_multipage(indent):
# Regression test for #706.
pages = render_pages('''
<style>
@page { size: 220px 1.5em; margin: 0 }
body { margin: 10px; text-indent: %(indent)s }
</style>
<p>Some text that is long enough that it take at least three line,
but maybe more.
''' % {'indent': indent})
page = pages.pop(0)
html, = page.children
body, = html.children
paragraph, = body.children
line, = paragraph.children
text, = line.children
assert text.position_x == 22 # 10px margin-left + 12px indent
page = pages.pop(0)
html, = page.children
body, = html.children
paragraph, = body.children
line, = paragraph.children
text, = line.children
assert text.position_x == 10 # No indent
@assert_no_logs
def test_hyphenate_character_1():
page, = render_pages(
'<html style="width: 5em; font-family: weasyprint">'
'<body style="hyphens: auto;'
'hyphenate-character: \'!\'" lang=fr>'
'hyphénation')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) > 1
assert lines[0].children[0].text.endswith('!')
full_text = ''.join(line.children[0].text for line in lines)
assert full_text.replace('!', '') == 'hyphénation'
@assert_no_logs
def test_hyphenate_character_2():
page, = render_pages(
'<html style="width: 5em; font-family: weasyprint">'
'<body style="hyphens: auto;'
'hyphenate-character: \'à\'" lang=fr>'
'hyphénation')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) > 1
assert lines[0].children[0].text.endswith('à')
full_text = ''.join(line.children[0].text for line in lines)
assert full_text.replace('à', '') == 'hyphénation'
@assert_no_logs
def test_hyphenate_character_3():
page, = render_pages(
'<html style="width: 5em; font-family: weasyprint">'
'<body style="hyphens: auto;'
'hyphenate-character: \'ù ù\'" lang=fr>'
'hyphénation')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) > 1
assert lines[0].children[0].text.endswith('ù ù')
full_text = ''.join(line.children[0].text for line in lines)
assert full_text.replace(' ', '').replace('ù', '') == 'hyphénation'
@assert_no_logs
def test_hyphenate_character_4():
page, = render_pages(
'<html style="width: 5em; font-family: weasyprint">'
'<body style="hyphens: auto;'
'hyphenate-character: \'\'" lang=fr>'
'hyphénation')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) > 1
full_text = ''.join(line.children[0].text for line in lines)
assert full_text == 'hyphénation'
@assert_no_logs
def test_hyphenate_character_5():
page, = render_pages(
'<html style="width: 5em; font-family: weasyprint">'
'<body style="hyphens: auto;'
'hyphenate-character: \'———\'" lang=fr>'
'hyphénation')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) > 1
assert lines[0].children[0].text.endswith('———')
full_text = ''.join(line.children[0].text for line in lines)
assert full_text.replace('—', '') == 'hyphénation'
@assert_no_logs
@pytest.mark.parametrize('i', (range(1, len('hyphénation'))))
def test_hyphenate_manual_1(i):
for hyphenate_character in ('!', 'ù ù'):
word = f'{"hyphénation"[:i]}\xad{"hyphénation"[i:]}'
page, = render_pages(
'<html style="width: 5em; font-family: weasyprint">'
'<body style="hyphens: manual;'
f' hyphenate-character: \'{hyphenate_character}\'"'
f' lang=fr>{word}')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) == 2
assert lines[0].children[0].text.endswith(hyphenate_character)
full_text = ''.join(
child.text for line in lines for child in line.children)
assert full_text.replace(hyphenate_character, '') == word
@assert_no_logs
@pytest.mark.parametrize('i', (range(1, len('hy phénation'))))
def test_hyphenate_manual_2(i):
for hyphenate_character in ('!', 'ù ù'):
word = f'{"hy phénation"[:i]}\xad{"hy phénation"[i:]}'
page, = render_pages(
'<html style="width: 5em; font-family: weasyprint">'
'<body style="hyphens: manual;'
f' hyphenate-character: \'{hyphenate_character}\'"'
f' lang=fr>{word}')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) in (2, 3)
full_text = ''.join(
child.text for line in lines for child in line.children)
full_text = full_text.replace(hyphenate_character, '')
if lines[0].children[0].text.endswith(hyphenate_character):
assert full_text == word
else:
assert lines[0].children[0].text.rstrip('\xad').endswith('y')
if len(lines) == 3:
assert lines[1].children[0].text.rstrip('\xad').endswith(
hyphenate_character)
@assert_no_logs
def test_hyphenate_manual_3():
# Automatic hyphenation opportunities within a word must be ignored if the
# word contains a conditional hyphen, in favor of the conditional
# hyphen(s).
page, = render_pages(
'<html style="width: 0.1em" lang="en">'
'<body style="hyphens: auto">in­lighten­lighten­in')
html, = page.children
body, = html.children
line_1, line_2, line_3, line_4 = body.children
assert line_1.children[0].text == 'in\xad‐'
assert line_2.children[0].text == 'lighten\xad‐'
assert line_3.children[0].text == 'lighten\xad‐'
assert line_4.children[0].text == 'in'
@assert_no_logs
def test_hyphenate_manual_4():
# Regression test for #1878.
page, = render_pages(
'<html style="width: 0.1em" lang="en">'
'<body style="hyphens: auto">test­')
html, = page.children
body, = html.children
line_1, = body.children
# TODO: should not end with an hyphen
# assert line_1.children[0].text == 'test\xad'
@assert_no_logs
def test_hyphenate_limit_zone_1():
page, = render_pages(
'<html style="width: 12em; font-family: weasyprint">'
'<body style="hyphens: auto;'
'hyphenate-limit-zone: 0" lang=fr>'
'mmmmm hyphénation')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) == 2
assert lines[0].children[0].text.endswith('‐')
full_text = ''.join(line.children[0].text for line in lines)
assert full_text.replace('‐', '') == 'mmmmm hyphénation'
@assert_no_logs
def test_hyphenate_limit_zone_2():
page, = render_pages(
'<html style="width: 12em; font-family: weasyprint">'
'<body style="hyphens: auto;'
'hyphenate-limit-zone: 9em" lang=fr>'
'mmmmm hyphénation')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) > 1
assert lines[0].children[0].text.endswith('mm')
full_text = ''.join(line.children[0].text for line in lines)
assert full_text == 'mmmmmhyphénation'
@assert_no_logs
def test_hyphenate_limit_zone_3():
page, = render_pages(
'<html style="width: 12em; font-family: weasyprint">'
'<body style="hyphens: auto;'
'hyphenate-limit-zone: 5%" lang=fr>'
'mmmmm hyphénation')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) == 2
assert lines[0].children[0].text.endswith('‐')
full_text = ''.join(line.children[0].text for line in lines)
assert full_text.replace('‐', '') == 'mmmmm hyphénation'
@assert_no_logs
def test_hyphenate_limit_zone_4():
page, = render_pages(
'<html style="width: 12em; font-family: weasyprint">'
'<body style="hyphens: auto;'
'hyphenate-limit-zone: 95%" lang=fr>'
'mmmmm hyphénation')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) > 1
assert lines[0].children[0].text.endswith('mm')
full_text = ''.join(line.children[0].text for line in lines)
assert full_text == 'mmmmmhyphénation'
def test_hyphen_nbsp():
# Regression test for #1817.
page, = render_pages('''
<style>
body {width: 20px; font: 2px weasyprint}
</style>
<body style="hyphens: auto;" lang="en">
<span>this hyphenation
''')
html, = page.children
body, = html.children
line1, line2 = body.children
assert line1.children[0].children[0].text == "this hy‐"
assert line2.children[0].children[0].text == "phenation"
@assert_no_logs
@pytest.mark.parametrize(('css', 'result'), [
('auto', 2),
('auto auto 0', 2),
('0 0 0', 2),
('4 4 auto', 1),
('6 2 4', 2),
('auto 1 auto', 2),
('7 auto auto', 1),
('6 auto auto', 2),
('5 2', 2),
('3', 2),
('2 4 6', 1),
('auto 4', 1),
('auto 2', 2),
])
def test_hyphenate_limit_chars(css, result):
page, = render_pages(
'<html style="width: 1em; font-family: weasyprint">'
'<body style="hyphens: auto;'
f'hyphenate-limit-chars: {css}" lang=en>'
'hyphen')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) == result
@assert_no_logs
@pytest.mark.parametrize('css', [
# light·en
'3 3 3', # 'en' is shorter than 3
'3 6 2', # 'light' is shorter than 6
'8', # 'lighten' is shorter than 8
])
def test_hyphenate_limit_chars_punctuation(css):
# Regression test for #109.
page, = render_pages(
'<html style="width: 1em; font-family: weasyprint">'
'<body style="hyphens: auto;'
f'hyphenate-limit-chars: {css}" lang=en>'
'..lighten..')
html, = page.children
body, = html.children
lines = body.children
assert len(lines) == 1
@assert_no_logs
@pytest.mark.parametrize(('wrap', 'text', 'test', 'full_text'), [
('anywhere', 'aaaaaaaa', lambda a: a > 1, 'aaaaaaaa'),
('break-word', 'aaaaaaaa', lambda a: a > 1, 'aaaaaaaa'),
('normal', 'aaaaaaaa', lambda a: a == 1, 'aaaaaaaa'),
('break-word', 'hyphenations', lambda a: a > 3,
'hy\u2010phen\u2010ations'),
('break-word', "A splitted word. An hyphenated word.",
lambda a: a > 8, "Asplittedword.Anhy\u2010phen\u2010atedword."),
])
def test_overflow_wrap(wrap, text, test, full_text):
page, = render_pages('''
<style>
body {width: 80px; overflow: hidden; font-family: weasyprint}
span {overflow-wrap: %s}
</style>
<body style="hyphens: auto;" lang="en">
<span>%s
''' % (wrap, text))
html, = page.children
body, = html.children
lines = []
for line in body.children:
box, = line.children
text_box, = box.children
lines.append(text_box.text)
lines_full_text = ''.join(line for line in lines)
assert test(len(lines))
assert full_text == lines_full_text
@assert_no_logs
@pytest.mark.parametrize(('span_css', 'expected_lines'), [
# overflow-wrap: anywhere and break-word are only allowed to break a word
# "if there are no otherwise-acceptable break points in the line", which
# means they should not split a word if it fits cleanly into the next line.
# This can be done accidentally if it is in its own inline element.
('overflow-wrap: anywhere', ['aaa', 'bbb']),
('overflow-wrap: break-word', ['aaa', 'bbb']),
# On the other hand, word-break: break-all mandates a break anywhere at the
# end of a line, even if the word could fit cleanly onto the next line.
('word-break: break-all', ['aaa b', 'bb']),
])
def test_wrap_overflow_word_break(span_css, expected_lines):
page, = render_pages('''
<style>
body {width: 80px; overflow: hidden; font-family: weasyprint}
span {%s}
</style>
<body>
<span>aaa </span><span>bbb
''' % span_css)
html, = page.children
body, = html.children
lines = body.children
lines = []
for line in body.children:
line_text = ''
for span_box in line.children:
line_text += span_box.children[0].text
lines.append(line_text)
assert lines == expected_lines
@assert_no_logs
@pytest.mark.parametrize(('wrap', 'text', 'body_width', 'expected_width'), [
('anywhere', 'aaaaaa', 10, 20),
('anywhere', 'aaaaaa', 40, 40),
('break-word', 'aaaaaa', 40, 120),
('normal', 'aaaaaa', 40, 120),
])
def test_overflow_wrap_2(wrap, text, body_width, expected_width):
page, = render_pages('''
<style>
body {width: %dpx; font-family: weasyprint; font-size: 20px}
table {overflow-wrap: %s}
</style>
<table><tr><td>%s''' % (body_width, wrap, text))
html, = page.children
body, = html.children
table_wrapper, = body.children
table, = table_wrapper.children
row_group, = table.children
tr, = row_group.children
td, = tr.children
assert td.width == expected_width
@assert_no_logs
@pytest.mark.parametrize(('wrap', 'text', 'body_width', 'expected_width'), [
('anywhere', 'aaaaaa', 10, 20),
('anywhere', 'aaaaaa', 40, 40),
('break-word', 'aaaaaa', 40, 120),
('normal', 'abcdef', 40, 120),
])
def test_overflow_wrap_trailing_space(wrap, text, body_width, expected_width):
page, = render_pages('''
<style>
body {width: %dpx; font-family: weasyprint; font-size: 20px}
table {overflow-wrap: %s}
</style>
<table><tr><td>%s ''' % (body_width, wrap, text))
html, = page.children
body, = html.children
table_wrapper, = body.children
table, = table_wrapper.children
row_group, = table.children
tr, = row_group.children
td, = tr.children
assert td.width == expected_width
def test_overflow_wrap_no_break_on_space():
# Regression test for #1817.
page, = render_pages('''
<style>
body {width: 11px; font-family: weasyprint; font-size: 2px;
overflow-wrap: anywhere}
</style>.jpg, .png''')
html, = page.children
body, = html.children
line1, line2 = body.children
text1, = line1.children
assert text1.text == '.jpg,'
text2, = line2.children
assert text2.text == '.png'
def test_line_break_before_trailing_space():
# Regression test for #1852.
page, = render_pages('''
<p style="display: inline-block">test\u2028 </p>a
<p style="display: inline-block">test\u2028</p>a
''')
html, = page.children
body, = html.children
line, = body.children
p1, space1, p2, space2 = line.children
assert p1.width == p2.width
def test_line_break_before_nested_trailing_space():
# Regression test for #2448.
page, = render_pages('''
<div style="font: 2px weasyprint; width: 6px">
AA <span><b><i>BBB</i></b> </span></div>
''')
html, = page.children
body, = html.children
div, = body.children
assert len(div.children) == 2
def white_space_lines(width, space):
page, = render_pages('''
<style>
body { font-size: 100px; width: %dpx }
span { white-space: %s }
</style>
<body><span>This + \n is text''' % (width, space))
html, = page.children
body, = html.children
return body.children
@assert_no_logs
def test_white_space_1():
line1, line2, line3, line4 = white_space_lines(1, 'normal')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This'
box2, = line2.children
text2, = box2.children
assert text2.text == '+'
box3, = line3.children
text3, = box3.children
assert text3.text == 'is'
box4, = line4.children
text4, = box4.children
assert text4.text == 'text'
@assert_no_logs
def test_white_space_2():
line1, line2 = white_space_lines(1, 'pre')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This + '
box2, = line2.children
text2, = box2.children
assert text2.text == ' is text'
@assert_no_logs
def test_white_space_3():
line1, = white_space_lines(1, 'nowrap')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This + is text'
@assert_no_logs
def test_white_space_4():
line1, line2, line3, line4, line5 = white_space_lines(1, 'pre-wrap')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This '
box2, = line2.children
text2, = box2.children
assert text2.text == '+ '
box3, = line3.children
text3, = box3.children
assert text3.text == ' '
box4, = line4.children
text4, = box4.children
assert text4.text == 'is '
box5, = line5.children
text5, = box5.children
assert text5.text == 'text'
@assert_no_logs
def test_white_space_5():
line1, line2, line3, line4 = white_space_lines(1, 'pre-line')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This'
box2, = line2.children
text2, = box2.children
assert text2.text == '+'
box3, = line3.children
text3, = box3.children
assert text3.text == 'is'
box4, = line4.children
text4, = box4.children
assert text4.text == 'text'
@assert_no_logs
def test_white_space_6():
line1, = white_space_lines(1000000, 'normal')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This + is text'
@assert_no_logs
def test_white_space_7():
line1, line2 = white_space_lines(1000000, 'pre')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This + '
box2, = line2.children
text2, = box2.children
assert text2.text == ' is text'
@assert_no_logs
def test_white_space_8():
line1, = white_space_lines(1000000, 'nowrap')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This + is text'
@assert_no_logs
def test_white_space_9():
line1, line2 = white_space_lines(1000000, 'pre-wrap')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This + '
box2, = line2.children
text2, = box2.children
assert text2.text == ' is text'
@assert_no_logs
def test_white_space_10():
line1, line2 = white_space_lines(1000000, 'pre-line')
box1, = line1.children
text1, = box1.children
assert text1.text == 'This +'
box2, = line2.children
text2, = box2.children
assert text2.text == 'is text'
@assert_no_logs
def test_white_space_11():
# Regression test for #813.
page, = render_pages('''
<style>
pre { width: 0 }
</style>
<body><pre>This<br/>is text''')
html, = page.children
body, = html.children
pre, = body.children
line1, line2 = pre.children
text1, box = line1.children
assert text1.text == 'This'
assert box.element_tag == 'br'
text2, = line2.children
assert text2.text == 'is text'
@assert_no_logs
def test_white_space_12():
# Regression test for #813.
page, = render_pages('''
<style>
pre { width: 0 }
</style>
<body><pre>This is <span>lol</span> text''')
html, = page.children
body, = html.children
pre, = body.children
line1, = pre.children
text1, span, text2 = line1.children
assert text1.text == 'This is '
assert span.element_tag == 'span'
assert text2.text == ' text'
@assert_no_logs
@pytest.mark.parametrize(('value', 'width'), [
(8, 144), # (2 + (8 - 1)) * 16
(4, 80), # (2 + (4 - 1)) * 16
('3em', 64), # (2 + (3 - 1)) * 16
('25px', 41), # 2 * 16 + 25 - 1 * 16
# (0, 32), # See Layout.set_tabs
])
def test_tab_size(value, width):
page, = render_pages('''
<style>
pre { tab-size: %s; font-family: weasyprint }
</style>
<pre>a	a</pre>
''' % value)
html, = page.children
body, = html.children
paragraph, = body.children
line, = paragraph.children
assert line.width == width
@assert_no_logs
def test_text_transform():
page, = render_pages('''
<style>
p { text-transform: capitalize }
p+p { text-transform: uppercase }
p+p+p { text-transform: lowercase }
p+p+p+p { text-transform: full-width }
p+p+p+p+p { text-transform: none }
</style>
<p>hé lO1</p><p>hé lO1</p><p>hé lO1</p><p>hé lO1</p><p>hé lO1</p>
''')
html, = page.children
body, = html.children
p1, p2, p3, p4, p5 = body.children
line1, = p1.children
text1, = line1.children
assert text1.text == 'Hé LO1'
line2, = p2.children
text2, = line2.children
assert text2.text == 'HÉ LO1'
line3, = p3.children
text3, = line3.children
assert text3.text == 'hé lo1'
line4, = p4.children
text4, = line4.children
assert text4.text == '\uff48é\u3000\uff4c\uff2f\uff11'
line5, = p5.children
text5, = line5.children
assert text5.text == 'hé lO1'
@assert_no_logs
@pytest.mark.parametrize(
('original', 'transformed'), [
('abc def ghi', 'Abc Def Ghi'),
('AbC def ghi', 'AbC Def Ghi'),
('I’m SO cool', 'I’m SO Cool'),
('Wow.wow!wow', 'Wow.wow!wow'),
('!now not tomorrow', '!Now Not Tomorrow'),
('SUPER cool', 'SUPER Cool'),
('i 😻 non‑breaking characters', 'I 😻 Non‑breaking Characters'),
('3lite 3lite', '3lite 3lite'),
('one/two/three', 'One/two/three'),
('supernatural,super', 'Supernatural,super'),
('éternel αιώνια', 'Éternel Αιώνια'),
]
)
def test_text_transform_capitalize(original, transformed):
# Results are different for different browsers, we almost get the same
# results as Firefox, that’s good enough!
assert capitalize(original) == transformed
@assert_no_logs
def test_text_floating_pre_line():
# Regression test for #610.
page, = render_pages('''
<div style="float: left; white-space: pre-line">This is
oh this end </div>
''')
@assert_no_logs
@pytest.mark.parametrize(
('leader', 'content'), [
('dotted', '.'),
('solid', '_'),
('space', ' '),
('" .-"', ' .-'),
]
)
def test_leader_content(leader, content):
page, = render_pages('''
<style>div::after { content: leader(%s) }</style>
<div></div>
''' % leader)
html, = page.children
body, = html.children
div, = body.children
line, = div.children
after, = line.children
inline, = after.children
assert inline.children[0].text == content
@pytest.mark.xfail
@assert_no_logs
def test_max_lines():
page, = render_pages('''
<style>
@page {size: 10px 10px;}
p {
font-family: weasyprint;
font-size: 2px;
max-lines: 2;
}
</style>
<p>
abcd efgh ijkl
</p>
''')
html, = page.children
body, = html.children
p1, p2 = body.children
line1, line2 = p1.children
line3, = p2.children
text1, = line1.children
text2, = line2.children
text3, = line3.children
assert text1.text == 'abcd'
assert text2.text == 'efgh'
assert text3.text == 'ijkl'
@assert_no_logs
def test_continue():
page, = render_pages('''
<style>
@page {size: 10px 4px;}
div {
continue: discard;
font-family: weasyprint;
font-size: 2px;
}
</style>
<div>
abcd efgh ijkl
</div>
''')
html, = page.children
body, = html.children
p, = body.children
line1, line2 = p.children
text1, = line1.children
text2, = line2.children
assert text1.text == 'abcd'
assert text2.text == 'efgh'
@assert_no_logs
def test_first_letter_line_height():
page, = render_pages('''
<style>
p { font-family: weasyprint }
p:first-letter { line-height: 1; font-size: 20px }
</style>
<p>abc
''')
html, = page.children
body, = html.children
paragraph, = body.children
line, = paragraph.children
first_letter, _ = line.children
first_letter_text, = first_letter.children
assert first_letter_text.text == 'a'
assert first_letter_text.height == 20
@assert_no_logs
def test_first_letter_text_transform():
# Regression test for #1906.
page, = render_pages('''
<style>
p::first-letter { text-transform: uppercase }
</style>
<p>abc
''')
html, = page.children
body, = html.children
paragraph, = body.children
line, = paragraph.children
first_letter, next_text = line.children
first_letter_text, = first_letter.children
assert first_letter_text.text == 'A'
assert next_text.text == 'bc'
@assert_no_logs
def test_first_letter_nested():
page, = render_pages('''
<style>
body::first-letter { font-style: italic }
p::first-letter { font-weight: 700 }
</style>
<p>abc</p>
<p>abc</p>
''')
html, = page.children
body, = html.children
p1, p2 = body.children
line, = p1.children
first_letter, next_text = line.children
first_letter_text, = first_letter.children
assert first_letter_text.style['font_style'] == 'italic'
assert first_letter_text.style['font_weight'] == 700
assert next_text.style['font_style'] == 'normal'
assert next_text.style['font_weight'] == 400
line, = p2.children
first_letter, next_text = line.children
first_letter_text, = first_letter.children
assert first_letter_text.style['font_style'] == 'normal'
assert first_letter_text.style['font_weight'] == 700
assert next_text.style['font_style'] == 'normal'
assert next_text.style['font_weight'] == 400
@assert_no_logs
def test_first_line_line_height():
page, = render_pages('''
<style>
p { font-family: weasyprint }
p:first-line { line-height: 1; font-size: 20px }
</style>
<p>abc<br>def
''')
html, = page.children
body, = html.children
paragraph, = body.children
line1, line2 = paragraph.children
first_line_box, = line1.children
first_line_text, br = first_line_box.children
assert first_line_text.text == 'abc'
assert first_line_text.height == 20
@assert_no_logs
def test_first_line_text_transform():
page, = render_pages('''
<style>
p::first-line { text-transform: uppercase }
</style>
<p>abc<br>def
''')
html, = page.children
body, = html.children
paragraph, = body.children
line1, line2 = paragraph.children
first_line_box, = line1.children
first_line_text, br = first_line_box.children
assert first_line_text.text == 'ABC'
next_line_text, = line2.children
assert next_line_text.text == 'def'
@assert_no_logs
def test_first_line_nested():
page, = render_pages('''
<style>
body::first-line { font-style: italic }
p::first-line { font-weight: 700 }
</style>
<p>abc<br>def</p>
<p>abc<br>def</p>
''')
html, = page.children
body, = html.children
p1, p2 = body.children
line1, line2 = p1.children
first_line_box, = line1.children
first_line_text, br = first_line_box.children
assert first_line_text.style['font_style'] == 'italic'
assert first_line_text.style['font_weight'] == 700
next_line_text, = line2.children
assert next_line_text.style['font_style'] == 'normal'
assert next_line_text.style['font_weight'] == 400
line1, line2 = p2.children
first_line_box, = line1.children
first_line_text, br = first_line_box.children
assert first_line_text.style['font_style'] == 'normal'
assert first_line_text.style['font_weight'] == 700
next_line_text, = line2.children
assert next_line_text.style['font_style'] == 'normal'
assert next_line_text.style['font_weight'] == 400
@assert_no_logs
def test_first_line_first_letter():
page, = render_pages('''
<style>
p::first-letter { font-style: italic }
p::first-line { font-weight: 700 }
</style>
<p>abc<br>def</p>
''')
html, = page.children
body, = html.children
paragraph, = body.children
line1, line2 = paragraph.children
first_line_box, = line1.children
first_letter_box, first_line_text, br = first_line_box.children
first_letter_text, = first_letter_box.children
assert first_letter_text.style['font_style'] == 'italic'
assert first_letter_text.style['font_weight'] == 700
assert first_line_text.style['font_style'] == 'normal'
assert first_line_text.style['font_weight'] == 700
next_line_text, = line2.children
assert next_line_text.style['font_style'] == 'normal'
assert next_line_text.style['font_weight'] == 400
|