Hi Team,
I am new to blink and I want to understand how and when css computation is done for every node and how to serialize that computed values. By computation I mean, after applying all possible rules apply to that node(own style, external style, insert rule, parent style, Pseudo element styles, Css Pseudo Elements etc).
I am trying to find one point in code from where I can pick final style for any node. also want to capture the updates of style for that node may be from same point in code or different.
And if there is no single point from where I can get it, then can I have one point(class) from where I get all css_rules as vector for any document (Initial after parsing and all updates through various ways like insertRule, innerHtml change for style node etc)
Things I have already referred are as follows but couldn't identify linking after FrameLoader::FinishedParsing().