Majid Valipour

Results 10 issues of Majid Valipour

I think the function argument that `provideFirebaseApp()` accepts should have the following signature `fn: (injector: Injector) => IFirebaseApp` instead of `fn: () => IFirebaseApp` ### Additional Context The function argument...

The CSS property name is outdated in the dashboard: https://www.chromestatus.com/metrics/css/timeline/popularity/585 Instead of `scroll-boundary-behavior` it should be `overscroll-behavior`. Same applies to `scroll-boundary-behavior-{x,y}`. This CSS property was renamed from scroll-boundary-behavior to overscroll...

bug

Here are a few improvements to current polyfill that would make it work better in presence of native implementation. ## Polyfill should not install if there is native implementation Currently...

We have a bunch of scattered demos for scroll timelines. Specially a few that don't use element-based offsets. I think it will be a good idea to consolidate them all...

Many useful effects running inside animation worklet may need to know about specific values from main thread, e.g., size of window or bounding client rects of various objects. We allow...

css-animationworklet-2

_From @RByers on September 22, 2016 15:53_ For example, in the spring example it should be possible for the Animator to somehow say "I'm done now, stop invoking my `animate`...

css-animationworklet-2

Added to GIFs that showcase the examples we have. The source material is https://googlechrome.github.io/houdini-samples/. I am not really sure if these are actually adding useful value or may be distracting?

The expectation is that when on calls `worker.addEventTarget(target)` on main thread, the worker will receive the delegated target via the following handler. ```js // in worker addEventListener("eventtargetadded", ({delegated_target}) => {...

``` dictionary EventDelegationOptions { any context; }; ``` The proposed API proposed a `context` member that can be used when delegating an event target to a worker. It mentions that...

[Section 3](https://wicg.github.io/input-for-workers/#dispatching-a-pointerevent-to-the-eventdelegate) of the spec discusses the fork and dispatch semantic but it is very sparse. We should add the following: - Order of dispatch, is there any ordering gauranteed?...