- From: Daniel Glazman <daniel.glazman@disruptive-innovations.com>
- Date: Tue, 18 Oct 2016 11:33:18 +0200
- To: "w3c-css-wg@w3.orgw3c-css-wg"@w3.org
- Cc: public-editing-tf@w3.org
On 18/10/2016 04:06, Alan Stearns wrote: > 4. Copy/Paste > https://lists.w3.org/Archives/Public/public-editing-tf/2016Apr/0005.html (Sorry, error in the Cc in the original message so resending with the correct Editing TF email) I won't be able to attend that discussion, so here my thoughts about it, based on 25 years of handling of this problem in various markup-based editors... This is clearly one of the MAJOR issues all Wysiwyg markup-based editors have to face. Cc:ing to public-editing then. One important thing we must not forget is the fact we're biased. We think of Web content editors only and that harms other potential usages of html-based core editors. We are geeks and don't edit content like non-geeks. We understand the issues, most editing environment users don't. So I would myself divide the problem into the following cases: 1. style-preserve: current-best Copy exactly the html and try to resolve all styles into inline styles. This is the case where you want to preserve all the styles of the source selection. Fantasai is right that style attributes are _almost_ (see below) enough but unfortunately, !mportant could be necessary in those style attributes depending on the target document and stylesheets. That leaves some complexity to the target document's side. Unfortunately, we also have to deal with pseudo-elements and at-rules here. For the former, the style attribute can't help and the CSS WG identified that issue long ago. For the latter, it would be for instance extremely difficult to copy styles for all MQs or copy animations because painful collisions could happen in the target document. Determining precisely where to store those CSS rules would also be painful. So it's also pointless to preserve the animation properties UNLESS the animation name exists in the target document. That's why it can't be "preserve all", it can only be "preserve best". It's also "preserve current" because of Media Queries. I'd like to note I've always said scoped stylesheets would be immensely useful here but... sigh. Some new API could help here and that's where the CSS WG could help. 2. style-preserve: basic Copy the html as is (don't inline styles inherited from the ancestry or acquired from CSS rules.) This is fantasai's c) case. 3. style-preserve: none Copy the html but strip inline styles and presentational html attributes from all elements. And of course don't inline inherited or CSS-rule-based styles. The question of presentational html ELEMENTS like B or I remains open. I tend to get rid of them replacing them by their child nodes. Side note: IDs should usually be stripped to avoid collisions. The case of named anchors is unfortunately painful... Class attributes can complexify quite a bit the paste operation. Fantasai's b) case does not really exist, seen from the copy operation. It's exactly her a) case plus some extra operations done during the paste operation, potentially requiring user prompt. Hope that helps. </Daniel>
Received on Tuesday, 18 October 2016 09:33:46 UTC