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

Side by Side Diff: Source/core/dom/Node.h

Issue 571603003: Convert first letter into a pseudo element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved.
6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 227
228 bool isElementNode() const { return getFlag(IsElementFlag); } 228 bool isElementNode() const { return getFlag(IsElementFlag); }
229 bool isContainerNode() const { return getFlag(IsContainerFlag); } 229 bool isContainerNode() const { return getFlag(IsContainerFlag); }
230 bool isTextNode() const { return getFlag(IsTextFlag); } 230 bool isTextNode() const { return getFlag(IsTextFlag); }
231 bool isHTMLElement() const { return getFlag(IsHTMLFlag); } 231 bool isHTMLElement() const { return getFlag(IsHTMLFlag); }
232 bool isSVGElement() const { return getFlag(IsSVGFlag); } 232 bool isSVGElement() const { return getFlag(IsSVGFlag); }
233 233
234 bool isPseudoElement() const { return pseudoId() != NOPSEUDO; } 234 bool isPseudoElement() const { return pseudoId() != NOPSEUDO; }
235 bool isBeforePseudoElement() const { return pseudoId() == BEFORE; } 235 bool isBeforePseudoElement() const { return pseudoId() == BEFORE; }
236 bool isAfterPseudoElement() const { return pseudoId() == AFTER; } 236 bool isAfterPseudoElement() const { return pseudoId() == AFTER; }
237 bool isFirstLetterPseudoElement() const { return pseudoId() == FIRST_LETTER; }
237 virtual PseudoId pseudoId() const { return NOPSEUDO; } 238 virtual PseudoId pseudoId() const { return NOPSEUDO; }
238 239
239 bool isCustomElement() const { return getFlag(CustomElementFlag); } 240 bool isCustomElement() const { return getFlag(CustomElementFlag); }
240 enum CustomElementState { 241 enum CustomElementState {
241 NotCustomElement = 0, 242 NotCustomElement = 0,
242 WaitingForUpgrade = 1 << 0, 243 WaitingForUpgrade = 1 << 0,
243 Upgraded = 1 << 1 244 Upgraded = 1 << 1
244 }; 245 };
245 CustomElementState customElementState() const 246 CustomElementState customElementState() const
246 { 247 {
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 } // namespace blink 887 } // namespace blink
887 888
888 #ifndef NDEBUG 889 #ifndef NDEBUG
889 // Outside the WebCore namespace for ease of invocation from gdb. 890 // Outside the WebCore namespace for ease of invocation from gdb.
890 void showNode(const blink::Node*); 891 void showNode(const blink::Node*);
891 void showTree(const blink::Node*); 892 void showTree(const blink::Node*);
892 void showNodePath(const blink::Node*); 893 void showNodePath(const blink::Node*);
893 #endif 894 #endif
894 895
895 #endif // Node_h 896 #endif // Node_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698