Home | History | Annotate | Download | only in scripts

Lines Matching refs:property

53         for property in self._properties:
54 cc = self._camelcase_property_name(property["name"])
55 property["property_id"] = self._create_css_property_name_enum_value(cc)
57 property["camel_case_name"] = cc
58 longhands = property["longhands"].split(';')
59 property["camel_case_longhands"] = list()
63 property["camel_case_longhands"].append(longhand)
64 self._longhand_dictionary[longhand].append(property)
65 if property["runtimeEnabledShorthand"] is not None:
66 lowerFirstConditional = self._lower_first(property["runtimeEnabledShorthand"])
67 property["runtime_conditional_getter"] = "%sEnabled" % lowerFirstConditional
68 self._properties = dict((property["property_id"], property) for property in self._properties)