Render Flow - Data attributes
[Read <div data-info="123">] -> [Create DIV node] -> [Store data-info attribute] -> [Render DIV visually] -> [JavaScript can access data-info]
The browser reads the HTML element with a data attribute, creates the element node, stores the data attribute as part of the element's dataset, renders the element visually, and allows JavaScript to access the data attribute.