File tree 1 file changed +21
-4
lines changed
plugins/optimization-detective
1 file changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,12 @@ function recursiveFreeze( obj ) {
127
127
Object . freeze ( obj ) ;
128
128
}
129
129
130
+ // This needs to be captured early in case the user later resizes the window.
131
+ const viewport = {
132
+ width : win . innerWidth ,
133
+ height : win . innerHeight ,
134
+ } ;
135
+
130
136
/**
131
137
* URL Metric being assembled for submission.
132
138
*
@@ -442,10 +448,7 @@ export default async function detect( {
442
448
443
449
urlMetric = {
444
450
url : currentUrl ,
445
- viewport : {
446
- width : win . innerWidth ,
447
- height : win . innerHeight ,
448
- } ,
451
+ viewport,
449
452
elements : [ ] ,
450
453
} ;
451
454
@@ -506,6 +509,20 @@ export default async function detect( {
506
509
) ;
507
510
} ) ;
508
511
512
+ // Only proceed with submitting the URL Metric if viewport stayed the same size. Changing the viewport size (e.g. due
513
+ // to resizing a window or changing the orientation of a device) will result in unexpected metrics being collected.
514
+ if (
515
+ window . innerWidth !== urlMetric . viewport . width ||
516
+ window . innerHeight !== urlMetric . viewport . height
517
+ ) {
518
+ if ( isDebug ) {
519
+ log (
520
+ 'Aborting URL Metric collection due to viewport size change.'
521
+ ) ;
522
+ }
523
+ return ;
524
+ }
525
+
509
526
if ( extensions . size > 0 ) {
510
527
for ( const [
511
528
extensionModuleUrl ,
You can’t perform that action at this time.
0 commit comments