| Summary: | Fix style invalidation of elements with multiple siblings dependencies | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Benjamin Poulain <benjamin> | ||||
| Component: | New Bugs | Assignee: | Benjamin Poulain <benjamin> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | kling, koivisto | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Benjamin Poulain
2014-09-02 18:23:14 PDT
Created attachment 237542 [details]
Patch
Comment on attachment 237542 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=237542&action=review r=me > Source/WebCore/html/HTMLElement.h:91 > - bool isHTMLUnknownElement() const { return getFlag(IsHTMLUnknownElementFlag); } > + virtual bool isHTMLUnknownElement() const { return false; } RIP my micro-optimization :| > Source/WebCore/html/HTMLUnknownElement.h:44 > + virtual bool isHTMLUnknownElement() const { return true; } Missing override. Committed r173229: <http://trac.webkit.org/changeset/173229> |