Skip to content

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
class 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:
        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).
    """

    def __init__(self, path: str, stylesheets: list):
        self.soup = None
        self.file_path = path
        self.stylesheets = stylesheets
        self.root = None
        self.root_font_size = 16.0
        self.children = []
        self.font_rules = []
        self.__get_filename()
        self.__get_soup(path)
        self.__get_font_rules()
        self.__calculate_root_font_size()
        self.__build_tree()
        self.__adjust_largeness()
        self.__apply_colors()

    def __get_soup(self, path: str):
        """Gets bs4 soup from the file path

        Args:
            path: the relative file path to the html document
        """
        self.soup = html_tools.get_html(path)

    def __get_filename(self):
        """Extracts filename from path"""
        if isinstance(self.file_path, dict):
            self.file_path = self.file_path.get("file")
        self.filename = clerk.get_file_name(self.file_path)

    def __get_font_rules(self):
        for sheet in self.stylesheets:
            self.font_rules += css.get_all_font_rules(sheet)

    def __calculate_root_font_size(self):
        """checks stylesheets for global font-size settings and adjusts"""
        for sheet in self.stylesheets:
            font_rules = css.get_all_font_rules(sheet)
            for rule in font_rules:
                selector = rule[0]
                is_global = selector in ("body", "html", "*")
                not_at_rule = not rule[1].get("at_rule")
                is_size_property = rule[1].get("property") == "font-size"
                if is_global and is_size_property and not_at_rule:
                    value = rule[1].get("value")
                    size, unit = fonts.split_value_unit(value)
                    computed_value = fonts.compute_font_size(size, unit)
                    self.root_font_size = computed_value

    def __build_tree(self) -> None:
        """Constructs initial tree (recursively?)"""
        # Start with the body element, and divide and conquer
        root = Element("html")
        self.root = root
        root_id = id(root)
        parent_bg = root.background_color.get("value")
        body = Element(
            "body",
            parent=["html", root_id, parent_bg],
            parent_size=root_font_size,
        )
        body.parent_size = body.font_size
        self.children.append(body)
        body_soup = self.soup.body
        attributes = body_soup.attrs
        if attributes:
            body.attributes = attributes.items()
        self.compute_font_size(body)
        children = body_soup.contents
        self.__get_children(body, children)

    def __get_children(self, element: Element, soup_contents: list) -> None:
        """gets all children of the element and their children from the soup

        The soup refers to the bs4 (Beautiful Soup) of the HTML element.

        Args:
            element: the parent element.
            soup_contents: a list of all items in the bs4 soup
        """
        contents = []
        for child in soup_contents:
            if isinstance(child, str):
                continue
            contents.append(child)

        for tag in contents:
            tag_name = tag.name
            if tag_name == "script":
                continue
            tag_children = tag.contents
            tag_attributes = tag.attrs
            parent = [element.name, id(element)]
            new_element = Element(
                tag_name,
                attributes=tag_attributes,
                parent=parent,
                parent_size=element.font_size,
                ancestors=element.ancestors,
                tag_contents=tag.contents,
            )
            self.__adjust_font_size(new_element)
            element.children.append(new_element)
            for item in tag_children:
                if item and not isinstance(item, str):
                    their_kids = item.contents
                    kids_attributes = item.attrs
                    if kids_attributes:
                        kid_element = Element(
                            item.name,
                            attributes=kids_attributes,
                            parent=[new_element.name, id(new_element)],
                            parent_size=new_element.font_size,
                            ancestors=new_element.ancestors,
                            tag_contents=item.contents,
                        )
                    else:
                        kid_element = Element(
                            item.name,
                            parent=[new_element.name, id(new_element)],
                            parent_size=new_element.font_size,
                            ancestors=new_element.ancestors,
                            tag_contents=item.contents,
                        )
                    self.__adjust_font_size(kid_element)
                    new_element.children.append(kid_element)
                    self.__get_children(kid_element, their_kids)
        return

    def extract_selectors(self, element):
        """Get background color and color selectors"""
        bg_data = ""
        col_data = ""
        if isinstance(element, Element):
            if element.background_color.get("selector"):
                bg_color = element.background_color.get("value")
                bg_selector = element.background_color.get("selector")
                bg_data = f"bg: {bg_color} selector: {bg_selector}"
            if element.color.get("selector"):
                color = element.color.get("value")
                col_selector = element.color.get("selector")
                col_data = f"color: {color} selector: {col_selector}"
        return bg_data, col_data

    def __adjust_largeness(self) -> None:
        """sets the is_large property based on whether it's bold or not
        and the computed font size.
        """
        for child in self.children:
            self.set_is_large(child)
            for kid in child.children:
                self.set_is_large(kid)

    def set_is_large(self, element):
        size = element.font_size
        is_bold = element.is_bold
        is_large = fonts.is_large_text(size, is_bold)
        element.is_large = is_large
        if element.children:
            for kiddo in element.children:
                self.set_is_large(kiddo)

    def __apply_colors(self) -> None:
        """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."""
        body = self.__set_global_colors()
        for sheet in self.stylesheets:
            color_rules = sheet.color_rulesets
            for ruleset in color_rules:
                # get filename
                filename = clerk.get_file_name(sheet.href)
                selector_source = ""
                if body.name == "body":
                    selector_source = "body"
                else:
                    input("Wait, what?")
                self.__adjust_colors(
                    body, ruleset, filename, selector_src=selector_source
                )

    def targets_body(self, ruleset: dict) -> bool:
        """returns whether the ruleset is targetting the body or not.

        Args:
            ruleset: a dictionary of selectors and their declaration blocks.

        Returns:
            body_in_ruleset: whether body is in one of the selectors.
        """
        body_in_ruleset = False
        for selector in list(ruleset.keys()):
            if "body" in selector:
                body_in_ruleset = True
        return body_in_ruleset

    def __set_global_colors(self) -> Element:
        """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:
            body: the Body element with global colors applied.
        """
        body = None
        for sheet in self.stylesheets:
            global_colors = css.get_global_color_details(sheet.rulesets)
            body = self.children[0]
            filename = clerk.get_file_name(sheet.href)
            if global_colors:
                self.__apply_global_colors(body, global_colors, filename)
        return body

    def __apply_global_colors(
        self, element: Element, global_colors: list, filename="user-agent"
    ) -> None:
        """recursively apply global colors to all elements
        except color on links (they remain default)

        base case is an element with no children

        Args:
            element: the tag we are applying colors to.
            global_colors: a list of global color data.
            filename: the stylesheet where the global styles come from."""
        # first apply styles with specificity
        if not isinstance(global_colors, list):
            global_colors = [global_colors]
        for gc in global_colors:
            selector = gc.get("selector")
            specificity = css.get_specificity(selector)
            gc["specificity"] = specificity
            element.ammend_color_styles(gc, filename)

            # loop through all children and call
            children = element.children
            for child in children:
                self.__apply_global_colors(child, gc)
        return

    def __adjust_colors(
        self,
        element: Element,
        ruleset: dict,
        filename: str,
        applied_by="default",
        selector_src="",
        parent=None,
    ) -> 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)

        Args:
            element: the element in question.
            ruleset: the ruleset we want to apply.
            filename: the file where the styles came from."""
        # If there is a parent, it's a good time to adjust the direct ancestor
        if parent:
            bg_sel, col_sel = self.extract_selectors(parent)
            direct_ancestor = element.ancestors[-1]
            if len(direct_ancestor) == 2:
                direct_ancestor.append("")
            if len(direct_ancestor) == 3:
                direct_ancestor.append(bg_sel)
                direct_ancestor.append(col_sel)
            elif len(direct_ancestor) == 4:
                direct_ancestor[-1] = bg_sel
                direct_ancestor.append(col_sel)
            elif len(direct_ancestor) == 5:
                direct_ancestor[-2] = bg_sel
                direct_ancestor[-1] = col_sel

        # Adjust colors if necessary - if there was a change,
        # adjust colors for children
        selector = list(ruleset.keys())[0]

        # does the selector apply to the element?
        selector_applies = False
        specificity = css.get_specificity(selector)
        declaration = list(ruleset.values())[0]
        property = list(declaration.keys())[0]
        is_background_prop = "background" in property
        if is_background_prop:
            old_specificity = element.background_color.get("specificity")
        else:
            old_specificity = element.color.get("specificity")
        applies = does_selector_apply(element, selector)
        selector_applies = (specificity >= old_specificity) and applies
        if selector_applies:
            if is_background_prop:
                value = declaration.get("background-color")
                if not value:
                    value = declaration.get("background")
                if property == "background-image":
                    value = declaration.get("background-image")
                element.apply_background_color(
                    selector,
                    property,
                    value,
                    old_specificity,
                    specificity,
                    filename,
                )
            else:
                if ":hover" in selector:
                    color = element.hover_color
                elif ":visited" in selector:
                    color = element.visited_color
                else:
                    color = element.color
                color["value"] = declaration.get("color")
                color["sheet"] = filename
                color["selector"] = selector
                color["specificity"] = specificity
                color["applied_by"] = "directly"
            for child in element.children:
                element_name = element.name
                self.__adjust_child_colors(
                    child, ruleset, filename, element_name
                )
        can_inherit = self.can_inherit_styles(element, selector, ruleset)
        if can_inherit and applies:
            declaration = ruleset.get(selector)
            new_specificity = css.get_specificity(selector)
            element.change_styles(
                selector, declaration.copy(), new_specificity, filename
            )
        for child in element.children:
            self.__adjust_colors(child, ruleset, filename, parent=element)

    def __adjust_child_colors(
        self,
        child: Element,
        ruleset: dict,
        filename: str,
        applied_by="default",
    ) -> None:
        """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.

        Args:
            child: the child element in question
            ruleset: the CSS rule being applied
            filename: name of the file where the styles came from
            applied_from: the name of the element that was targetted
        """
        # First adjust direct ancestor

        # Adjust colors if necessary - if there was a change,
        # adjust colors for children
        selector = list(ruleset.keys())[0]
        is_link_selector = css.is_link_selector(selector)
        element_name = child.name
        can_inherit = (
            is_link_selector
            and element_name == "a"
            or not is_link_selector
            and element_name != "a"
        )
        if can_inherit:
            declaration = ruleset.get(selector)
            new_specificity = css.get_specificity(selector)
            child.change_styles(
                selector, declaration.copy(), new_specificity, filename
            )
        for kid in child.children:
            self.__adjust_child_colors(kid, ruleset, filename)

    def __adjust_font_size(self, element: Element) -> None:
        """looks for rules that apply and then adjusts accordingly

        Args:
            element: the Element object we wish to adjust.
        """
        ######################################################
        # WHat happens if we first change size to parent size?
        # element.font_size = element.parent_size
        ######################################################

        # loop through rules and if they apply, then adjust
        # adjust for all children
        for selector, rule in self.font_rules:
            selector_applies = does_selector_apply(element, selector)
            property = rule.get("property")
            if property == "font":
                is_valid_property = fonts.is_valid_shorthand(rule.get("value"))
                if not is_valid_property:
                    continue
            if property in ("font", "font-weight") and selector_applies:
                self.verify_weight(element, property, rule)
            adjusts_font_size = property in ("font", "font-size")
            not_at_rule = not rule.get("at_rule")
            if selector_applies and adjusts_font_size and not_at_rule:
                value = rule.get("value")
                val, unit = fonts.split_value_unit(value)
                computed_size = fonts.compute_font_size(
                    val, unit, element.parent_size, element.name
                )
                if computed_size != element.font_size:
                    element.font_size = computed_size
                    # recursively change font size on all children
                    for child in element.children:
                        child.font_size = computed_size

    def compute_font_size(self, element: Element, parent=None):
        for selector, rule in self.font_rules:
            selector_applies = does_selector_apply(element, selector)
            is_at_rule = bool(rule.get("at_rule"))
            if selector_applies and not is_at_rule:
                # get the other stuff and process
                property = rule.get("property")
                if property in ("font", "font-size"):
                    self.change_font_size(element, rule)

    def change_font_size(self, element, declaration):
        value = declaration.get("value")
        if element.name == "body":
            parent_size = element.font_size
            element.parent_size = element.font_size
        else:
            parent_size = element.parent_size
        size, unit = fonts.split_value_unit(value)
        computed_size = fonts.compute_font_size(
            size, unit, parent_size, element.name
        )
        element.font_size = computed_size

    def verify_weight(
        self, element: Element, property: str, rule: dict
    ) -> bool:
        """verifies whether font weight is set to bold."""
        is_bold = False
        value = rule.get("value")
        if property == "font":
            is_valid_shorthand = fonts.is_valid_shorthand(value)
            if is_valid_shorthand:
                is_bold = "bold" in value
        else:
            is_bold = "bold" in value
        if is_bold:
            element.is_bold = True

    def can_inherit_styles(
        self, element: Element, selector: str, ruleset: dict
    ) -> bool:
        """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.

        Args:
            element: the tag that is a descendant of another tag targetted
                by the selector.
            selector: the selector in question.
            ruleset: the ruleset dictionary (the key is the selector, and
                the value is the declaration block).

        Returns:
            can_inherit: whether the element should get the inherited
                styles or not."""
        can_inherit = False
        element_name = element.name
        # is it a link?
        if element_name == "a":
            is_link_selector = css.is_link_selector(selector)
            if is_link_selector:
                can_inherit = True
                return can_inherit
        selector_applies = does_selector_apply(element, selector)
        if selector_applies:
            can_inherit = True

        if can_inherit:
            # check to see how property has been changed.
            (declaration,) = ruleset.values()
            (property,) = declaration
            if "background" in property:
                applied_by = element.background_color.get("applied_by")
            else:
                applied_by = element.color.get("applied_by")
            if "selector" not in applied_by:
                can_inherit = True
        return can_inherit

