[css-houdini-drafts] [css-paint-api] Remove alpha flag, in favour of a contextSettings flag?

bfgeek has just created a new issue for https://github.com/w3c/css-houdini-drafts:

== [css-paint-api] Remove alpha flag, in favour of a contextSettings flag? ==
Currently we have:
```js
registerPaint('foo', class {
  static alpha = false;
});
```

Do we want this to be:
```js
registerPaint('foo', class {
  static contextSettings = {
    alpha: false;
  };
});
```

This is to allow other context settings in the future in the same object, e.g. colorSpace.

Please view or discuss this issue at https://github.com/w3c/css-houdini-drafts/issues/435 using your GitHub account

Received on Tuesday, 1 August 2017 08:18:45 UTC