Bug 38855

Summary: check-webkit-style issue with lower/upper case
Product: WebKit Reporter: John Abd-El-Malek <jam>
Component: Tools / TestsAssignee: Alan Cutter <alancutter>
Status: RESOLVED WONTFIX    
Severity: Normal CC: abarth, alancutter, dpranke, eric, levin, webkit.review.bot
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: PC   
OS: OS X 10.5   
Attachments:
Description Flags
Patch levin: review-

Description John Abd-El-Malek 2010-05-10 10:08:56 PDT
I got a warning for this

#include "Scrollbar.h"
#include "ScrollbarTheme.h"
#include "ScrollTypes.h"

But I believe this is ordered correctly, and the problem is because it thinks "T" is before "b" because of the ASCII representation.
Comment 1 Alan Cutter 2013-03-12 18:23:36 PDT
Created attachment 192849 [details]
Patch
Comment 2 David Levin 2013-03-12 19:09:37 PDT
Comment on attachment 192849 [details]
Patch

The bug wasn't filed by someone familiar with WebKit style:

Other #include statements should be in sorted order (case sensitive, as done by the command-line sort tool or the Xcode sort selection command). Don't bother to organize them in a logical order.
-- http://www.webkit.org/coding/coding-style.html
Comment 3 Alan Cutter 2013-03-12 19:17:13 PDT
(In reply to comment #2)
> (From update of attachment 192849 [details])
> The bug wasn't filed by someone familiar with WebKit style:
> 
> Other #include statements should be in sorted order (case sensitive, as done by the command-line sort tool or the Xcode sort selection command). Don't bother to organize them in a logical order.
> -- http://www.webkit.org/coding/coding-style.html

Thanks for clarifying, closing bug.