| Summary: | Allow composited clip-path to be updated without a layer repaint | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Simon Fraser (smfr) <simon.fraser> | ||||
| Component: | New Bugs | Assignee: | Simon Fraser (smfr) <simon.fraser> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | commit-queue, dino, esprehn+autocc, glenn, kondapallykalyan, krit, simon.fraser, zalan | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Simon Fraser (smfr)
2015-03-05 22:18:00 PST
Created attachment 248041 [details]
Patch
Comment on attachment 248041 [details] Patch Clearing flags on attachment: 248041 Committed r181164: <http://trac.webkit.org/changeset/181164> All reviewed patches have been landed. Closing bug. Comment on attachment 248041 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=248041&action=review > Source/WebCore/rendering/RenderLayerCompositor.cpp:938 > + return (clipPath.type() != ClipPathOperation::Shape || clipPath.type() == ClipPathOperation::Shape) && GraphicsLayer::supportsLayerType(GraphicsLayer::Type::Shape); You have (.type() != ::Shape || .type() == ::Shape) && ... Did you mean to check for != to something different? |