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

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

Issue 672953002: Convert first letter into a pseudo element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « Source/core/dom/FirstLetterPseudoElement.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
893 } // namespace blink 894 } // namespace blink
894 895
895 #ifndef NDEBUG 896 #ifndef NDEBUG
896 // Outside the WebCore namespace for ease of invocation from gdb. 897 // Outside the WebCore namespace for ease of invocation from gdb.
897 void showNode(const blink::Node*); 898 void showNode(const blink::Node*);
898 void showTree(const blink::Node*); 899 void showTree(const blink::Node*);
899 void showNodePath(const blink::Node*); 900 void showNodePath(const blink::Node*);
900 #endif 901 #endif
901 902
902 #endif // Node_h 903 #endif // Node_h
OLDNEW
« no previous file with comments | « Source/core/dom/FirstLetterPseudoElement.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698