__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
def __adjust_child_colors(
    self,
    child: Element,
    ruleset: dict,
    filename: str,
    applied_by="default",
) -> None:
    """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.

    Args:
        child: the child element in question
        ruleset: the CSS rule being applied
        filename: name of the file where the styles came from
        applied_from: the name of the element that was targetted
    """
    # First adjust direct ancestor

    # Adjust colors if necessary - if there was a change,
    # adjust colors for children
    selector = list(ruleset.keys())[0]
    is_link_selector = css.is_link_selector(selector)
    element_name = child.name
    can_inherit = (
        is_link_selector
        and element_name == "a"
        or not is_link_selector
        and element_name != "a"
    )
    if can_inherit:
        declaration = ruleset.get(selector)
        new_specificity = css.get_specificity(selector)
        child.change_styles(
            selector, declaration.copy(), new_specificity, filename
        )
    for kid in child.children:
        self.__adjust_child_colors(kid, ruleset, filename)

__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
def __adjust_colors(
    self,
    element: Element,
    ruleset: dict,
    filename: str,
    applied_by="default",
    selector_src="",
    parent=None,
) -> 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)

    Args:
        element: the element in question.
        ruleset: the ruleset we want to apply.
        filename: the file where the styles came from."""
    # If there is a parent, it's a good time to adjust the direct ancestor
    if parent:
        bg_sel, col_sel = self.extract_selectors(parent)
        direct_ancestor = element.ancestors[-1]
        if len(direct_ancestor) == 2:
            direct_ancestor.append("")
        if len(direct_ancestor) == 3:
            direct_ancestor.append(bg_sel)
            direct_ancestor.append(col_sel)
        elif len(direct_ancestor) == 4:
            direct_ancestor[-1] = bg_sel
            direct_ancestor.append(col_sel)
        elif len(direct_ancestor) == 5:
            direct_ancestor[-2] = bg_sel
            direct_ancestor[-1] = col_sel

    # Adjust colors if necessary - if there was a change,
    # adjust colors for children
    selector = list(ruleset.keys())[0]

    # does the selector apply to the element?
    selector_applies = False
    specificity = css.get_specificity(selector)
    declaration = list(ruleset.values())[0]
    property = list(declaration.keys())[0]
    is_background_prop = "background" in property
    if is_background_prop:
        old_specificity = element.background_color.get("specificity")
    else:
        old_specificity = element.color.get("specificity")
    applies = does_selector_apply(element, selector)
    selector_applies = (specificity >= old_specificity) and applies
    if selector_applies:
        if is_background_prop:
            value = declaration.get("background-color")
            if not value:
                value = declaration.get("background")
            if property == "background-image":
                value = declaration.get("background-image")
            element.apply_background_color(
                selector,
                property,
                value,
                old_specificity,
                specificity,
                filename,
            )
        else:
            if ":hover" in selector:
                color = element.hover_color
            elif ":visited" in selector:
                color = element.visited_color
            else:
                color = element.color
            color["value"] = declaration.get("color")
            color["sheet"] = filename
            color["selector"] = selector
            color["specificity"] = specificity
            color["applied_by"] = "directly"
        for child in element.children:
            element_name = element.name
            self.__adjust_child_colors(
                child, ruleset, filename, element_name
            )
    can_inherit = self.can_inherit_styles(element, selector, ruleset)
    if can_inherit and applies:
        declaration = ruleset.get(selector)
        new_specificity = css.get_specificity(selector)
        element.change_styles(
            selector, declaration.copy(), new_specificity, filename
        )
    for child in element.children:
        self.__adjust_colors(child, ruleset, filename, parent=element)

__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
def __adjust_font_size(self, element: Element) -> None:
    """looks for rules that apply and then adjusts accordingly

    Args:
        element: the Element object we wish to adjust.
    """
    ######################################################
    # WHat happens if we first change size to parent size?
    # element.font_size = element.parent_size
    ######################################################

    # loop through rules and if they apply, then adjust
    # adjust for all children
    for selector, rule in self.font_rules:
        selector_applies = does_selector_apply(element, selector)
        property = rule.get("property")
        if property == "font":
            is_valid_property = fonts.is_valid_shorthand(rule.get("value"))
            if not is_valid_property:
                continue
        if property in ("font", "font-weight") and selector_applies:
            self.verify_weight(element, property, rule)
        adjusts_font_size = property in ("font", "font-size")
        not_at_rule = not rule.get("at_rule")
        if selector_applies and adjusts_font_size and not_at_rule:
            value = rule.get("value")
            val, unit = fonts.split_value_unit(value)
            computed_size = fonts.compute_font_size(
                val, unit, element.parent_size, element.name
            )
            if computed_size != element.font_size:
                element.font_size = computed_size
                # recursively change font size on all children
                for child in element.children:
                    child.font_size = computed_size

__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
def __adjust_largeness(self) -> None:
    """sets the is_large property based on whether it's bold or not
    and the computed font size.
    """
    for child in self.children:
        self.set_is_large(child)
        for kid in child.children:
            self.set_is_large(kid)

__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
def __apply_colors(self) -> None:
    """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."""
    body = self.__set_global_colors()
    for sheet in self.stylesheets:
        color_rules = sheet.color_rulesets
        for ruleset in color_rules:
            # get filename
            filename = clerk.get_file_name(sheet.href)
            selector_source = ""
            if body.name == "body":
                selector_source = "body"
            else:
                input("Wait, what?")
            self.__adjust_colors(
                body, ruleset, filename, selector_src=selector_source
            )

__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
def __apply_global_colors(
    self, element: Element, global_colors: list, filename="user-agent"
) -> None:
    """recursively apply global colors to all elements
    except color on links (they remain default)

    base case is an element with no children

    Args:
        element: the tag we are applying colors to.
        global_colors: a list of global color data.
        filename: the stylesheet where the global styles come from."""
    # first apply styles with specificity
    if not isinstance(global_colors, list):
        global_colors = [global_colors]
    for gc in global_colors:
        selector = gc.get("selector")
        specificity = css.get_specificity(selector)
        gc["specificity"] = specificity
        element.ammend_color_styles(gc, filename)

        # loop through all children and call
        children = element.children
        for child in children:
            self.__apply_global_colors(child, gc)
    return

__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
def __build_tree(self) -> None:
    """Constructs initial tree (recursively?)"""
    # Start with the body element, and divide and conquer
    root = Element("html")
    self.root = root
    root_id = id(root)
    parent_bg = root.background_color.get("value")
    body = Element(
        "body",
        parent=["html", root_id, parent_bg],
        parent_size=root_font_size,
    )
    body.parent_size = body.font_size
    self.children.append(body)
    body_soup = self.soup.body
    attributes = body_soup.attrs
    if attributes:
        body.attributes = attributes.items()
    self.compute_font_size(body)
    children = body_soup.contents
    self.__get_children(body, children)

__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
def __calculate_root_font_size(self):
    """checks stylesheets for global font-size settings and adjusts"""
    for sheet in self.stylesheets:
        font_rules = css.get_all_font_rules(sheet)
        for rule in font_rules:
            selector = rule[0]
            is_global = selector in ("body", "html", "*")
            not_at_rule = not rule[1].get("at_rule")
            is_size_property = rule[1].get("property") == "font-size"
            if is_global and is_size_property and not_at_rule:
                value = rule[1].get("value")
                size, unit = fonts.split_value_unit(value)
                computed_value = fonts.compute_font_size(size, unit)
                self.root_font_size = computed_value

__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
def __get_children(self, element: Element, soup_contents: list) -> None:
    """gets all children of the element and their children from the soup

    The soup refers to the bs4 (Beautiful Soup) of the HTML element.

    Args:
        element: the parent element.
        soup_contents: a list of all items in the bs4 soup
    """
    contents = []
    for child in soup_contents:
        if isinstance(child, str):
            continue
        contents.append(child)

    for tag in contents:
        tag_name = tag.name
        if tag_name == "script":
            continue
        tag_children = tag.contents
        tag_attributes = tag.attrs
        parent = [element.name, id(element)]
        new_element = Element(
            tag_name,
            attributes=tag_attributes,
            parent=parent,
            parent_size=element.font_size,
            ancestors=element.ancestors,
            tag_contents=tag.contents,
        )
        self.__adjust_font_size(new_element)
        element.children.append(new_element)
        for item in tag_children:
            if item and not isinstance(item, str):
                their_kids = item.contents
                kids_attributes = item.attrs
                if kids_attributes:
                    kid_element = Element(
                        item.name,
                        attributes=kids_attributes,
                        parent=[new_element.name, id(new_element)],
                        parent_size=new_element.font_size,
                        ancestors=new_element.ancestors,
                        tag_contents=item.contents,
                    )
                else:
                    kid_element = Element(
                        item.name,
                        parent=[new_element.name, id(new_element)],
                        parent_size=new_element.font_size,
                        ancestors=new_element.ancestors,
                        tag_contents=item.contents,
                    )
                self.__adjust_font_size(kid_element)
                new_element.children.append(kid_element)
                self.__get_children(kid_element, their_kids)
    return

__get_filename()

Extracts filename from path

Source code in webcode_tk/cascade_tools.py
749
750
751
752
753
def __get_filename(self):
    """Extracts filename from path"""
    if isinstance(self.file_path, dict):
        self.file_path = self.file_path.get("file")
    self.filename = clerk.get_file_name(self.file_path)

__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
def __get_soup(self, path: str):
    """Gets bs4 soup from the file path

    Args:
        path: the relative file path to the html document
    """
    self.soup = html_tools.get_html(path)

__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
def __set_global_colors(self) -> Element:
    """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:
        body: the Body element with global colors applied.
    """
    body = None
    for sheet in self.stylesheets:
        global_colors = css.get_global_color_details(sheet.rulesets)
        body = self.children[0]
        filename = clerk.get_file_name(sheet.href)
        if global_colors:
            self.__apply_global_colors(body, global_colors, filename)
    return body

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
def can_inherit_styles(
    self, element: Element, selector: str, ruleset: dict
) -> bool:
    """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.

    Args:
        element: the tag that is a descendant of another tag targetted
            by the selector.
        selector: the selector in question.
        ruleset: the ruleset dictionary (the key is the selector, and
            the value is the declaration block).

    Returns:
        can_inherit: whether the element should get the inherited
            styles or not."""
    can_inherit = False
    element_name = element.name
    # is it a link?
    if element_name == "a":
        is_link_selector = css.is_link_selector(selector)
        if is_link_selector:
            can_inherit = True
            return can_inherit
    selector_applies = does_selector_apply(element, selector)
    if selector_applies:
        can_inherit = True

    if can_inherit:
        # check to see how property has been changed.
        (declaration,) = ruleset.values()
        (property,) = declaration
        if "background" in property:
            applied_by = element.background_color.get("applied_by")
        else:
            applied_by = element.color.get("applied_by")
        if "selector" not in applied_by:
            can_inherit = True
    return can_inherit

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
def extract_selectors(self, element):
    """Get background color and color selectors"""
    bg_data = ""
    col_data = ""
    if isinstance(element, Element):
        if element.background_color.get("selector"):
            bg_color = element.background_color.get("value")
            bg_selector = element.background_color.get("selector")
            bg_data = f"bg: {bg_color} selector: {bg_selector}"
        if element.color.get("selector"):
            color = element.color.get("value")
            col_selector = element.color.get("selector")
            col_data = f"color: {color} selector: {col_selector}"
    return bg_data, col_data

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
def targets_body(self, ruleset: dict) -> bool:
    """returns whether the ruleset is targetting the body or not.

    Args:
        ruleset: a dictionary of selectors and their declaration blocks.

    Returns:
        body_in_ruleset: whether body is in one of the selectors.
    """
    body_in_ruleset = False
    for selector in list(ruleset.keys()):
        if "body" in selector:
            body_in_ruleset = True
    return body_in_ruleset

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
def verify_weight(
    self, element: Element, property: str, rule: dict
) -> bool:
    """verifies whether font weight is set to bold."""
    is_bold = False
    value = rule.get("value")
    if property == "font":
        is_valid_shorthand = fonts.is_valid_shorthand(value)
        if is_valid_shorthand:
            is_bold = "bold" in value
    else:
        is_bold = "bold" in value
    if is_bold:
        element.is_bold = True

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
class Element(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)
    """

    def __init__(
        self,
        name=None,
        children=None,
        attributes=None,
        parent=None,
        parent_size=root_font_size,
        ancestors=None,
        tag_contents=None,
    ) -> None:
        self.name = name
        self.attributes = attributes
        self.background_color = {
            "value": "#ffffff",
            "has_alpha": False,
            "computed_value": "",
            "sheet": "user-agent",
            "selector": "",
            "specificity": "000",
            "applied_by": "context",
            "is_gradient": False,
            "gradient_colors": [],
        }
        self.color = {
            "value": "#000000",
            "sheet": "user-agent",
            "selector": "",
            "specificity": "000",
            "applied_by": "default",
        }
        if parent_size:
            self.font_size = parent_size
        else:
            self.font_size = root_font_size
        self.is_bold = False
        if name == "b":
            self.is_bold = True
        if name in fonts.HEADING_SIZES.keys():
            value = fonts.HEADING_SIZES.get(name)
            value, unit = fonts.split_value_unit(value)
            self.font_size = fonts.compute_font_size(
                value, unit, parent_size, name
            )
            self.is_bold = True
        self.direct_text = ""
        if tag_contents:
            self.__set_direct_text(tag_contents)
        self.has_direct_text = bool(self.direct_text)
        self.visited_color = {
            "value": "",
            "sheet": "",
            "selector": "",
            "specificity": "",
            "applied_by": "default",
        }
        self.visited_background = {
            "value": "",
            "sheet": "",
            "selector": "",
            "specificity": "",
            "applied_by": "default",
        }
        self.hover_color = {
            "value": "",
            "sheet": "",
            "selector": "",
            "specificity": "",
            "applied_by": "default",
        }
        self.hover_background = {
            "value": "",
            "sheet": "",
            "selector": "",
            "specificity": "",
            "applied_by": "context",
        }
        self.is_large = False
        self.is_link = bool(name == "a")
        self.contrast_data = {
            "ratio": 21.0,
            "normal_aaa": True,
            "normal_aa": True,
            "large_aaa": True,
            "large_aa": True,
        }
        self.hover_contrast_data = {
            "ratio": 21.0,
            "normal_aaa": True,
            "normal_aa": True,
            "large_aaa": True,
            "large_aa": True,
        }
        self.visited_contrast_data = {
            "ratio": 0.0,
            "normal_aaa": False,
            "normal_aa": False,
            "large_aaa": False,
            "large_aa": False,
        }
        self.__set_link_color()
        self.get_contrast_data("default")
        self.children = children if children is not None else []
        self.parent = parent
        self.parent_size = parent_size
        self.ancestors = ancestors.copy() if ancestors is not None else []
        if parent:
            self.ancestors.append(self.parent)

    def __set_direct_text(self, contents: list):
        """get only text not in a tag"""
        text = ""
        for i in contents:
            if isinstance(i, NavigableString):
                new_text = str(i)
                if new_text != "\n":
                    text += new_text.strip()
        self.direct_text = text

    def __set_link_color(self):
        if self.name == "a":
            self.color["value"] = default_link_color
            self.visited_color["value"] = default_link_visited
            self.visited_color["sheet"] = "user-agent"
            self.visited_color["specificity"] = "000"
            self.visited_background["value"] = default_global_background
            self.visited_background["sheet"] = "user-agent"
            self.visited_background["specificity"] = "000"
            self.visited_background["applied_by"] = "context"

    def ammend_color_styles(self, new_styles: dict, filename: str) -> None:
        """adjust color styles based on specificity.

        Args:
            new_styles: the new styles we want to apply.
            filename: the stylesheet the styles came from."""

        # are we even targetting color or bg color
        targets_color = bool(new_styles.get("color"))
        targets_bg_color = bool(new_styles.get("background-color"))

        # get relevant specificity
        new_specificity = new_styles.get("specificity")
        col_specificity = self.color.get("specificity")

        # Check for overrides
        color_has_override = new_specificity >= col_specificity

        # change color if applies
        selector = new_styles.get("selector")
        not_a_link = self.name != "a"
        if not_a_link:
            hover_selector = ":hover" in selector
            visited_selector = ":visited" in selector
            if not hover_selector and not visited_selector:
                if targets_color:
                    if color_has_override:
                        col = new_styles.get("color")
                        if col:
                            self.color["value"] = col
                            self.color["sheet"] = filename
                            self.color["selector"] = selector
                            self.color["specificity"] = new_specificity
                    else:
                        col = self.color.get("value")
                if targets_bg_color:
                    self.ammend_bg_color(
                        new_styles.get("background-color"),
                        new_styles.get("selector"),
                        new_specificity,
                        filename,
                    )
                # get contrast for color & bg_color
                self.get_contrast_data("standard")
        else:
            # be sure to change at least the background color for pseudo-states
            if targets_bg_color:
                # check hover background
                hover_bg = self.hover_background.get("value")
                hover_specificity = self.hover_background.get("specificity")
                new_bg = new_styles.get("background-color")
                if not hover_bg or new_specificity >= hover_specificity:
                    self.hover_background["value"] = new_bg
                    self.hover_background["specificity"] = new_specificity

                # check visited background
                visited_bg = self.visited_background.get("value")
                visited_specificity = self.visited_background.get(
                    "specificity"
                )
                if not visited_bg or new_specificity >= visited_specificity:
                    self.visited_background["value"] = new_bg
                    self.visited_background["specificity"] = new_specificity

    def ammend_bg_color(
        self,
        bg_color: str,
        new_selector: str,
        new_specificity: str,
        filename: str,
    ) -> None:
        """ammends the bg color based on the selector and specficity.

        Args:
            bg_color: the new bg color value.
            new_selector: the new selector.
            new_specificity: the specificity of the new selector.
            filename: the name of the file that is applying the styles.
        """

        old_specificity = self.background_color.get("specificity")
        bg_has_override = new_specificity >= old_specificity

        # Is the element is targetted directly.
        targeted_directly = targets_element_directly(self, new_selector)

        # Did the previous bg get set directly?
        bg_was_directly_set = self.background_color["applied_by"] == "directly"

        if targeted_directly:
            # don't apply if it was previously set with a higher specificity
            if bg_was_directly_set and not bg_has_override:
                return

            # set new values
            self.background_color["applied_by"] = "directly"
            self.background_color["value"] = bg_color
            self.background_color["specificity"] = new_specificity
            self.background_color["sheet"] = filename
        else:
            # If it was not directly set, we can change it
            if not bg_was_directly_set:
                self.background_color["value"] = bg_color
                if self.children:
                    for kid in self.children:
                        kid.ammend_bg_color(
                            bg_color, new_selector, new_specificity, filename
                        )

    def get_contrast_data(self, type="default") -> None:
        """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

        Args:
            type: the type of color contrast.
        """
        col = self.color.get("value")
        if not col:
            for i in range(len(self.ancestors) - 1, -1, -1):
                anc = self.ancestors[i]
                if len(anc) > 2:
                    color_details = anc[4]
                    col = color_details.split(":")[1]
                    col = col.strip()
                    if "#" == col[0]:
                        col = col.split()[0]
                    elif "rgb" in col or "hsl" in col:
                        col = col.split(")")[0]
                        col += ")"
                    if color.is_color_value(col):
                        break
        bg = self.background_color.get("value")
        if color.is_gradient(bg):
            results = color.get_color_contrast_with_gradients(
                col, bg, self.ancestors
            )
            # Set bg to composite color with lowest contrast ratio
            bg = results[0][-2]
            has_alpha = results[0][-1]
            if has_alpha:
                self.background_color["has_alpha"] = True
                self.background_color["computed_value"] = bg

        hexc = color.get_hex(col)
        hexbg = color.get_hex(bg)
        self.__build_contrast_report(hexc, hexbg)
        if self.name == "a" and type == "default" or type == "visited":
            vcol = self.visited_color.get("value")
            hexv = color.get_hex(vcol)
            self.__build_visited_contrast_report(hexv, hexbg)
        if type == "hover":
            self.hover_color["value"] = col
            self.hover_color["applied_by"] = "directly"

    def __build_contrast_report(self, hexc: str, hexbg: str) -> None:
        """creates a full contrast report for Element.

        Args:
            hexc: the hex code for the color value.
            hexbg: the hex code for the background color.
        """
        link_contrast = color.get_color_contrast_report(hexc, hexbg)
        link_ratio = color.contrast_ratio(hexc, hexbg)

        self.contrast_data["ratio"] = link_ratio
        self.contrast_data["normal_aaa"] = bool(
            link_contrast.get("Normal AAA") == "Pass"
        )
        self.contrast_data["normal_aa"] = bool(
            link_contrast.get("Normal AA") == "Pass"
        )
        self.contrast_data["large_aaa"] = bool(
            link_contrast.get("Large AAA") == "Pass"
        )

    def __build_visited_contrast_report(self, hexc: str, hexbg: str) -> None:
        """builds contrast report for visited color settings.

        This applies only for anchor tags as they are the only ones with a
        visited property.

        Args:
            hexc: the hex code for the color value.
            hexbg: the hex code for the background color.
        """
        link_contrast = color.get_color_contrast_report(hexc, hexbg)
        link_ratio = color.contrast_ratio(hexc, hexbg)

        self.visited_contrast_data["ratio"] = link_ratio
        self.visited_contrast_data["normal_aaa"] = bool(
            link_contrast.get("Normal AAA") == "Pass"
        )
        self.visited_contrast_data["normal_aa"] = bool(
            link_contrast.get("Normal AA") == "Pass"
        )
        self.visited_contrast_data["large_aaa"] = bool(
            link_contrast.get("Large AAA") == "Pass"
        )
        self.visited_contrast_data["large_aa"] = bool(
            link_contrast.get("Large AA") == "Pass"
        )

    def change_styles(
        self,
        selector: str,
        declaration: str,
        new_specificity: str,
        filename: str,
    ) -> None:
        """change styles and apply them to all descendants

        Args:
            selector: the selector used to make a change
            declaration: the declaration (property and value)
            new_specificity: the specificity value of the selector
            filename: file where the styles come from.
        """

        hover_selector = "a:hover" in selector

        for property, val in list(declaration.items()):
            if hover_selector:
                (prop,) = declaration
                val = declaration.get(prop)
                if "background" in prop:
                    specificity = self.hover_background.get("specificity")
                    if not specificity or new_specificity >= specificity:
                        self.hover_background["value"] = val
                        self.hover_background["sheet"] = filename
                        self.hover_background["selector"] = selector
                        self.hover_background["specificity"] = new_specificity
                        self.hover_background["applied_by"] = (
                            "selector: " + selector
                        )
                else:
                    specificity = self.hover_color.get("specificity")
                    if not specificity or new_specificity >= specificity:
                        self.hover_color["value"] = val
                        self.hover_color["sheet"] = filename
                        self.hover_color["selector"] = selector
                        self.hover_color["specificity"] = new_specificity
                        self.hover_color["applied_by"] = (
                            "selector: " + selector
                        )
            elif property == "background" or property == "background-color":
                old_specificity = self.background_color.get("specificity")
                self.apply_background_color(
                    selector,
                    property,
                    val,
                    old_specificity,
                    new_specificity,
                    filename,
                )
            elif property == "color":
                old_specificity = self.color.get("specificity")
                if new_specificity >= old_specificity:
                    self.color["value"] = val
                    self.color["sheet"] = filename
                    self.color["selector"] = selector
                    self.color["specificity"] = new_specificity
            if not hover_selector:
                self.get_contrast_data()
            for child in self.children:
                child.change_child_styles(
                    selector, property, val, new_specificity, filename
                )

    def change_child_styles(
        self,
        selector: str,
        property: str,
        val: str,
        new_specificity: str,
        filename: str,
    ) -> None:
        """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.

        Args:
            selector: selector being used.
            property: property being passed down.
            val: value being passed down
            new_specificity: in case it matters (selector should also be
                targetting in some way).
            filename: the file where the styles came from.
        """

        # has the element already had same property targetted previously?
        already_applied = self.been_applied(property)
        if already_applied:
            return

        # If it's a link, it shouldn't be applied unless it's a link selector
        if self.name == "a":
            link_selector = css.is_link_selector(selector)
            if not link_selector:
                return

        # is the selector targetting the tag directly (by type, id, or class)
        targets_directly = does_selector_apply(self, selector)

        # if it targets directly, then look to specificity
        if targets_directly:
            if "background" in property:
                old_specificity = self.background_color.get("specificity")
            else:
                old_specificity = self.color.get("specificity")
            if old_specificity > new_specificity:
                # new specificity loses - nothing to add here
                return

        # Apply the styles
        if "background" in property:
            self.ammend_bg_color(val, selector, new_specificity, filename)
        else:
            self.color["value"] = val
            self.color["sheet"] = filename
            if targets_directly:
                self.color["selector"] = selector
                self.color["specificity"] = new_specificity
                self.color["applied_by"] = "selector: " + selector
            else:
                self.color["applied_by"] = "inheritance"

    def directly_targets(self, selector: str) -> bool:
        """returns whether selector directly targets tag.

        Checks all possible selector types

        Args:
            selector: the selector in question.

        Returns:
            targets: a boolean value (does the selector target the tag?)"""
        targets = False
        element_name = self.name

        if selector == self.name:
            targets = True
        elif element_name in selector:
            selector_type = css.get_selector_type(selector)
            if selector_type == "descendant_selector":
                selectors = selector.split(" ")
                if element_name in selectors[-1]:
                    targets = True
            elif selector_type == "grouped_selector":
                selectors = selector.split(",")
                for sel in selectors:
                    if element_name in sel:
                        targets = True
                        break
            elif selector_type == "id_selector":
                # If it's an id selector, the id attribute must be there.
                id_value = selector.split("#")[1]
                try:
                    if isinstance(self.attributes, abc.ItemsView):
                        for attr, value in self.attributes:
                            if attr == "id":
                                element_id = value
                    else:
                        element_id = self.attributes.get("id")
                except AttributeError:
                    element_id = None
                if id_value == element_id:
                    targets = True
            elif selector_type == "advanced_link_selector":
                if ":hover" in selector and element_name == "a":
                    targets = True
        else:
            # check for attribute selector
            selector_type = css.get_selector_type(selector)
            if self.attributes:
                if selector_type == "class_selector":
                    if "class" in self.attributes.keys():
                        for val in self.attributes.get("class"):
                            if val == selector[1:]:
                                targets = True
                                break
                if selector_type == "id_selector":
                    # NOTE: testing has not uncovered this state
                    # we're keeping it here just in case
                    if "id" in self.attributes.keys():
                        for val in self.attributes.get("id"):
                            if val == selector[1:]:
                                targets = True
                                break
        return targets

    def been_applied(self, property: str) -> bool:
        """has this property already had a style directly applied?

        Args:
            property: the property in question.

        Returns:
            applied: whether it has had a style applied or not."""
        applied = False
        if "background" in property:
            applied_by = self.background_color.get("applied_by")

        else:
            applied_by = self.color.get("applied_by")
        if applied_by not in ["default", "context", "inheritance"]:
            applied = True
        return applied

    def apply_background_color(
        self,
        selector: str,
        property: str,
        val: str,
        old_specificity: str,
        new_specificity: str,
        filename: str,
    ) -> None:
        """Applies background color by context or directly.

        Args:
            selector: the selector of the new styles.
            property: the property of the new styles.
            val: the value of the new styles.
            old_specificity: the specificity rank of styles currently in use.
            new_specificity: the specificity of the new selector.
            filename: the file (html or css) that applied the styles.
        """
        # Are we directly targeted or not?
        directly_targeted = self.directly_targets(selector)
        previously_set = self.background_color.get("applied_by") == "directly"
        bg_gradient = color.is_gradient(val)

        # If directly, check specificity
        if directly_targeted:
            if previously_set:
                if new_specificity < old_specificity:
                    return
            colors = []
            if bg_gradient:
                self.background_color["is_gradient"] = True
                c = self.color.get("value")
                details = color.get_color_contrast_with_gradients(
                    c, val, self.ancestors
                )
                colors = color.get_gradient_colors(val)

                # Set gradient colors with highest and lowest contrast
                self.background_color["best_contrast"] = {}
                self.background_color["worst_contrast"] = {}

                def process_gradient_data(details, bg_dict):
                    contrast_ratio = details[0]
                    size = self.font_size
                    is_bold = self.is_bold
                    results = color.get_contrast_results_from_ratio(
                        contrast_ratio, size, is_bold
                    )
                    has_alpha = details[-1]
                    if has_alpha:
                        bg_dict["has_alpha"] = has_alpha
                        self.background_color["has_alpha"] = True
                        self.background_color["computed_value"] = details[3]
                        bg_dict["computed_value"] = details[-2]
                    else:
                        bg_dict["value"] = details[2]
                    bg_dict["contrast_ratio"] = details[0]
                    bg_dict["results"] = results

                best = details[-1]
                worst = details[0]
                process_gradient_data(
                    best, self.background_color["best_contrast"]
                )
                process_gradient_data(
                    worst, self.background_color["worst_contrast"]
                )
                self.background_color["gradient_colors"] = colors
            # set color, specificity, and directly applied
            if ":hover" in selector:
                background_color_dict = self.hover_background
            elif ":visited" in selector:
                background_color_dict = self.visited_background
            else:
                background_color_dict = self.background_color
            background_color_dict["value"] = val
            background_color_dict["sheet"] = filename
            background_color_dict["specificity"] = new_specificity
            background_color_dict["applied_by"] = "directly"
            background_color_dict["selector"] = selector
        else:
            if not previously_set:
                self.background_color["value"] = val
                self.background_color["sheet"] = filename
                self.background_color["applied_by"] = "context"
                self.background_color["selector"] = selector

