Question: Fill in the blank: The ___________ is a combination of both the DOM and CSSOM.
- render tree
- Largest Contentful Paint
- Cumulative Layout Shift
- Critical Rendering Path
Explanation
HubSpot’s performance guidance treats the DOM and CSSOM as separate browser models involved in rendering. During rendering, the browser combines content structure and style information into a single structure that determines what is actually drawn on the page. That structure belongs to the Critical Rendering Path and is used for layout and painting rather than for measuring speed. Because the blank asks for the merged result of document and style data, only that combined rendering structure fits. HubSpot Developers+1
Why the other options are incorrect
Largest Contentful Paint is a timing metric for when the largest visible element renders, not the browser structure built from document and style data. HubSpot
Cumulative Layout Shift is a stability metric that tracks unexpected movement on the page, not the merged model used to decide what gets painted. HubSpot+1
Critical Rendering Path is the overall browser process for turning resources into pixels, not the single structure created by combining document and style information. HubSpot Developers
Source for verification
Optimizing your HubSpot CMS site for speed — HubSpot Developers
Use the site speed dashboard — HubSpot
The answer(s) to the question is highlighted in the BOLD text above. You can also find more questions and answers related to the exams on the "HubSpot CMS for Developers II" page.
