You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. clarifying the elapsed time in computing style recalculation. 2.
replace `element(s)` with `node(s)` which was used interchangeably
before. 3. fix a typo `defintion` with `definition` 4. clarifying the
invalidation count. A node can be invalidated multiple times and by
multiple selectors.
Bug: 379886422
Change-Id: I85aeec7f546c6bb2bba6cd74b4d24ebb6e022162
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6762175
Reviewed-by: Sulekha Kulkarni <[email protected]>
Commit-Queue: Guangyue Xu <[email protected]>
Reviewed-by: Paul Irish <[email protected]>
matchAttemptsExplanation: 'Count of elements that the engine attempted to match against a style rule',
52
+
matchAttemptsExplanation: 'Count of nodes that the engine attempted to match against a style rule.',
53
53
/**
54
54
*@description Column name for count of elements that matched a style rule
55
55
*/
56
56
matchCount: 'Match count',
57
57
/**
58
58
*@description Tooltip description 'Match count'
59
59
*/
60
-
matchCountExplanation: 'Count of elements that matched a style rule',
60
+
matchCountExplanation: 'Count of nodes that matched a style rule.',
61
61
/**
62
62
*@description Column name for a style rule's CSS selector text
63
63
*/
64
64
selector: 'Selector',
65
65
/**
66
66
*@description Tooltip description 'Selector'
67
67
*/
68
-
selectorExplanation: 'CSS selector text of a style rule',
68
+
selectorExplanation: 'CSS selector text of a style rule.',
69
69
/**
70
70
*@description Column name for a style rule's CSS selector text
71
71
*/
@@ -74,7 +74,7 @@ const UIStrings = {
74
74
*@description Tooltip description 'Style Sheet'
75
75
*/
76
76
styleSheetIdExplanation:
77
-
'Links to the selector rule defintion in the style sheets. Note that a selector rule could be defined in multiple places in a style sheet or defined in multiple style sheets. Selector rules from browser user-agent style sheet or dynamic style sheets don\'t have a link.',
77
+
'Links to the selector rule definition in the style sheets. Note that a selector rule could be defined in multiple places in a style sheet or defined in multiple style sheets. Selector rules from browser user-agent style sheet or dynamic style sheets don\'t have a link.',
78
78
/**
79
79
*@description A context menu item in data grids to copy entire table to clipboard
'Aggregated count of invalidations on nodes and subsequently had style recalculated, all of which are matched by this selector. Note that a node can be invalidated multiple times.',
113
+
'Aggregated count of invalidations on nodes and subsequently had style recalculated, all of which are matched by this selector. Note that a node can be invalidated multiple times and by multiple selectors.',
0 commit comments