cascade_tools.py
Cascade Tools This module is a set of tools to determine CSS as applied through inheritance and the cascade.
The goal is to use the DOM, inheritance, and the cascade, to determine all styles applied to every element on the page.
With that, it scans each stylesheet and applies each style one at a time to all elements and their children (if applicable) of a page.
CSSAppliedTree
a tree of an HTML document with all styles applied.
The point is to identify every element and the styles applied to that element based on inheritance and specificity rules (like you would see in the inspector)
We'll use an Element object for storing the tree. Each node is an element (starting at HTML) and a optionally a list of attributes as individual key value pairs. Each node has 1 or more children (their nested elements).
In addition, each node has a list of computed rules.
Attributes:
Name | Type | Description |
---|---|---|
soup |
BeautifulSoup
|
a bs4 object representing the page |
file_path |
str
|
path to the file as a string. |
stylesheets |
list of all stylesheet objects applied to the page. |
|
root |
Element
|
the root node of the document (the HTML element). |
children |
list
|
a list of all child elements of the doc (minus the title tag). |
Source code in webcode_tk/cascade_tools.py
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 |
|
__adjust_child_colors(child, ruleset, filename, applied_by='default')
adjusts colors for child of an element.
A parent element already had styles applied, so we only need to check to see if the child element is a link or not (as well as the selector) and check the specificity of the ruleset.
To help with background colors, we need to know where it was applied from (name of tag) - that way we can check if a declaration was applied by one of the tag's parents. If it was, then we apply that color by context taking the background from the nearest parent.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
child
|
Element
|
the child element in question |
required |
ruleset
|
dict
|
the CSS rule being applied |
required |
filename
|
str
|
name of the file where the styles came from |
required |
applied_from
|
the name of the element that was targetted |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
__adjust_colors(element, ruleset, filename, applied_by='default', selector_src='', parent=None)
recursively adjust color where necessary to all elements that apply.
Step 1: recursively search through children until we find an element where the selector applies (both by selector and by specificity).
Step 2: if we find a selector that applies, apply changes to element AND all children that have same or lower specificity except a link (unless the selector is a link)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
element
|
Element
|
the element in question. |
required |
ruleset
|
dict
|
the ruleset we want to apply. |
required |
filename
|
str
|
the file where the styles came from. |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
__adjust_font_size(element)
looks for rules that apply and then adjusts accordingly
Parameters:
Name | Type | Description | Default |
---|---|---|---|
element
|
Element
|
the Element object we wish to adjust. |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
__adjust_largeness()
sets the is_large property based on whether it's bold or not and the computed font size.
Source code in webcode_tk/cascade_tools.py
869 870 871 872 873 874 875 876 |
|
__apply_colors()
applies all color rules to any elements targeted by styles.
This includes by the cascade and by applying specificity. We'll loop through all color styles applied from the stylesheets.
After all styles have been applied, do one last check to see if anything wasn't applied, and then apply the default colors.
Source code in webcode_tk/cascade_tools.py
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 |
|
__apply_global_colors(element, global_colors, filename='user-agent')
recursively apply global colors to all elements except color on links (they remain default)
base case is an element with no children
Parameters:
Name | Type | Description | Default |
---|---|---|---|
element
|
Element
|
the tag we are applying colors to. |
required |
global_colors
|
list
|
a list of global color data. |
required |
filename
|
the stylesheet where the global styles come from. |
'user-agent'
|
Source code in webcode_tk/cascade_tools.py
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 |
|
__build_tree()
Constructs initial tree (recursively?)
Source code in webcode_tk/cascade_tools.py
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 |
|
__calculate_root_font_size()
checks stylesheets for global font-size settings and adjusts
Source code in webcode_tk/cascade_tools.py
759 760 761 762 763 764 765 766 767 768 769 770 771 772 |
|
__get_children(element, soup_contents)
gets all children of the element and their children from the soup
The soup refers to the bs4 (Beautiful Soup) of the HTML element.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
element
|
Element
|
the parent element. |
required |
soup_contents
|
list
|
a list of all items in the bs4 soup |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
__get_filename()
Extracts filename from path
Source code in webcode_tk/cascade_tools.py
749 750 751 752 753 |
|
__get_soup(path)
Gets bs4 soup from the file path
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str
|
the relative file path to the html document |
required |
Source code in webcode_tk/cascade_tools.py
741 742 743 744 745 746 747 |
|
__set_global_colors()
sets global colors to the body element.
This loops through all stylesheets, and at each iteration, it checks specificity, and if the global colors beat previous specificity, they get applied. The last of the styles to be applied win, and we return the body element with global colors applied.
Returns:
Name | Type | Description |
---|---|---|
body |
Element
|
the Body element with global colors applied. |
Source code in webcode_tk/cascade_tools.py
925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 |
|
can_inherit_styles(element, selector, ruleset)
returns whether element can get styles through inheritance.
Descendant elements may inherit styles, but only under certain conditions: The element is not a link (or it is a link but the selector is selecting it also by type, class, or id). The element has not had other styles applied to it.
There may be more, but this is it for now.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
element
|
Element
|
the tag that is a descendant of another tag targetted by the selector. |
required |
selector
|
str
|
the selector in question. |
required |
ruleset
|
dict
|
the ruleset dictionary (the key is the selector, and the value is the declaration block). |
required |
Returns:
Name | Type | Description |
---|---|---|
can_inherit |
bool
|
whether the element should get the inherited styles or not. |
Source code in webcode_tk/cascade_tools.py
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 |
|
extract_selectors(element)
Get background color and color selectors
Source code in webcode_tk/cascade_tools.py
854 855 856 857 858 859 860 861 862 863 864 865 866 867 |
|
targets_body(ruleset)
returns whether the ruleset is targetting the body or not.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ruleset
|
dict
|
a dictionary of selectors and their declaration blocks. |
required |
Returns:
Name | Type | Description |
---|---|---|
body_in_ruleset |
bool
|
whether body is in one of the selectors. |
Source code in webcode_tk/cascade_tools.py
910 911 912 913 914 915 916 917 918 919 920 921 922 923 |
|
verify_weight(element, property, rule)
verifies whether font weight is set to bold.
Source code in webcode_tk/cascade_tools.py
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 |
|
Element
Bases: object
an element object for each tag in a web page
This will be used by the CSSAppliedTree to represent the DOM of a web page and will contain the computed CSS styles based on the styesheet.
A NOTE on background color: background color is not applied through inheritance. By default, without being set, the background of all elements is white (or technically, it's transparent). All elements have a transparent background (and there is no inheritance).
It is applied through one of two methods: 1. when directly applied to the element 2. through the context of a container element
For example, if the background color of body is set using an ID selector, and a table inside the body has a different background color set using a type selector, even though the table's background has a lower specificity, it will be applied because there is no inheritance and therefore no specificity to consider.
Therefore, the applied_by will be either "context" or "applied" Attributes: name (str): name of the element. children (list): any Elements nested in the tag. attributes (list): a list of attributes as dictionaries. parent (str): the direct parent of the element. ancestors (list): a list of all ancestors (in order of the appearance in the DOM)
Source code in webcode_tk/cascade_tools.py
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 |
|
__build_contrast_report(hexc, hexbg)
creates a full contrast report for Element.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hexc
|
str
|
the hex code for the color value. |
required |
hexbg
|
str
|
the hex code for the background color. |
required |
Source code in webcode_tk/cascade_tools.py
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 |
|
__build_visited_contrast_report(hexc, hexbg)
builds contrast report for visited color settings.
This applies only for anchor tags as they are the only ones with a visited property.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hexc
|
str
|
the hex code for the color value. |
required |
hexbg
|
str
|
the hex code for the background color. |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
__set_direct_text(contents)
get only text not in a tag
Source code in webcode_tk/cascade_tools.py
173 174 175 176 177 178 179 180 181 |
|
ammend_bg_color(bg_color, new_selector, new_specificity, filename)
ammends the bg color based on the selector and specficity.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bg_color
|
str
|
the new bg color value. |
required |
new_selector
|
str
|
the new selector. |
required |
new_specificity
|
str
|
the specificity of the new selector. |
required |
filename
|
str
|
the name of the file that is applying the styles. |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
ammend_color_styles(new_styles, filename)
adjust color styles based on specificity.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
new_styles
|
dict
|
the new styles we want to apply. |
required |
filename
|
str
|
the stylesheet the styles came from. |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
apply_background_color(selector, property, val, old_specificity, new_specificity, filename)
Applies background color by context or directly.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
selector
|
str
|
the selector of the new styles. |
required |
property
|
str
|
the property of the new styles. |
required |
val
|
str
|
the value of the new styles. |
required |
old_specificity
|
str
|
the specificity rank of styles currently in use. |
required |
new_specificity
|
str
|
the specificity of the new selector. |
required |
filename
|
str
|
the file (html or css) that applied the styles. |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
been_applied(property)
has this property already had a style directly applied?
Parameters:
Name | Type | Description | Default |
---|---|---|---|
property
|
str
|
the property in question. |
required |
Returns:
Name | Type | Description |
---|---|---|
applied |
bool
|
whether it has had a style applied or not. |
Source code in webcode_tk/cascade_tools.py
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 |
|
change_child_styles(selector, property, val, new_specificity, filename)
changes child styles based on inheritance.
Styles were changed by an ancestor, so we are passing down styles through inheritance, and so we must only change styles if they weren't already set directly.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
selector
|
str
|
selector being used. |
required |
property
|
str
|
property being passed down. |
required |
val
|
str
|
value being passed down |
required |
new_specificity
|
str
|
in case it matters (selector should also be targetting in some way). |
required |
filename
|
str
|
the file where the styles came from. |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
change_styles(selector, declaration, new_specificity, filename)
change styles and apply them to all descendants
Parameters:
Name | Type | Description | Default |
---|---|---|---|
selector
|
str
|
the selector used to make a change |
required |
declaration
|
str
|
the declaration (property and value) |
required |
new_specificity
|
str
|
the specificity value of the selector |
required |
filename
|
str
|
file where the styles come from. |
required |
Source code in webcode_tk/cascade_tools.py
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 |
|
directly_targets(selector)
returns whether selector directly targets tag.
Checks all possible selector types
Parameters:
Name | Type | Description | Default |
---|---|---|---|
selector
|
str
|
the selector in question. |
required |
Returns:
Name | Type | Description |
---|---|---|
targets |
bool
|
a boolean value (does the selector target the tag?) |
Source code in webcode_tk/cascade_tools.py
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 |
|
get_contrast_data(type='default')
get color contrast for the type specified
contrast data could be for one of three possibile types: * default: this is when all elements get their default values, * standard: this is for checking contrast between color and background color, * hover: for the hover pseudoselector - could be applied to any element (not just hyperlinks) * visited: for visited links
Parameters:
Name | Type | Description | Default |
---|---|---|---|
type
|
the type of color contrast. |
'default'
|
Source code in webcode_tk/cascade_tools.py
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 |
|
__get_element_by_id(id)
returns element from id.
This is created to retrieve an element by its ID. The necessity was born out of trying to ascertain whether a descendant selector applies to an element while avoiding a recursive tree search through the DOM.
Since a descendant selector could be using any type of selector
(example: #main .nav ul a:hover {}
), then just knowing the name
is not enough.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id
|
int
|
the memory address of the element object. |
required |
Returns:
Name | Type | Description |
---|---|---|
element |
Element
|
the element object. |
Source code in webcode_tk/cascade_tools.py
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 |
|
attribute_selector_applies(element, selector)
determines if the attribute selector applies or not.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
element
|
Element
|
the element in question. |
required |
selector
|
str
|
the attribute selector in question. |
required |
Returns:
Name | Type | Description |
---|---|---|
applies |
bool
|
a bool representing whether the attribute selector applies or not. |
Source code in webcode_tk/cascade_tools.py
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 |
|
descendant_selector_applies(element, sel)
checks all ancestors to see if the descendant selector applies.
First, we need to check the last component of the descendant selector to see if it applies to the element in question. If so, continue. If not, return with a False.
If the element has a match, then we need to check each tag leading up to our element in question. According to the article by Pavel Panchekha, "What is the Complexity of Selector Matching?" we should start at the top of the DOM and work our way down.
Source code in webcode_tk/cascade_tools.py
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 |
|
does_selector_apply(element, selector)
returns whether the selector applies to the element.
Since the selector could be a grouped selector, we might have to loop through all selectors in the grouped selector. For that reason, grouped selectors, will be converted to a list of selectors, and non-grouped selectors will be placed in a list.
From there, we will loop through the list of selectors and check for type, class, id, and any other selectors in our list of regex expressions from the css library. With that information, we can then check to see if it applies to the tag or not.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
element
|
Element
|
the element we are checking. |
required |
selector
|
str
|
the selector in question. |
required |
Returns:
Name | Type | Description |
---|---|---|
applies |
bool
|
whether the selector actually applies to the element. |
Source code in webcode_tk/cascade_tools.py
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 |
|
get_color_contrast_details(tree, rating='AAA')
returns a list of all failures or a pass based on rating
We'll create a recursive inner nested function to traverse the DOM. We will target all elements, and then report on number of errors triggered by each selector to help avoid overwhelming the user with too many errors.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tree
|
CSSAppliedTree
|
the cascade tree for a single file. |
required |
rating
|
the rating of contrast we check for (AAA or AA). The default is AAA. |
'AAA'
|
Returns: results
Source code in webcode_tk/cascade_tools.py
1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 |
|
get_color_contrast_report(dir_path, rating='AAA')
returns a list of all failures or a pass based on rating
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dir_path
|
str
|
the path to the directory in question |
required |
rating
|
the rating of contrast we check for (AAA or AA). The default is AAA. |
'AAA'
|
Returns: results: a list of pass or fail messages.
Source code in webcode_tk/cascade_tools.py
1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 |
|
get_color_contrast_results(element, results, min_regular='AAA')
returns a list of color contrast results for all elements in a file.
Recursively searches through the css_tree of HTML elements looking to determine whether the element is normal or large in size, and whether it passes the AIM color contrast goals.
The minimum passing level could be either at an AAA or AA level (according to the WebAIM Color Contrast Checker). Be default we'll look for AAA sizes to see if they pass. WebAim Contrast Checker
Calculating whether an element qualifies as large depends on the styles applied. The CSSAppliedTree and Element objects now support computed font size as well as whether each Element object is large or not based on the description in the WebAim Contrast Checker.
It states, "Large text is defined as 14 point (typically 18.66px) and bold or larger, or 18 point (typically 24px) or larger."
Parameters:
Name | Type | Description | Default |
---|---|---|---|
css_tree
|
the css tree of color styles for a particular file. |
required | |
min_regular
|
the minimum passing size ('AAA' or 'AA') for color contrast for normal sized elements (anything except h1-h4). |
'AAA'
|
Returns:
Name | Type | Description |
---|---|---|
results |
dict
|
a dictionary of color contrast results for each element in the file. |
Source code in webcode_tk/cascade_tools.py
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 |
|
is_selector_pseudoclass(selector)
returns whether selector is a pseudoclass selector.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
selector
|
str
|
the selector in question. |
required |
Returns:
Name | Type | Description |
---|---|---|
is_pseudo_class_selector |
bool
|
whether the selector is a psuedoclass or not. |
Source code in webcode_tk/cascade_tools.py
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 |
|
targets_element_directly(element, selector)
returns whether selector targets element directly.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
element
|
Element
|
the element we are checking. |
required |
selector
|
str
|
the selector in question. |
required |
Returns: targets: whether the selector targets the element directly.
Source code in webcode_tk/cascade_tools.py
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 |
|
update_contrast_results(results, tag, is_large, contrast_data, min_regular)
updates the results of color contrast for the tag.
we've updated this to match whether the element computes as large or not based on the WebAIM Color Contrast page which states, 'Large text is defined as 14 point (typically 18.66px) and bold or larger, or 18 point (typically 24px) or larger.'
Parameters:
Name | Type | Description | Default |
---|---|---|---|
results
|
dict
|
the overall results we want to adjust. |
required |
tag
|
str
|
the element we want to adjust. |
required |
is_large
|
bool
|
whether the element is considered large. |
required |
contrast_data
|
dict
|
the contrast results for the tag. |
required |
min_regular
|
str
|
the minimum level required for standard text passing. |
required |
Returns:
Name | Type | Description |
---|---|---|
results |
dict
|
adjusted results after processing contrast data. |
Source code in webcode_tk/cascade_tools.py
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 |
|