connectedCallback method
Implementation
@override
void connectedCallback() {
super.connectedCallback();
if (_type == _CSS_MIME) {
if (ownerView.enableBlink) {
// Native side will process inline styles via lifecycle hooks.
return;
}
if (_styleSheet == null) {
_recalculateStyle();
}
ownerDocument.styleNodeManager.addStyleSheetCandidateNode(this);
}
}