Title: [233731] trunk/Source/WebCore
Revision
233731
Author
grao...@webkit.org
Date
2018-07-11 09:40:27 -0700 (Wed, 11 Jul 2018)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (233730 => 233731)


--- trunk/Source/WebCore/ChangeLog	2018-07-11 16:34:37 UTC (rev 233730)
+++ trunk/Source/WebCore/ChangeLog	2018-07-11 16:40:27 UTC (rev 233731)
@@ -4,6 +4,17 @@
         https://bugs.webkit.org/show_bug.cgi?id=186501
         <rdar://problem/41000224>
 
+        Unreviewed build fix after r233729 and r233730.
+
+        * animation/KeyframeEffectReadOnly.cpp:
+        (WebCore::processIterableKeyframes):
+
+2018-07-11  Antoine Quint  <grao...@apple.com>
+
+        [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.
 
         * animation/KeyframeEffectReadOnly.cpp:

Modified: trunk/Source/WebCore/animation/KeyframeEffectReadOnly.cpp (233730 => 233731)


--- trunk/Source/WebCore/animation/KeyframeEffectReadOnly.cpp	2018-07-11 16:34:37 UTC (rev 233730)
+++ trunk/Source/WebCore/animation/KeyframeEffectReadOnly.cpp	2018-07-11 16:40:27 UTC (rev 233731)
@@ -268,8 +268,6 @@
 
 static inline ExceptionOr<void> processIterableKeyframes(ExecState& state, Strong<JSObject>&& keyframesInput, JSValue method, Vector<KeyframeEffectReadOnly::ParsedKeyframe>& parsedKeyframes)
 {
-    VM& vm = state.vm();
-
     // 1. Let iter be GetIterator(object, method).
     forEachInIterable(state, keyframesInput.get(), method, [&parsedKeyframes](VM& vm, ExecState& state, JSValue nextValue) -> ExceptionOr<void> {
         // Steps 2 through 6 are already implemented by forEachInIterable().
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to