Bug 33964

Summary: Added RenderMathMLBlock as based object for MathML
Product: WebKit Reporter: Alex Milowski <alex>
Component: WebCore Misc.Assignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, michael.vm
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Mac (Intel)   
OS: OS X 10.5   
Bug Depends on:    
Bug Blocks: 3251    
Attachments:
Description Flags
RenderMathMLBlock Patch
hyatt: review-
Update to patch to address issues none

Alex Milowski
Reported 2010-01-21 12:07:48 PST
This patch adds a new base render object for inline-block elements of MathML. It also sets up the necessary bits for all the rendering objects to follow.
Attachments
RenderMathMLBlock Patch (94.49 KB, patch)
2010-01-21 12:08 PST, Alex Milowski
hyatt: review-
Update to patch to address issues (94.16 KB, patch)
2010-01-21 15:42 PST, Alex Milowski
no flags
Alex Milowski
Comment 1 2010-01-21 12:08:43 PST
Created attachment 47135 [details] RenderMathMLBlock Patch
Dave Hyatt
Comment 2 2010-01-21 14:25:24 PST
Comment on attachment 47135 [details] RenderMathMLBlock Patch In RenderMathMLBlock::styleDidChange, why are you marking the block as needing layout and pref width recalc always? That's really inefficient. I'm also not clear on wny it's necessary. Isn't the style diff doing the right thing in the base classes? In isChildAllowed you don't have to do ? true : false. Just return the conditional itself. stretchToHeight would be cleaner using a for loop to walk the children in my opinion. for (RenderObject* current = firstChild(); current; current = current->nextSibling()); It seems like makeBlockStyle should return a PassRefPtr, since you're wanting to have it be set on some RenderObject presumably.
Alex Milowski
Comment 3 2010-01-21 15:42:28 PST
Created attachment 47154 [details] Update to patch to address issues The styleDidChange method was removed. It isn't necessary in the code. The other changes have been made.
Dave Hyatt
Comment 4 2010-01-22 10:01:54 PST
Comment on attachment 47154 [details] Update to patch to address issues r=me
WebKit Commit Bot
Comment 5 2010-01-22 23:12:06 PST
Comment on attachment 47154 [details] Update to patch to address issues Clearing flags on attachment: 47154 Committed r53764: <http://trac.webkit.org/changeset/53764>
WebKit Commit Bot
Comment 6 2010-01-22 23:12:11 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.