You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
goog.dom.createDom(..) API implies it can set the attributes as its second parameter. It calls down to goog.dom.setProperties(..) to do this. setProperties() attempts direct some assignments to element.setAttribute(name, value) and others element[name] = value based on an incomplete goog.dom.DIRECT_ATTRIBUTE_MAP_ attribute name list.
DOM APIs should be stable for the functionality. TODO: define an alternative utility function.
The text was updated successfully, but these errors were encountered:
goog.dom.createDom(..)
API implies it can set the attributes as its second parameter. It calls down togoog.dom.setProperties(..)
to do this.setProperties()
attempts direct some assignments toelement.setAttribute(name, value)
and otherselement[name] = value
based on an incompletegoog.dom.DIRECT_ATTRIBUTE_MAP_
attribute name list.DOM APIs should be stable for the functionality. TODO: define an alternative utility function.
The text was updated successfully, but these errors were encountered: