Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LibWeb: Avoid unnecessary style recomputation during traversal
While traversing the DOM tree, looking for nodes that need a style update, we were recomputing style for every node visited along the way, even nodes that didn't themselves need a style update (but one of their descendants did). This avoids a bunch of completely unnecessary style recomputation on basically every website.
- Loading branch information