__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
def __build_contrast_report(self, hexc: str, hexbg: str) -> None:
    """creates a full contrast report for Element.

    Args:
        hexc: the hex code for the color value.
        hexbg: the hex code for the background color.
    """
    link_contrast = color.get_color_contrast_report(hexc, hexbg)
    link_ratio = color.contrast_ratio(hexc, hexbg)

    self.contrast_data["ratio"] = link_ratio
    self.contrast_data["normal_aaa"] = bool(
        link_contrast.get("Normal AAA") == "Pass"
    )
    self.contrast_data["normal_aa"] = bool(
        link_contrast.get("Normal AA") == "Pass"
    )
    self.contrast_data["large_aaa"] = bool(
        link_contrast.get("Large AAA") == "Pass"
    )

__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
def __build_visited_contrast_report(self, hexc: str, hexbg: str) -> None:
    """builds contrast report for visited color settings.

    This applies only for anchor tags as they are the only ones with a
    visited property.

    Args:
        hexc: the hex code for the color value.
        hexbg: the hex code for the background color.
    """
    link_contrast = color.get_color_contrast_report(hexc, hexbg)
    link_ratio = color.contrast_ratio(hexc, hexbg)

    self.visited_contrast_data["ratio"] = link_ratio
    self.visited_contrast_data["normal_aaa"] = bool(
        link_contrast.get("Normal AAA") == "Pass"
    )
    self.visited_contrast_data["normal_aa"] = bool(
        link_contrast.get("Normal AA") == "Pass"
    )
    self.visited_contrast_data["large_aaa"] = bool(
        link_contrast.get("Large AAA") == "Pass"
    )
    self.visited_contrast_data["large_aa"] = bool(
        link_contrast.get("Large AA") == "Pass"
    )

