| Summary: | Add the pseudo classes link and any-link to the Selector Code Generator | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Benjamin Poulain <benjamin> | ||||
| Component: | New Bugs | Assignee: | Benjamin Poulain <benjamin> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | commit-queue, esprehn+autocc, kangil.han, koivisto, rniwa | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Benjamin Poulain
2013-12-23 17:47:56 PST
Created attachment 219949 [details]
Patch
Comment on attachment 219949 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=219949&action=review > Source/WebCore/dom/Node.h:566 > static ptrdiff_t nodeFlagsMemoryOffset() { return OBJECT_OFFSETOF(Node, m_nodeFlags); } > - static uint8_t flagIsElement() { return IsElementFlag; } > + static int32_t flagIsElement() { return IsElementFlag; } > + static int32_t flagIsLink() { return IsLinkFlag; } It's unfortunate that we have to expose flags... ideally we have some mechanism to assert that the flag condition we're checking is consistent with Node's implementation. Comment on attachment 219949 [details] Patch Clearing flags on attachment: 219949 Committed r161046: <http://trac.webkit.org/changeset/161046> All reviewed patches have been landed. Closing bug. |