setAttribute method

  1. @mustCallSuper
void setAttribute(
  1. String qualifiedName,
  2. String value
)

Implementation

@mustCallSuper
void setAttribute(String qualifiedName, String value) {
  if (_STYLE_PROPERTY == qualifiedName) {
    // @TODO: Parse inline style css text.
  } else if (_CLASS_NAME == qualifiedName) {
    className = value;
  }
  internalSetAttribute(qualifiedName, value);
}