__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
def __set_direct_text(self, contents: list):
    """get only text not in a tag"""
    text = ""
    for i in contents:
        if isinstance(i, NavigableString):
            new_text = str(i)
            if new_text != "\n":
                text += new_text.strip()
    self.direct_text = text

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
def ammend_bg_color(
    self,
    bg_color: str,
    new_selector: str,
    new_specificity: str,
    filename: str,
) -> None:
    """ammends the bg color based on the selector and specficity.

    Args:
        bg_color: the new bg color value.
        new_selector: the new selector.
        new_specificity: the specificity of the new selector.
        filename: the name of the file that is applying the styles.
    """

    old_specificity = self.background_color.get("specificity")
    bg_has_override = new_specificity >= old_specificity

    # Is the element is targetted directly.
    targeted_directly = targets_element_directly(self, new_selector)

    # Did the previous bg get set directly?
    bg_was_directly_set = self.background_color["applied_by"] == "directly"

    if targeted_directly:
        # don't apply if it was previously set with a higher specificity
        if bg_was_directly_set and not bg_has_override:
            return

        # set new values
        self.background_color["applied_by"] = "directly"
        self.background_color["value"] = bg_color
        self.background_color["specificity"] = new_specificity
        self.background_color["sheet"] = filename
    else:
        # If it was not directly set, we can change it
        if not bg_was_directly_set:
            self.background_color["value"] = bg_color
            if self.children:
                for kid in self.children:
                    kid.ammend_bg_color(
                        bg_color, new_selector, new_specificity, filename
                    )

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
def ammend_color_styles(self, new_styles: dict, filename: str) -> None:
    """adjust color styles based on specificity.

    Args:
        new_styles: the new styles we want to apply.
        filename: the stylesheet the styles came from."""

    # are we even targetting color or bg color
    targets_color = bool(new_styles.get("color"))
    targets_bg_color = bool(new_styles.get("background-color"))

    # get relevant specificity
    new_specificity = new_styles.get("specificity")
    col_specificity = self.color.get("specificity")

    # Check for overrides
    color_has_override = new_specificity >= col_specificity

    # change color if applies
    selector = new_styles.get("selector")
    not_a_link = self.name != "a"
    if not_a_link:
        hover_selector = ":hover" in selector
        visited_selector = ":visited" in selector
        if not hover_selector and not visited_selector:
            if targets_color:
                if color_has_override:
                    col = new_styles.get("color")
                    if col:
                        self.color["value"] = col
                        self.color["sheet"] = filename
                        self.color["selector"] = selector
                        self.color["specificity"] = new_specificity
                else:
                    col = self.color.get("value")
            if targets_bg_color:
                self.ammend_bg_color(
                    new_styles.get("background-color"),
                    new_styles.get("selector"),
                    new_specificity,
                    filename,
                )
            # get contrast for color & bg_color
            self.get_contrast_data("standard")
    else:
        # be sure to change at least the background color for pseudo-states
        if targets_bg_color:
            # check hover background
            hover_bg = self.hover_background.get("value")
            hover_specificity = self.hover_background.get("specificity")
            new_bg = new_styles.get("background-color")
            if not hover_bg or new_specificity >= hover_specificity:
                self.hover_background["value"] = new_bg
                self.hover_background["specificity"] = new_specificity

            # check visited background
            visited_bg = self.visited_background.get("value")
            visited_specificity = self.visited_background.get(
                "specificity"
            )
            if not visited_bg or new_specificity >= visited_specificity:
                self.visited_background["value"] = new_bg
                self.visited_background["specificity"] = new_specificity

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
def apply_background_color(
    self,
    selector: str,
    property: str,
    val: str,
    old_specificity: str,
    new_specificity: str,
    filename: str,
) -> None:
    """Applies background color by context or directly.

    Args:
        selector: the selector of the new styles.
        property: the property of the new styles.
        val: the value of the new styles.
        old_specificity: the specificity rank of styles currently in use.
        new_specificity: the specificity of the new selector.
        filename: the file (html or css) that applied the styles.
    """
    # Are we directly targeted or not?
    directly_targeted = self.directly_targets(selector)
    previously_set = self.background_color.get("applied_by") == "directly"
    bg_gradient = color.is_gradient(val)

    # If directly, check specificity
    if directly_targeted:
        if previously_set:
            if new_specificity < old_specificity:
                return
        colors = []
        if bg_gradient:
            self.background_color["is_gradient"] = True
            c = self.color.get("value")
            details = color.get_color_contrast_with_gradients(
                c, val, self.ancestors
            )
            colors = color.get_gradient_colors(val)

            # Set gradient colors with highest and lowest contrast
            self.background_color["best_contrast"] = {}
            self.background_color["worst_contrast"] = {}

            def process_gradient_data(details, bg_dict):
                contrast_ratio = details[0]
                size = self.font_size
                is_bold = self.is_bold
                results = color.get_contrast_results_from_ratio(
                    contrast_ratio, size, is_bold
                )
                has_alpha = details[-1]
                if has_alpha:
                    bg_dict["has_alpha"] = has_alpha
                    self.background_color["has_alpha"] = True
                    self.background_color["computed_value"] = details[3]
                    bg_dict["computed_value"] = details[-2]
                else:
                    bg_dict["value"] = details[2]
                bg_dict["contrast_ratio"] = details[0]
                bg_dict["results"] = results

            best = details[-1]
            worst = details[0]
            process_gradient_data(
                best, self.background_color["best_contrast"]
            )
            process_gradient_data(
                worst, self.background_color["worst_contrast"]
            )
            self.background_color["gradient_colors"] = colors
        # set color, specificity, and directly applied
        if ":hover" in selector:
            background_color_dict = self.hover_background
        elif ":visited" in selector:
            background_color_dict = self.visited_background
        else:
            background_color_dict = self.background_color
        background_color_dict["value"] = val
        background_color_dict["sheet"] = filename
        background_color_dict["specificity"] = new_specificity
        background_color_dict["applied_by"] = "directly"
        background_color_dict["selector"] = selector
    else:
        if not previously_set:
            self.background_color["value"] = val
            self.background_color["sheet"] = filename
            self.background_color["applied_by"] = "context"
            self.background_color["selector"] = selector

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
def been_applied(self, property: str) -> bool:
    """has this property already had a style directly applied?

    Args:
        property: the property in question.

    Returns:
        applied: whether it has had a style applied or not."""
    applied = False
    if "background" in property:
        applied_by = self.background_color.get("applied_by")

    else:
        applied_by = self.color.get("applied_by")
    if applied_by not in ["default", "context", "inheritance"]:
        applied = True
    return applied

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
def change_child_styles(
    self,
    selector: str,
    property: str,
    val: str,
    new_specificity: str,
    filename: str,
) -> None:
    """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.

    Args:
        selector: selector being used.
        property: property being passed down.
        val: value being passed down
        new_specificity: in case it matters (selector should also be
            targetting in some way).
        filename: the file where the styles came from.
    """

    # has the element already had same property targetted previously?
    already_applied = self.been_applied(property)
    if already_applied:
        return

    # If it's a link, it shouldn't be applied unless it's a link selector
    if self.name == "a":
        link_selector = css.is_link_selector(selector)
        if not link_selector:
            return

    # is the selector targetting the tag directly (by type, id, or class)
    targets_directly = does_selector_apply(self, selector)

    # if it targets directly, then look to specificity
    if targets_directly:
        if "background" in property:
            old_specificity = self.background_color.get("specificity")
        else:
            old_specificity = self.color.get("specificity")
        if old_specificity > new_specificity:
            # new specificity loses - nothing to add here
            return

    # Apply the styles
    if "background" in property:
        self.ammend_bg_color(val, selector, new_specificity, filename)
    else:
        self.color["value"] = val
        self.color["sheet"] = filename
        if targets_directly:
            self.color["selector"] = selector
            self.color["specificity"] = new_specificity
            self.color["applied_by"] = "selector: " + selector
        else:
            self.color["applied_by"] = "inheritance"

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
def change_styles(
    self,
    selector: str,
    declaration: str,
    new_specificity: str,
    filename: str,
) -> None:
    """change styles and apply them to all descendants

    Args:
        selector: the selector used to make a change
        declaration: the declaration (property and value)
        new_specificity: the specificity value of the selector
        filename: file where the styles come from.
    """

    hover_selector = "a:hover" in selector

    for property, val in list(declaration.items()):
        if hover_selector:
            (prop,) = declaration
            val = declaration.get(prop)
            if "background" in prop:
                specificity = self.hover_background.get("specificity")
                if not specificity or new_specificity >= specificity:
                    self.hover_background["value"] = val
                    self.hover_background["sheet"] = filename
                    self.hover_background["selector"] = selector
                    self.hover_background["specificity"] = new_specificity
                    self.hover_background["applied_by"] = (
                        "selector: " + selector
                    )
            else:
                specificity = self.hover_color.get("specificity")
                if not specificity or new_specificity >= specificity:
                    self.hover_color["value"] = val
                    self.hover_color["sheet"] = filename
                    self.hover_color["selector"] = selector
                    self.hover_color["specificity"] = new_specificity
                    self.hover_color["applied_by"] = (
                        "selector: " + selector
                    )
        elif property == "background" or property == "background-color":
            old_specificity = self.background_color.get("specificity")
            self.apply_background_color(
                selector,
                property,
                val,
                old_specificity,
                new_specificity,
                filename,
            )
        elif property == "color":
            old_specificity = self.color.get("specificity")
            if new_specificity >= old_specificity:
                self.color["value"] = val
                self.color["sheet"] = filename
                self.color["selector"] = selector
                self.color["specificity"] = new_specificity
        if not hover_selector:
            self.get_contrast_data()
        for child in self.children:
            child.change_child_styles(
                selector, property, val, new_specificity, filename
            )

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
def directly_targets(self, selector: str) -> bool:
    """returns whether selector directly targets tag.

    Checks all possible selector types

    Args:
        selector: the selector in question.

    Returns:
        targets: a boolean value (does the selector target the tag?)"""
    targets = False
    element_name = self.name

    if selector == self.name:
        targets = True
    elif element_name in selector:
        selector_type = css.get_selector_type(selector)
        if selector_type == "descendant_selector":
            selectors = selector.split(" ")
            if element_name in selectors[-1]:
                targets = True
        elif selector_type == "grouped_selector":
            selectors = selector.split(",")
            for sel in selectors:
                if element_name in sel:
                    targets = True
                    break
        elif selector_type == "id_selector":
            # If it's an id selector, the id attribute must be there.
            id_value = selector.split("#")[1]
            try:
                if isinstance(self.attributes, abc.ItemsView):
                    for attr, value in self.attributes:
                        if attr == "id":
                            element_id = value
                else:
                    element_id = self.attributes.get("id")
            except AttributeError:
                element_id = None
            if id_value == element_id:
                targets = True
        elif selector_type == "advanced_link_selector":
            if ":hover" in selector and element_name == "a":
                targets = True
    else:
        # check for attribute selector
        selector_type = css.get_selector_type(selector)
        if self.attributes:
            if selector_type == "class_selector":
                if "class" in self.attributes.keys():
                    for val in self.attributes.get("class"):
                        if val == selector[1:]:
                            targets = True
                            break
            if selector_type == "id_selector":
                # NOTE: testing has not uncovered this state
                # we're keeping it here just in case
                if "id" in self.attributes.keys():
                    for val in self.attributes.get("id"):
                        if val == selector[1:]:
                            targets = True
                            break
    return targets

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
def get_contrast_data(self, type="default") -> None:
    """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

    Args:
        type: the type of color contrast.
    """
    col = self.color.get("value")
    if not col:
        for i in range(len(self.ancestors) - 1, -1, -1):
            anc = self.ancestors[i]
            if len(anc) > 2:
                color_details = anc[4]
                col = color_details.split(":")[1]
                col = col.strip()
                if "#" == col[0]:
                    col = col.split()[0]
                elif "rgb" in col or "hsl" in col:
                    col = col.split(")")[0]
                    col += ")"
                if color.is_color_value(col):
                    break
    bg = self.background_color.get("value")
    if color.is_gradient(bg):
        results = color.get_color_contrast_with_gradients(
            col, bg, self.ancestors
        )
        # Set bg to composite color with lowest contrast ratio
        bg = results[0][-2]
        has_alpha = results[0][-1]
        if has_alpha:
            self.background_color["has_alpha"] = True
            self.background_color["computed_value"] = bg

    hexc = color.get_hex(col)
    hexbg = color.get_hex(bg)
    self.__build_contrast_report(hexc, hexbg)
    if self.name == "a" and type == "default" or type == "visited":
        vcol = self.visited_color.get("value")
        hexv = color.get_hex(vcol)
        self.__build_visited_contrast_report(hexv, hexbg)
    if type == "hover":
        self.hover_color["value"] = col
        self.hover_color["applied_by"] = "directly"

