-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
performance.getEntriesByName ignores optional type argument #54766
Labels
perf_hooks
Issues and PRs related to the implementation of the Performance Timing API.
web-standards
Issues and PRs related to Web APIs
Comments
luketaher
added a commit
to luketaher/node
that referenced
this issue
Sep 4, 2024
avivkeller
added
perf_hooks
Issues and PRs related to the implementation of the Performance Timing API.
web-standards
Issues and PRs related to Web APIs
labels
Sep 4, 2024
nodejs-github-bot
pushed a commit
that referenced
this issue
Sep 24, 2024
Fixes: #54766 PR-URL: #54767 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
targos
pushed a commit
that referenced
this issue
Oct 4, 2024
Fixes: #54766 PR-URL: #54767 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
louwers
pushed a commit
to louwers/node
that referenced
this issue
Nov 2, 2024
Fixes: nodejs#54766 PR-URL: nodejs#54767 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
marco-ippolito
pushed a commit
that referenced
this issue
Nov 16, 2024
Fixes: #54766 PR-URL: #54767 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
marco-ippolito
pushed a commit
that referenced
this issue
Nov 17, 2024
Fixes: #54766 PR-URL: #54767 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
tpoisseau
pushed a commit
to tpoisseau/node
that referenced
this issue
Nov 21, 2024
Fixes: nodejs#54766 PR-URL: nodejs#54767 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
perf_hooks
Issues and PRs related to the implementation of the Performance Timing API.
web-standards
Issues and PRs related to Web APIs
Version
v16.7.0 - v22.7.0
Platform
Subsystem
perf_hooks
What steps will reproduce the bug?
Executing this script:
How often does it reproduce? Is there a required condition?
100% of the time
What is the expected behavior? Why is that the expected behavior?
As per:
The expected behaviour is:
What do you see instead?
Additional information
This bug appears to have existed since
performance.getEntriesByName
was added as part of performance timeline spec compliance in v16.7.0.#39297 introduced
performance.getEntriesByName
without a type argument. While thetype
argument was subsequently added to the underlyingobserve.getEntriesByName
method in #39532, it was never passed through byperformance.getEntriesByName
.The text was updated successfully, but these errors were encountered: