Changeset 233731 in webkit


Ignore:
Timestamp:
Jul 11, 2018 9:40:27 AM (6 years ago)
Author:
graouts@webkit.org
Message:

[Web Animations] Make WPT test at interfaces/KeyframeEffect/processing-a-keyframes-argument-001.html pass reliably
https://bugs.webkit.org/show_bug.cgi?id=186501
<rdar://problem/41000224>

Unreviewed build fix after r233729 and r233730.

  • animation/KeyframeEffectReadOnly.cpp:

(WebCore::processIterableKeyframes):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r233730 r233731  
     12018-07-11  Antoine Quint  <graouts@apple.com>
     2
     3        [Web Animations] Make WPT test at interfaces/KeyframeEffect/processing-a-keyframes-argument-001.html pass reliably
     4        https://bugs.webkit.org/show_bug.cgi?id=186501
     5        <rdar://problem/41000224>
     6
     7        Unreviewed build fix after r233729 and r233730.
     8
     9        * animation/KeyframeEffectReadOnly.cpp:
     10        (WebCore::processIterableKeyframes):
     11
    1122018-07-11  Antoine Quint  <graouts@apple.com>
    213
  • trunk/Source/WebCore/animation/KeyframeEffectReadOnly.cpp

    r233730 r233731  
    269269static inline ExceptionOr<void> processIterableKeyframes(ExecState& state, Strong<JSObject>&& keyframesInput, JSValue method, Vector<KeyframeEffectReadOnly::ParsedKeyframe>& parsedKeyframes)
    270270{
    271     VM& vm = state.vm();
    272 
    273271    // 1. Let iter be GetIterator(object, method).
    274272    forEachInIterable(state, keyframesInput.get(), method, [&parsedKeyframes](VM& vm, ExecState& state, JSValue nextValue) -> ExceptionOr<void> {
Note: See TracChangeset for help on using the changeset viewer.