| Summary: | [New Multicolumn] Writing mode and direction of flow thread can mismatch enclosing paginated RenderView | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Dave Hyatt <hyatt> | ||||||
| Component: | Layout and Rendering | Assignee: | Dave Hyatt <hyatt> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | commit-queue, eoconnor, esprehn+autocc, glenn, kondapallykalyan, WebkitBugTracker | ||||||
| Priority: | P2 | ||||||||
| Version: | 528+ (Nightly build) | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Attachments: |
|
||||||||
|
Description
Dave Hyatt
2014-06-20 14:08:50 PDT
Created attachment 233452 [details]
Patch
Attachment 233452 [details] did not pass style-queue:
ERROR: Source/WebCore/rendering/RenderBox.cpp:401: Multi line control clauses should use braces. [whitespace/braces] [4]
ERROR: Source/WebCore/rendering/RenderBox.cpp:401: Weird number of spaces at line-start. Are you using a 4-space indent? [whitespace/indent] [3]
ERROR: Source/WebCore/rendering/RenderBox.cpp:402: Weird number of spaces at line-start. Are you using a 4-space indent? [whitespace/indent] [3]
ERROR: Source/WebCore/rendering/RenderBox.cpp:403: Weird number of spaces at line-start. Are you using a 4-space indent? [whitespace/indent] [3]
Total errors found: 4 in 1 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Created attachment 233617 [details]
Patch
Attachment 233617 [details] did not pass style-queue:
ERROR: Source/WebCore/rendering/RenderBlockFlow.cpp:1977: Multi line control clauses should use braces. [whitespace/braces] [4]
ERROR: Source/WebCore/rendering/RenderBlockFlow.cpp:1978: Weird number of spaces at line-start. Are you using a 4-space indent? [whitespace/indent] [3]
ERROR: Source/WebCore/rendering/RenderBlockFlow.cpp:1979: Weird number of spaces at line-start. Are you using a 4-space indent? [whitespace/indent] [3]
Total errors found: 3 in 8 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 233617 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=233617&action=review > Source/WebCore/rendering/RenderBox.cpp:372 > + RenderObject* rootRenderer = isBodyRenderer ? document().documentElement()->renderer() : nullptr; Slightly risky that someone will move rootRenderer outside the isBodyRenderer blocks below, but hopefully no one will be that careless ($10 that it will be me in 4 years time). |