瀏覽代碼

LibWeb: Implement missing members of AnimationEffect.getComputedTiming()

Matthew Olsson 1 年之前
父節點
當前提交
a7727215a6
共有 1 個文件被更改,包括 5 次插入6 次删除
  1. 5 6
      Userland/Libraries/LibWeb/Animations/AnimationEffect.cpp

+ 5 - 6
Userland/Libraries/LibWeb/Animations/AnimationEffect.cpp

@@ -83,12 +83,11 @@ ComputedEffectTiming AnimationEffect::get_computed_timing() const
             .easing = m_easing_function,
         },
 
-        // FIXME:
-        0.0,
-        0.0,
-        0.0,
-        0.0,
-        0.0,
+        end_time(),
+        active_duration(),
+        local_time(),
+        transformed_progress(),
+        current_iteration(),
     };
 }