(name, type, mustUseProperty, attributeName, attributeNamespace, sanitizeURL)
| 998 | } |
| 999 | |
| 1000 | function PropertyInfoRecord(name, type, mustUseProperty, attributeName, attributeNamespace, sanitizeURL) { |
| 1001 | this.acceptsBooleans = type === BOOLEANISH_STRING || type === BOOLEAN || type === OVERLOADED_BOOLEAN; |
| 1002 | this.attributeName = attributeName; |
| 1003 | this.attributeNamespace = attributeNamespace; |
| 1004 | this.mustUseProperty = mustUseProperty; |
| 1005 | this.propertyName = name; |
| 1006 | this.type = type; |
| 1007 | this.sanitizeURL = sanitizeURL; |
| 1008 | } // When adding attributes to this list, be sure to also add them to |
| 1009 | // the `possibleStandardNames` module to ensure casing and incorrect |
| 1010 | // name warnings. |
| 1011 |
nothing calls this directly
no outgoing calls
no test coverage detected