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

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

Issue 778003003: List marker pseudo elements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 239
240 bool isElementNode() const { return getFlag(IsElementFlag); } 240 bool isElementNode() const { return getFlag(IsElementFlag); }
241 bool isContainerNode() const { return getFlag(IsContainerFlag); } 241 bool isContainerNode() const { return getFlag(IsContainerFlag); }
242 bool isTextNode() const { return getFlag(IsTextFlag); } 242 bool isTextNode() const { return getFlag(IsTextFlag); }
243 bool isHTMLElement() const { return getFlag(IsHTMLFlag); } 243 bool isHTMLElement() const { return getFlag(IsHTMLFlag); }
244 bool isSVGElement() const { return getFlag(IsSVGFlag); } 244 bool isSVGElement() const { return getFlag(IsSVGFlag); }
245 245
246 bool isPseudoElement() const { return pseudoId() != NOPSEUDO; } 246 bool isPseudoElement() const { return pseudoId() != NOPSEUDO; }
247 bool isBeforePseudoElement() const { return pseudoId() == BEFORE; } 247 bool isBeforePseudoElement() const { return pseudoId() == BEFORE; }
248 bool isAfterPseudoElement() const { return pseudoId() == AFTER; } 248 bool isAfterPseudoElement() const { return pseudoId() == AFTER; }
249 bool isMarkerPseudoElement() const { return pseudoId() == MARKER; }
249 bool isFirstLetterPseudoElement() const { return pseudoId() == FIRST_LETTER; } 250 bool isFirstLetterPseudoElement() const { return pseudoId() == FIRST_LETTER; }
250 virtual PseudoId pseudoId() const { return NOPSEUDO; } 251 virtual PseudoId pseudoId() const { return NOPSEUDO; }
251 252
252 bool isCustomElement() const { return getFlag(CustomElementFlag); } 253 bool isCustomElement() const { return getFlag(CustomElementFlag); }
253 enum CustomElementState { 254 enum CustomElementState {
254 NotCustomElement = 0, 255 NotCustomElement = 0,
255 WaitingForUpgrade = 1 << 0, 256 WaitingForUpgrade = 1 << 0,
256 Upgraded = 1 << 1 257 Upgraded = 1 << 1
257 }; 258 };
258 CustomElementState customElementState() const 259 CustomElementState customElementState() const
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 } // namespace blink 916 } // namespace blink
916 917
917 #ifndef NDEBUG 918 #ifndef NDEBUG
918 // Outside the WebCore namespace for ease of invocation from gdb. 919 // Outside the WebCore namespace for ease of invocation from gdb.
919 void showNode(const blink::Node*); 920 void showNode(const blink::Node*);
920 void showTree(const blink::Node*); 921 void showTree(const blink::Node*);
921 void showNodePath(const blink::Node*); 922 void showNodePath(const blink::Node*);
922 #endif 923 #endif
923 924
924 #endif // Node_h 925 #endif // Node_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698