__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
def __get_element_by_id(id: int) -> Element:
    """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.

    Args:
        id: the memory address of the element object.

    Returns:
        element: the element object."""
    element = ctypes.cast(id, ctypes.py_object).value
    return element

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
def attribute_selector_applies(element: Element, selector: str) -> bool:
    """determines if the attribute selector applies or not.

    Args:
        element: the element in question.
        selector: the attribute selector in question.

    Returns:
        applies: a bool representing whether the attribute selector
            applies or not.
    """
    applies = False
    if "=" in selector:
        attr = selector.split("=")[0]
        start_pos = attr.index("[") + 1
        if attr[-1] in ("*", "$", "~"):
            attribute = attr[start_pos:-1]
        else:
            attr = attr[start_pos:]
        if "*=" in selector:
            # value need only be a partial match
            attr, partial = selector.split("*=")
            partial = "".join(i for i in partial if i not in '"]')
            value = element.attributes.get(attribute)
            if isinstance(value, list):
                for v in value:
                    if partial in v:
                        applies = True
                        break
            else:
                applies = partial in value
        elif "$=" in selector:
            # looking for value ending in text
            ending = selector.split("$=")[1]
            text = ending.split('"')[1]
            case_insenstive = "i]" in selector or "i ]" in selector
            value = ""
            if isinstance(element.attributes, list):
                if attribute in element.attributes:
                    pos = element.attributes.index(value)
                    value = element.attributes[pos]
            elif isinstance(element.attributes, dict):
                if attribute in element.attributes.keys():
                    value = element.attributes.get(attribute)
            if value:
                end_pos = -len(text)
                value_end = value[end_pos:]
                if case_insenstive:
                    value_end = value_end.lower()
                applies = text == value_end
        elif "~=" in selector:
            # looking for whole word in space-separated list
            attr, word = selector.split("~=")
            word = "".join(i for i in word if i not in '"]')
            value = element.attributes.get(attribute)
            if isinstance(value, list):
                for v in value:
                    if word == v:
                        applies = True
                        break
            else:
                applies = word == value
        else:
            attr, value = selector.split("=")
    else:
        # we're just looking for an attribute match
        start = selector.index("[") + 1
        stop = selector.index("]")
        attr = selector[start:stop]
        applies = attr in element.attributes.keys()
    return applies

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
def descendant_selector_applies(element: Element, sel: str) -> None:
    """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.
    """
    applies = False
    selector_list = sel.split()
    ancestor_list = element.ancestors
    possible_child_selector = selector_list.pop()
    child_selector_applies = does_selector_apply(
        element, possible_child_selector
    )
    if not child_selector_applies:
        return applies

    # loop through the ancestor list
    current_pos = 0
    for ancestor in ancestor_list:
        id = ancestor[1]
        ancestor_element = __get_element_by_id(id)
        if selector_list:
            selector = selector_list[current_pos]
            cur_selector_applies = does_selector_apply(
                ancestor_element, selector
            )
            if cur_selector_applies:
                selector_list = selector_list[1:]
    applies = not selector_list
    return applies

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
def does_selector_apply(element: Element, selector: str) -> bool:
    """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.

    Args:
        element: the element we are checking.
        selector: the selector in question.

    Returns:
        applies: whether the selector actually applies to the element."""
    applies = False
    regex_patterns = css.regex_patterns
    element_name = element.name

    # make a list of all selectors (in case of grouped selector)
    selectors = []
    is_grouped = bool(
        re.match(regex_patterns.get("grouped_selector"), selector)
    )
    if is_grouped:
        selectors = selector.split(",")
    else:
        selectors.append(selector)
    for sel in selectors:
        sel = sel.strip()
        is_link_selector = bool(
            re.match(regex_patterns.get("advanced_link_selector"), sel)
            or selector == "a"
        )
        is_type_selector = bool(
            re.match(regex_patterns.get("single_type_selector"), sel)
        )
        is_id_selector = bool(re.match(regex_patterns.get("id_selector"), sel))
        is_class_selector = bool(
            re.match(regex_patterns.get("class_selector"), sel)
        )
        is_class_selector = is_class_selector or "." in sel
        is_psuedo_class_selector = is_selector_pseudoclass(sel)
        is_attribute_selector = bool(
            re.match(regex_patterns.get("single_attribute_selector"), sel)
        )
        is_descendant_selector = bool(
            re.match(regex_patterns.get("descendant_selector"), sel)
        )
        is_at_rule = "@" in sel

        # If the tag is an anchor, but the selector is not - doesn't apply
        # link color can only be changed by a link selector
        if element_name == "a":
            # NOTE: turns out a descendant selector targetting an anchor won't
            # show as a link_selector
            if is_descendant_selector:
                selector_list = selector.split()

                # Check the descendant to see if it is a link
                last_item = selector_list[-1]
                if "a" != last_item[0]:
                    break
            elif not is_link_selector:
                break
        if is_type_selector:
            applies = element_name == sel
            if applies:
                break
        elif is_id_selector:
            # get ID attribute (if there is one)
            possible_el, id_attr = selector.split("#")
            if element.attributes:
                if isinstance(element.attributes, abc.ItemsView):
                    for id, value in element.attributes:
                        if id == "id":
                            element_id = value
                else:
                    element_id = element.attributes.get("id")
                if possible_el:
                    applies = (
                        possible_el == element_name and id_attr == element_id
                    )
                else:
                    applies = id_attr == element_id
                if applies:
                    break
        elif is_class_selector:
            # get all class attributes
            attributes = element.attributes
            if attributes:
                for name in attributes:
                    if name == "class":
                        possible_selectors = []
                        class_values = attributes.get("class")
                        for val in class_values:
                            possible_selectors.append("." + val)
                            possible_selectors.append(element_name + "." + val)
                        if selector in possible_selectors:
                            applies = True
                            break
        elif is_link_selector:
            # If the selector is a link selector, but the element is not
            # NOTE: if this doesn't solve it, we should double check the
            # parent to see if it was a link (might already be taken care of)
            if element_name == "a":
                # first check for attributes
                if is_attribute_selector:
                    # check to see if there is both an attribute and value
                    applies = attribute_selector_applies(element, selector)
                else:
                    applies = True
            break
        elif is_psuedo_class_selector:
            # check for element before psuedoclass
            pre_pseudo = sel.split(":")[0]
            applies = pre_pseudo == element_name
            if applies:
                break
        elif is_attribute_selector:
            applies = attribute_selector_applies(element, selector)
        elif is_descendant_selector:
            applies = descendant_selector_applies(element, sel)
            if applies:
                break
        elif is_at_rule:
            # We should return false as it is an @rule and shouldn't
            # apply
            return False
        else:
            raise ValueError(f"Selector not recognized: Got {selector}")
    return applies

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
def get_color_contrast_details(tree: CSSAppliedTree, rating="AAA") -> list:
    """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.

    Args:
        tree: the cascade tree for a single file.
        rating: the rating of contrast we check for (AAA or AA). The default
            is AAA.
    Returns:
        results
    """
    results = []
    filename = tree.filename
    # Loop recursively through the tree
    elements = tree.children

    def check_element(
        el: Element, rating: str, filename: str, parent_sel=None
    ) -> Union[list, None]:
        children = el.children

        is_gradient = el.background_color.get("is_gradient")

        # if the gradient was not directly applied, we won't get is_gradient
        # since it might be applied contextually, we should double check
        if not is_gradient:
            bg_value = el.background_color.get("value")
            is_gradient = "gradient" in bg_value

            # we should recalculate contrast if it didn't register
            if is_gradient:
                fg_color = el.color.get("value")
                bg_color = el.background_color.get("value")
                contrast_details = color.get_color_contrast_with_gradients(
                    fg_color, bg_color, el.ancestors
                )
                worst_case = {
                    "has_alpha": False,
                    "computed_value": "",
                    "contrast_ratio": 0.0,
                    "results": "",
                }
                contrast, fg_color = contrast_details[0][:2]
                composite_bg, bg_has_alpha = contrast_details[0][3:]
                worst_case["has_alpha"] = bg_has_alpha
                worst_case["computed_value"] = composite_bg
                worst_case["contrast_ratio"] = contrast
                hex1 = color.get_hex(fg_color)
                hex2 = color.get_hex(composite_bg)
                passes_contrast = color.get_contrast_results_from_ratio(
                    contrast, el.font_size, el.is_bold
                )
                worst_case["results"] = passes_contrast
                el.background_color["worst_contrast"] = worst_case
        if is_gradient:
            # get worst case
            worst_case = el.background_color.get("worst_contrast")
            worst_results = worst_case.get("results")
            fails = "fail" in worst_results[:5]
            if "conditional pass" in worst_results:
                if rating not in worst_results:
                    fails = True
            if fails:
                selector = el.background_color.get("selector")
                if el.is_large:
                    size = "Large"
                else:
                    size = "Normal"
                if el.has_direct_text:
                    if not selector and parent_sel:
                        selector = parent_sel
                        results.append(
                            (filename, selector, el.name, size, rating)
                        )

                    # NOTE: it's possible we won't be able to get a selector
                    # in the future. If so, add an else block and deal with it

                else:
                    # We have a failure, but without direct text
                    # We need to verify whether the failure is passed
                    # on to the children or not
                    parent_bg = el.background_color
                    parent_bg_selector = parent_bg.get("selector")
                    parent_col = el.color
                    parent_col_selector = parent_col.get("selector")
                    for child in children:
                        child_bg_val = child.background_color.get("value")
                        child_col_val = child.color.get("value")

                        # Check to see if the values in the child are the
                        # same as with the parent, in which case, if parent
                        # fails, then child should too
                        if child_bg_val == parent_bg.get(
                            "value"
                        ) and child_col_val == parent_col.get("value"):
                            selector = parent_bg_selector
                            if not selector:
                                selector = parent_col_selector

                            # double check to make sure child is same size or
                            # smaller than parent (size is parent's size)
                            if size == "Normal" and child.is_large:
                                hex1 = color.get_hex(child_bg_val)

                                # In case the bg color is a gradient, we
                                # need to pull from parent's bg_data
                                if not hex1:
                                    css_color = parent_bg.get("computed_value")
                                    if css_color:
                                        hex1 = color.get_hex(css_color)
                                    else:
                                        parent_bg_val = worst_case.get("value")
                                        hex1 = color.get_hex(parent_bg_val)
                                hex2 = color.get_hex(child_col_val)
                                child_contrast = (
                                    color.get_color_contrast_report(hex1, hex2)
                                )
                                child_sizing = f"Large {rating}"
                                passes = "Fail" != child_contrast.get(
                                    child_sizing
                                )
                                if not passes:
                                    results.append(
                                        (
                                            filename,
                                            selector,
                                            el.name,
                                            size,
                                            rating,
                                        )
                                    )
                            else:
                                results.append(
                                    (filename, selector, el.name, size, rating)
                                )

                        # TODO: add tests to look for a parent with normal
                        # size and a child that's large - make an else block
                return
        contrast_data = el.contrast_data
        if el.is_large:
            if rating == "AAA":
                passes = contrast_data.get("large_aaa")
            else:
                passes = contrast_data.get("large_aa")
        else:
            if rating == "AAA":
                passes = contrast_data.get("normal_aaa")
            else:
                passes = contrast_data.get("normal_aa")

        # only add results if failure
        if not passes:
            if el.is_large:
                size = "Large"
            else:
                size = "Normal"
            selector = el.background_color.get("selector")
            if not selector:
                selector = el.color.get("selector")

            # if there still isn't a selector, get the parent selector
            if not selector:
                selector = parent_sel

            # and only if the element has direct text (experimental)
            if el.has_direct_text:
                results.append((filename, selector, el.name, size, rating))

        if not children:
            return
        else:
            for kid in children:
                if el.background_color.get("selector"):
                    parent_selector = el.background_color.get("selector")
                else:
                    parent_selector = el.color.get("selector")
                if not parent_selector:
                    parent_selector = kid.ancestors[-1][3]
                    if not parent_selector:
                        parent_selector = kid.ancestors[-1][-1]
                    if parent_selector:
                        parent_selector = parent_selector.split("selector:")[
                            -1
                        ]
                check_element(kid, rating, filename, parent_selector)

    for element in elements:
        check_element(element, rating, filename)
    if results:
        adjusted = []
        for result in results:
            count = results.count(result)
            file, selector, element, size, rating = result
            msg = f"fail: in {file}, element: <{element}> had {count} "
            if count > 1:
                msg += f"contrast errors for {size} {rating} "
            else:
                msg += f"contrast error for {size} {rating} "
            msg += f"triggered by selector {selector}."
            if msg not in adjusted:
                adjusted.append(msg)
        results = adjusted
    else:
        # It's a success! Let's let them know
        msg = f"pass: {filename} passes color contrast for {rating} Normal"
        msg += " and Large."
        results.append(msg)
    return results

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
def get_color_contrast_report(dir_path: str, rating="AAA") -> list:
    """returns a list of all failures or a pass based on rating

    Args:
        dir_path: the path to the directory in question
        rating: the rating of contrast we check for (AAA or AA). The default
            is AAA.
    Returns:
        results: a list of pass or fail messages.
    """
    results = []
    files = css.get_styles_by_html_files(dir_path)
    for file in files:
        filepath = file.get("file")
        stylesheets = file.get("stylesheets")
        tree = CSSAppliedTree(filepath, stylesheets)

        report = get_color_contrast_details(tree, rating)
        for item in report:
            if item not in results:
                results.append(item)
    return results

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
def get_color_contrast_results(
    element: Element, results: dict, min_regular="AAA"
) -> dict:
    """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](https://webaim.org/resources/contrastchecker/)

    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."

    Args:
        css_tree: the css tree of color styles for a particular file.
        min_regular: the minimum passing size ('AAA' or 'AA') for color
            contrast for normal sized elements (anything except h1-h4).

    Returns:
        results: a dictionary of color contrast results for each element in
            the file.
    """
    tag = element.name
    is_large = element.is_large
    if not results.get(tag):
        results[tag] = {
            "num_elements": 0,
            "num_passed": 0,
            "num_failed": 0,
            "all_pass": True,
        }
    results = update_contrast_results(
        results, tag, is_large, element.contrast_data, min_regular
    )
    if element.children:
        for child in element.children:
            results = get_color_contrast_results(child, results, min_regular)
    return results

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
def is_selector_pseudoclass(selector: str) -> bool:
    """returns whether selector is a pseudoclass selector.

    Args:
        selector: the selector in question.

    Returns:
        is_pseudo_class_selector: whether the selector is a psuedoclass
            or not.
    """
    pc_regex = css.regex_patterns.get("pseudoclass_selector")
    is_pseudo_class_selector = bool(re.match(pc_regex, selector))
    is_pseudo_class_selector = is_pseudo_class_selector or ":" in selector

    # pseudo-elements do NOT count - they are scored like a type selector
    if "::" in selector:
        is_pseudo_class_selector = False
    return is_pseudo_class_selector

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
def targets_element_directly(element: Element, selector: str) -> bool:
    """returns whether selector targets element directly.

    Args:
        element: the element we are checking.
        selector: the selector in question.
    Returns:
        targets: whether the selector targets the element directly."""
    targets = False
    selector_type = css.get_selector_type(selector)
    if selector_type == "type_selector":
        targets = element.name == selector
    elif selector_type == "id_selector":
        attributes = element.attributes
        if attributes:
            id_attribute = attributes.get("id")
            if id_attribute:
                targets = selector in attributes.get("id")
    elif selector_type == "class_selector":
        attributes = element.attributes
        if attributes:
            classes = attributes.get("class")
            if classes:
                selector_value = selector[1:]
                targets = selector_value in classes
    return targets

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
def update_contrast_results(
    results: dict,
    tag: str,
    is_large: bool,
    contrast_data: dict,
    min_regular: str,
) -> dict:
    """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.'

    Args:
        results: the overall results we want to adjust.
        tag: the element we want to adjust.
        is_large: whether the element is considered large.
        contrast_data: the contrast results for the tag.
        min_regular: the minimum level required for standard text passing.

    Returns:
        results: adjusted results after processing contrast data.
    """
    passes = False
    data = results.get(tag)

    data["num_elements"] += 1

    if is_large:
        passes = contrast_data.get("large_aaa")
    else:
        if min_regular == "AAA":
            passes = contrast_data.get("normal_aaa")
        else:
            passes = contrast_data.get("normal_aa")
    if passes:
        data["num_passed"] += 1
    else:
        data["num_failed"] += 1
    data["all_pass"] = not data["num_failed"]
    return results