[fxtf-drafts] [css-compositing] Clarify what "SVG" and "SVG element" refer to in "3.3 Behavior specific to SVG" (#403)

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

== [css-compositing] Clarify what "SVG" and "SVG element" refer to in "3.3 Behavior specific to SVG" ==
https://drafts.fxtf.org/compositing-1/#csscompositingrules_SVG

It's not clear what "SVG" and "SVG element" refer to. Chrome interprets "SVG" as "SVG document" and "SVG element" as "SVG document element", so an embedded SVG doesn't create a isolated group by default. Firefox seems to interpret them differently.

<!DOCTYPE html>
<html style="background: blue">
  <svg width=200 height=200>
    <rect width=200 height=200 fill="yellow" style="mix-blend-mode: multiply"/>
  </svg>
</html>

In Chrome (86), the box is black, while in Firefox (68.11.0esr) it's yellow.

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


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Monday, 24 August 2020 22:58:20 UTC