Bug 29740

Summary: Gmail: After changing a foreground text color, pressing return doesn't apply background to new line
Product: WebKit Reporter: Enrica Casucci <enrica>
Component: HTML EditingAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: adele, eric, rniwa
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: PC   
OS: All   
Attachments:
Description Flags
Patch
adele: review+
Patch2 none

Description Enrica Casucci 2009-09-25 09:44:56 PDT
* STEPS TO REPRODUCE
1. Launch TOT or stock Safari 4.0.3 under SL 10A342.
2. Login to your Gmail account and click Compose Mail.
3. On the Gmail toolbar , click the Highlight text color icon. Select a color from this palette.
4. Type in the message and verify the background color is applied. Now click on the Text Color icon and choose a different color.
5. Continue to type and verify new text color is being used when you type. 
6. Now , press <return> to create a new line. Type on this new line and notice the background color is missing when you type.

<rdar://problem/7168738>
Comment 1 Enrica Casucci 2009-09-25 10:35:50 PDT
Created attachment 40118 [details]
Patch

Adding the patch.
Comment 2 Adele Peterson 2009-09-25 10:39:27 PDT
I'm going to commit this.
Comment 3 Darin Adler 2009-09-25 10:40:33 PDT
Comment on attachment 40118 [details]
Patch

I was about to say r=me, but Adele beat me to it.

> +void InsertParagraphSeparatorCommand::ancestorsInsideBlock(const Node* insertionNode, Element* outerBlock, Vector<Element*>& ancestors)

Functions with an out argument like this have "get" in their name in the WebKit coding style, so this should be named getAncestorsInsideBlock.

But I just realized this is not in the coding style document. We should add that!

This also requires an empty vector, because it appends, but does not clear the vector. That's probably OK. I'm not sure.

r=me but please add the "get"
Comment 4 Enrica Casucci 2009-09-25 11:06:01 PDT
Created attachment 40125 [details]
Patch2

New patch that includes the name change (getAncestorsInsideBlock) and the clear of the vector before appending.
Comment 5 Adele Peterson 2009-09-25 11:58:28 PDT
<rdar://problem/7168738>

Committed revision 48764.