[fxtf-drafts] [motion-1] How to present offset-path: path(' ') (#392)

BorisChiou has just created a new issue for https://github.com/w3c/fxtf-drafts:

== [motion-1] How to present offset-path: path(' ') ==
Based on the definition of SVG1.1 and [SVG2](https://svgwg.org/svg2-draft/paths.html#PathDataBNF):
> The EBNF allows the path data string in the d property to be empty. An empty path data string disables rendering of the path. Rendering is also disabled when the d property has the value none.

So an empty path string is valid. And then what is the expected computed value for this case?
```
offset-path: path(' ');
```
If someone calls `getComputedStyle(div).offsetPath`, should we return `path('')` or `none` for `offset-path`? It seems Blinks return `none` for now. It looks like the [spec](https://drafts.fxtf.org/motion-1/#offsetpath-pathfunc) doesn't mention this, anyway.

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

Received on Wednesday, 22 January 2020 23:13:22 UTC