InterviewSolution
Saved Bookmarks
| 1. |
Which of the below does not belong to the Render Engine workflow?(a) Paint DOM elements(b) Parse Content(c) Build DOM nodes in render tree(d) Parse identifiers |
|
Answer» Correct option is (d) Parse identifiers To elaborate: A rendering engine is software that draws text and images on the screen. All of the mentioned belongs to the Render Engine workflow. The Render engine workflow contains: Parse Content Build DOM nodes in render tree Layout positioning of DOM elements Paint DOM elements. |
|