Bug 139104

Summary: Move the '-webkit-locale', '-webkit-text-orientation', '-webkit-writing-mode', '-webkit-justify-self' and '-webkit-perspective' CSS properties to the new StyleBuilder
Product: WebKit Reporter: Sam Weinig <sam>
Component: New BugsAssignee: Sam Weinig <sam>
Status: RESOLVED FIXED    
Severity: Normal CC: cdumez, commit-queue
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on: 137910    
Bug Blocks:    
Attachments:
Description Flags
Patch none

Description Sam Weinig 2014-11-29 15:45:16 PST
Move the '-webkit-locale', '-webkit-text-orientation', '-webkit-writing-mode', '-webkit-justify-self' and '-webkit-perspective' CSS properties to the new StyleBuilder
Comment 1 Sam Weinig 2014-11-29 15:45:52 PST
Created attachment 242283 [details]
Patch
Comment 2 WebKit Commit Bot 2014-11-29 16:38:56 PST
Comment on attachment 242283 [details]
Patch

Clearing flags on attachment: 242283

Committed r176584: <http://trac.webkit.org/changeset/176584>
Comment 3 WebKit Commit Bot 2014-11-29 16:38:59 PST
All reviewed patches have been landed.  Closing bug.
Comment 4 Chris Dumez 2015-01-04 14:17:30 PST
Comment on attachment 242283 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=242283&action=review

> Source/WebCore/css/StyleBuilderCustom.h:677
> +    styleResolver.setTextOrientation(downcast<CSSPrimitiveValue>(value));

This does not need custom code, this is the default StyleBuilder behavior. I'll take care of removing this handler.
Comment 5 Chris Dumez 2015-01-04 16:07:21 PST
Comment on attachment 242283 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=242283&action=review

>> Source/WebCore/css/StyleBuilderCustom.h:677
>> +    styleResolver.setTextOrientation(downcast<CSSPrimitiveValue>(value));
> 
> This does not need custom code, this is the default StyleBuilder behavior. I'll take care of removing this handler.

Ah, never mind, I have just noticed the setter is on StyleResolver, not RenderStyle.