RESOLVED FIXED 132834
Teach Editor to support more direct replacement of a Node
https://bugs.webkit.org/show_bug.cgi?id=132834
Summary Teach Editor to support more direct replacement of a Node
Brady Eidson
Reported 2014-05-12 13:34:34 PDT
Teach Editor to support more direct replacement of a Node. When using the new API "Editor::replaceNodeFromPasteboard" the intention is that the new DocumentFragment is as similar to the old Node as possible. In practice, the new DocumentFragment: 1 - Can represent a single node that's missing various attributes the original Node had. 2 - Can be an unwanted fragment of arbitrary depth when the replacement happens inside Mail.app This will fix both of those problems. <rdar://problem/16817952>
Attachments
Patch v1 (28.53 KB, patch)
2014-05-12 13:43 PDT, Brady Eidson
no flags
Patch v2 (29.67 KB, patch)
2014-05-12 14:24 PDT, Brady Eidson
enrica: review+
Brady Eidson
Comment 1 2014-05-12 13:43:32 PDT
Created attachment 231320 [details] Patch v1
WebKit Commit Bot
Comment 2 2014-05-12 13:46:27 PDT
Attachment 231320 [details] did not pass style-queue: ERROR: Source/WebCore/editing/ReplaceSelectionCommand.cpp:941: Boolean expressions that span multiple lines should have their operators on the left side of the line instead of the right side. [whitespace/operators] [4] ERROR: Source/WebCore/editing/ReplaceSelectionCommand.cpp:941: Multi line control clauses should use braces. [whitespace/braces] [4] ERROR: Source/WebCore/dom/TextEvent.h:46: The parameter name "view" adds no information, so it should be removed. [readability/parameter_name] [5] ERROR: Source/WebCore/dom/TextEvent.h:76: Weird number of spaces at line-start. Are you using a 4-space indent? [whitespace/indent] [3] ERROR: Source/WebCore/dom/TextEvent.cpp:85: Weird number of spaces at line-start. Are you using a 4-space indent? [whitespace/indent] [3] ERROR: Source/WebCore/dom/TextEvent.cpp:92: Wrong number of spaces before statement. (expected: 25) [whitespace/indent] [4] Total errors found: 6 in 10 files If any of these errors are false positives, please file a bug against check-webkit-style.
Brady Eidson
Comment 3 2014-05-12 14:24:40 PDT
Created attachment 231325 [details] Patch v2
Enrica Casucci
Comment 4 2014-05-12 14:57:50 PDT
Comment on attachment 231325 [details] Patch v2 View in context: https://bugs.webkit.org/attachment.cgi?id=231325&action=review Looks good to me. Please make sure all the editing tests are still passing. > Source/WebCore/editing/ReplaceSelectionCommand.h:46 > + IgnoreMailBlockquote = 1 << 6, No comma at the end of the last one
Brady Eidson
Comment 5 2014-05-12 15:04:06 PDT
(In reply to comment #4) > (From update of attachment 231325 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=231325&action=review > > Looks good to me. Please make sure all the editing tests are still passing. Doing that now! > > Source/WebCore/editing/ReplaceSelectionCommand.h:46 > > + IgnoreMailBlockquote = 1 << 6, > > No comma at the end of the last one Actually it's preferred (if not yet in the style guidelines) to include a comma on the last value. That was when a new value is added, the patch consists only of one addition instead of one subtraction and two additions. Thanks for the review!
Brady Eidson
Comment 6 2014-05-12 15:48:53 PDT
EWS was happy, and no changes locally. http://trac.webkit.org/changeset/168650
Brady Eidson
Comment 7 2014-05-12 17:08:33 PDT
Note You need to log in before you can comment on or make changes to this bug.