lighthouse 9.5.0-dev.20220512 → 9.5.0-dev.20220513
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -32,7 +32,7 @@ const UIStrings = {
|
|
|
32
32
|
/** Label for a column in a data table; entries will be information on the time that the browser is delayed before responding to user input. Ideally fits within a ~40 character limit. */
|
|
33
33
|
inputDelay: 'Input delay',
|
|
34
34
|
/** Label for a column in a data table; entries will be information on the time taken by code processing user input that delays a response to the user. Ideally fits within a ~40 character limit. */
|
|
35
|
-
|
|
35
|
+
processingTime: 'Processing time',
|
|
36
36
|
/** Label for a column in a data table; entries will be information on the time that the browser is delayed before presenting a response to user input on screen. Ideally fits within a ~40 character limit. */
|
|
37
37
|
presentationDelay: 'Presentation delay',
|
|
38
38
|
/**
|
|
@@ -116,7 +116,7 @@ class WorkDuringInteraction extends Audit {
|
|
|
116
116
|
const endTs = startTs + interactionData.duration * 1000;
|
|
117
117
|
return {
|
|
118
118
|
inputDelay: {startTs, endTs: processingStartTs},
|
|
119
|
-
|
|
119
|
+
processingTime: {startTs: processingStartTs, endTs: processingEndTs},
|
|
120
120
|
presentationDelay: {startTs: processingEndTs, endTs},
|
|
121
121
|
};
|
|
122
122
|
}
|
package/package.json
CHANGED
|
@@ -1676,8 +1676,8 @@
|
|
|
1676
1676
|
"lighthouse-core/audits/work-during-interaction.js | presentationDelay": {
|
|
1677
1677
|
"message": "Presentation delay"
|
|
1678
1678
|
},
|
|
1679
|
-
"lighthouse-core/audits/work-during-interaction.js |
|
|
1680
|
-
"message": "Processing
|
|
1679
|
+
"lighthouse-core/audits/work-during-interaction.js | processingTime": {
|
|
1680
|
+
"message": "Processing time"
|
|
1681
1681
|
},
|
|
1682
1682
|
"lighthouse-core/audits/work-during-interaction.js | title": {
|
|
1683
1683
|
"message": "Minimizes work during key interaction"
|
|
@@ -1676,8 +1676,8 @@
|
|
|
1676
1676
|
"lighthouse-core/audits/work-during-interaction.js | presentationDelay": {
|
|
1677
1677
|
"message": "P̂ŕêśêńt̂át̂íôń d̂él̂áŷ"
|
|
1678
1678
|
},
|
|
1679
|
-
"lighthouse-core/audits/work-during-interaction.js |
|
|
1680
|
-
"message": "P̂ŕôćêśŝín̂ǵ
|
|
1679
|
+
"lighthouse-core/audits/work-during-interaction.js | processingTime": {
|
|
1680
|
+
"message": "P̂ŕôćêśŝín̂ǵ t̂ím̂é"
|
|
1681
1681
|
},
|
|
1682
1682
|
"lighthouse-core/audits/work-during-interaction.js | title": {
|
|
1683
1683
|
"message": "M̂ín̂ím̂íẑéŝ ẃôŕk̂ d́ûŕîńĝ ḱêý îńt̂ér̂áĉt́îón̂"
|