Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Unified Diff: Source/core/css/CSSParserValues.h

Issue 330043003: Add support for case-insensitive attribute value selectors (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Make union w/ m_attributeFlags and nth-state; Return enum type. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/css/CSSParserValues.h
diff --git a/Source/core/css/CSSParserValues.h b/Source/core/css/CSSParserValues.h
index f4af0c00f2399300b1e244cd10d133bc95c4f6b2..ee3be546b0b5d2272ecc35756ee78d963756f972 100644
--- a/Source/core/css/CSSParserValues.h
+++ b/Source/core/css/CSSParserValues.h
@@ -221,7 +221,7 @@ public:
CSSSelector::Relation relation() const { return m_selector->relation(); }
void setValue(const AtomicString& value) { m_selector->setValue(value); }
- void setAttribute(const QualifiedName& value) { m_selector->setAttribute(value); }
+ void setAttribute(const QualifiedName& value, unsigned flags) { m_selector->setAttribute(value, flags); }
void setArgument(const AtomicString& value) { m_selector->setArgument(value); }
void setMatch(CSSSelector::Match value) { m_selector->setMatch(value); }
void setRelation(CSSSelector::Relation value) { m_selector->setRelation(value); }

Powered by Google App Engine
This is Rietveld 408576698