| Summary: | Move shouldIgnoreAttributeCase inline function to Element.h | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Csaba Osztrogonác <ossy> | ||||
| Component: | New Bugs | Assignee: | Csaba Osztrogonác <ossy> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | cmarcelo, commit-queue, esprehn+autocc, kangil.han, ossy | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Bug Depends on: | |||||||
| Bug Blocks: | 146587 | ||||||
| Attachments: |
|
||||||
Created attachment 256096 [details]
Patch
ping? Comment on attachment 256096 [details] Patch Clearing flags on attachment: 256096 Committed r186398: <http://trac.webkit.org/changeset/186398> All reviewed patches have been landed. Closing bug. |
inline bool shouldIgnoreAttributeCase(const Element& element) { return element.isHTMLElement() && element.document().isHTMLDocument(); } Now it is defined in Source/WebCore/dom/NamedNodeMap.cpp and Source/WebCore/dom/Element.cpp too. But it makes impossible to include both of these files in an all-in-one build - bug146587. To fix this issue, we should move this function to a header file.