Skip to content

Commit a75b94f

Browse files
committed
Prevent submitting URL Metric if viewport size changed
1 parent cf4b6e9 commit a75b94f

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

plugins/optimization-detective/detect.js

+21-4
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,12 @@ function recursiveFreeze( obj ) {
127127
Object.freeze( obj );
128128
}
129129

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+
130136
/**
131137
* URL Metric being assembled for submission.
132138
*
@@ -442,10 +448,7 @@ export default async function detect( {
442448

443449
urlMetric = {
444450
url: currentUrl,
445-
viewport: {
446-
width: win.innerWidth,
447-
height: win.innerHeight,
448-
},
451+
viewport,
449452
elements: [],
450453
};
451454

@@ -506,6 +509,20 @@ export default async function detect( {
506509
);
507510
} );
508511

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+
509526
if ( extensions.size > 0 ) {
510527
for ( const [
511528
extensionModuleUrl,

0 commit comments

Comments
 (0)