css-houdini-drafts
css-houdini-drafts copied to clipboard
Mirror of https://hg.css-houdini.org/drafts
@shans PTAL, thanks!
Add description for serializing 'display' property.
Summary: Instead of using Rectangular box containers and complex formatting rules to define content alignment defining a container as a polygon allows simpler content control. Much like clipping path is...
From step 10 of https://drafts.css-houdini.org/css-paint-api-1/#invoke-a-paint-callback > At this stage the user agent may re-use an image from a previous invocation if paintSize, styleMap, inputArguments are equivalent to that previous invocation....
https://drafts.css-houdini.org/css-animation-worklet-1/#example-1 - the spec has an implementation of custom easing, but using it means you have to significantly change how you author animations, and the easing only applies across the...
https://drafts.css-houdini.org/css-properties-values-api-1/ For convenience I would talk about the CSS syntax, but the same could apply to the `registerProperty()` JS function as well. Currently, all the declarations inside the `@property` are...
While the `addModule()` method available on Worklets lets you load and install modules into the worklet, and uses a promise to let the caller know success or failure, there's no...
https://drafts.css-houdini.org/css-paint-api-1/#invoke-a-paint-callback step 5.3 does: > Let paintInstance be the result of Construct(paintCtor). but doesn't define the state changes necessary to do things like handle Promises queued from inside the constructor...
In the [section 2.2](https://drafts.css-houdini.org/worklets/#worklet-section), the step 10 in the algorithm: ``` If the worklet’s WorkletGlobalScopes is empty, run the following steps: 1. Create a WorkletGlobalScope given workletGlobalScopeType, moduleResponsesMap, and outsideSettings....
The [issue](https://github.com/WebAudio/web-audio-api/pull/1265#discussion_r128800868) came up from the discussion of AudioWorkletGlobalScope. Currently WorkletGlobalScope does not have a mechanism for error handling. Has been this discussed before?