WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
239921
[Modern Media Controls] the overflow button sometimes flickers
https://bugs.webkit.org/show_bug.cgi?id=239921
Summary
[Modern Media Controls] the overflow button sometimes flickers
Devin Rousso
Reported
2022-04-29 19:00:35 PDT
.
Attachments
Patch
(8.32 KB, patch)
2022-04-29 19:14 PDT
,
Devin Rousso
ews-feeder
: commit-queue-
Details
Formatted Diff
Diff
Patch
(8.33 KB, patch)
2022-04-29 22:51 PDT
,
Devin Rousso
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Devin Rousso
Comment 1
2022-04-29 19:00:52 PDT
<
rdar://problem/91329468
>
Devin Rousso
Comment 2
2022-04-29 19:14:36 PDT
Created
attachment 458625
[details]
Patch
Devin Rousso
Comment 3
2022-04-29 22:51:34 PDT
Created
attachment 458630
[details]
Patch
Eric Carlson
Comment 4
2022-04-30 21:25:40 PDT
Comment on
attachment 458630
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=458630&action=review
> Source/WebCore/Modules/modern-media-controls/controls/overflow-button.js:53 > + for (let key in contextMenuOptions) > + return false; > + return true;
This is clever, but it made me think twice about what it does and how it works. Is there a more obvious, or idiomatic, way of testing for an empty object?
Devin Rousso
Comment 5
2022-05-01 17:58:22 PDT
Comment on
attachment 458630
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=458630&action=review
>> Source/WebCore/Modules/modern-media-controls/controls/overflow-button.js:53 >> + return true; > > This is clever, but it made me think twice about what it does and how it works. Is there a more obvious, or idiomatic, way of testing for an empty object?
There are other ways of doing this (e.g. `Object.getOwnPropertyNames(contextMenuOptions).length`), but the primary issue with many of them is that they require iterating _all_ of the keys before returning a result. This approach is by far the most efficient in that it requires iterating only a single key. Yes, that isn't a huge problem here given that we (currently) will never have more than five keys, but I'd prefer to do the optimal thing nevertheless. FWIW this is used in Web Inspector as `isEmptyObject`, so there is some "prior art" :)
EWS
Comment 6
2022-05-01 18:49:08 PDT
Committed
r293658
(
250162@main
): <
https://commits.webkit.org/250162@main
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 458630
[details]
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug