| Summary: | [CSS Shapes] inset() function with multiple spaces on element style | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Dirk Schulze <krit> | ||||||
| Component: | CSS | Assignee: | Zoltan Horvath <zoltan> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | betravis, bjonesbe, commit-queue, esprehn+autocc, glenn, gyuyoung.kim, macpherson, menard, rwlbuis, zoltan | ||||||
| Priority: | P2 | ||||||||
| Version: | 528+ (Nightly build) | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Bug Depends on: | |||||||||
| Bug Blocks: | 124173 | ||||||||
| Attachments: |
|
||||||||
|
Description
Dirk Schulze
2014-01-25 04:22:23 PST
Created attachment 222212 [details]
Patch
Comment on attachment 222212 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=222212&action=review r=me with comments. > Source/WebCore/css/CSSBasicShapes.cpp:428 > + if (!right.isNull()) { > + result.appendLiteral(separator); > + result.append(right); > + if (!bottom.isNull()) { > + result.appendLiteral(separator); > + result.append(bottom); > + if (!left.isNull()) { > + result.appendLiteral(separator); > + result.append(left); > + } > + } > + } I don't think that it needs to be nested... At this point we should be able to rely on sane data, shouldn't we? Of course we would have some extra checks though. I leaf it up to you. > Source/WebCore/css/CSSBasicShapes.cpp:444 > + result.append("/"); s/"/'/g Created attachment 222334 [details]
Patch for landing
Comment on attachment 222334 [details] Patch for landing Clearing flags on attachment: 222334 Committed r162848: <http://trac.webkit.org/changeset/162848> All reviewed patches have been landed. Closing bug. |