| Index: Source/core/dom/Node.h
|
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
|
| index a3883658317f606840058561a03e4e762d46a3b0..04eb6289218b4969b969289c42d052433be629c7 100644
|
| --- a/Source/core/dom/Node.h
|
| +++ b/Source/core/dom/Node.h
|
| @@ -233,6 +233,7 @@ public:
|
| bool isPseudoElement() const { return pseudoId() != NOPSEUDO; }
|
| bool isBeforePseudoElement() const { return pseudoId() == BEFORE; }
|
| bool isAfterPseudoElement() const { return pseudoId() == AFTER; }
|
| + bool isFirstLetterPseudoElement() const { return pseudoId() == FIRST_LETTER; }
|
| virtual PseudoId pseudoId() const { return NOPSEUDO; }
|
|
|
| bool isCustomElement() const { return getFlag(CustomElementFlag); }
|
|
|