[go: nahoru, domu]

Skip to content
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

core(inspector-issues): add stylesheetLoadingIssue #15144

Merged
merged 2 commits into from
Jun 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix
  • Loading branch information
adamraine committed Jun 8, 2023
commit 6c2fd9d8955690495eb6d5a4b9aad6e0795a7b25
2 changes: 1 addition & 1 deletion core/lib/tracehouse/trace-processor.js
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ class TraceProcessor {
return Boolean(
evt.name === 'FrameCommittedInBrowser' &&
evt.args.data?.frame &&
evt.args.data.url
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://bugs.chromium.org/p/chromium/issues/detail?id=1453289

This is unrelated, but we need to fix both issues at the same time to land.

evt.args.data.url !== undefined
);
}).forEach(evt => {
framesById.set(evt.args.data.frame, {
Expand Down
Loading