WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
209240
[Web Animations] Mark promises as handled when rejected
https://bugs.webkit.org/show_bug.cgi?id=209240
Summary
[Web Animations] Mark promises as handled when rejected
Antoine Quint
Reported
2020-03-18 11:15:05 PDT
We need to implement
https://github.com/w3c/csswg-drafts/issues/4556
. This will help with test flakiness so that we don't get console messages when calling cancel().
Attachments
Patch
(11.53 KB, patch)
2020-03-19 02:51 PDT
,
Antoine Quint
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2020-03-18 11:15:35 PDT
<
rdar://problem/60592305
>
Antoine Quint
Comment 2
2020-03-19 02:51:03 PDT
Created
attachment 393958
[details]
Patch
youenn fablet
Comment 3
2020-03-19 07:35:10 PDT
Comment on
attachment 393958
[details]
Patch Looks ok to me. I still think we should not be passing a Handled value to reject() in this case though. This promise is an attribute or state promise, reject should always be using Handled. Instead of leaving the choice here, I would hardcode RejectAsHandled::Yes in DOMPromiseProxyWithResolveCallback<IDLType>::reject, something like: inline void DOMPromiseProxyWithResolveCallback<IDLType>::reject(Exception exception) { ASSERT(!m_valueOrException); m_valueOrException = ExceptionOr<void> { WTFMove(exception) }; for (auto& deferredPromise : m_deferredPromises) deferredPromise->reject(m_valueOrException->exception(), RejectAsHandled::Yes); }
Antoine Quint
Comment 4
2020-03-19 09:24:18 PDT
(In reply to youenn fablet from
comment #3
)
> Comment on
attachment 393958
[details]
> Patch > > Looks ok to me. > > I still think we should not be passing a Handled value to reject() in this > case though. > This promise is an attribute or state promise, reject should always be using > Handled. > Instead of leaving the choice here, I would hardcode RejectAsHandled::Yes in > DOMPromiseProxyWithResolveCallback<IDLType>::reject, something like: > inline void DOMPromiseProxyWithResolveCallback<IDLType>::reject(Exception > exception) > { > ASSERT(!m_valueOrException); > > m_valueOrException = ExceptionOr<void> { WTFMove(exception) }; > for (auto& deferredPromise : m_deferredPromises) > deferredPromise->reject(m_valueOrException->exception(), > RejectAsHandled::Yes); > }
I'm landing this patch as-is, I don't feel like we should make that kind of broader change without some standards discussion first.
EWS
Comment 5
2020-03-19 09:42:29 PDT
Committed
r258702
: <
https://trac.webkit.org/changeset/258702
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 393958
[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