Auto-Submit | +1 |
Commit-Queue | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
The `in` operator was being used to check for the existence of a key in the `executionContextIsolateToTarget` Map. This is incorrect, as the `in` operator checks for properties on the object itself, not for keys within the map.
please format
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Auto-Submit | +1 |
Commit-Queue | +2 |
The `in` operator was being used to check for the existence of a key in the `executionContextIsolateToTarget` Map. This is incorrect, as the `in` operator checks for properties on the object itself, not for keys within the map.
Paul Irishplease format
Done
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
3 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
RPP: Fix orphan script association in EnhancedTracesParser
The `in` operator was being used to check for the existence of a key in
the `executionContextIsolateToTarget` Map. This is incorrect, as the
`in` operator checks for properties on the object itself, not for keys
within the map.
This caused the check to always fail, preventing orphan scripts from
being correctly associated with their target frame via their execution
context.
This change corrects the logic to use `map.get()` and a subsequent
truthiness check, ensuring scripts are correctly associated.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |