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

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

Issue 2450093005: Support display: contents for elements, first-line and first-letter pseudos. (Closed)
Patch Set: Support display: contents for elements, first-line and first-letter pseudos. Created 4 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
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. 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
7 * (http://www.torchmobile.com/) 7 * (http://www.torchmobile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 bool isUserActionElementActive() const; 919 bool isUserActionElementActive() const;
920 bool isUserActionElementInActiveChain() const; 920 bool isUserActionElementInActiveChain() const;
921 bool isUserActionElementDragged() const; 921 bool isUserActionElementDragged() const;
922 bool isUserActionElementHovered() const; 922 bool isUserActionElementHovered() const;
923 bool isUserActionElementFocused() const; 923 bool isUserActionElementFocused() const;
924 924
925 void recalcDistribution(); 925 void recalcDistribution();
926 926
927 void setStyleChange(StyleChangeType); 927 void setStyleChange(StyleChangeType);
928 928
929 virtual ComputedStyle* nonLayoutObjectComputedStyle() const {
930 return nullptr;
931 }
932
933 virtual const ComputedStyle* virtualEnsureComputedStyle( 929 virtual const ComputedStyle* virtualEnsureComputedStyle(
934 PseudoId = PseudoIdNone); 930 PseudoId = PseudoIdNone);
935 931
936 void trackForDebugging(); 932 void trackForDebugging();
937 933
938 const HeapVector<TraceWrapperMember<MutationObserverRegistration>>* 934 const HeapVector<TraceWrapperMember<MutationObserverRegistration>>*
939 mutationObserverRegistry(); 935 mutationObserverRegistry();
940 const HeapHashSet<TraceWrapperMember<MutationObserverRegistration>>* 936 const HeapHashSet<TraceWrapperMember<MutationObserverRegistration>>*
941 transientMutationObserverRegistry(); 937 transientMutationObserverRegistry();
942 938
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 } // namespace blink 1020 } // namespace blink
1025 1021
1026 #ifndef NDEBUG 1022 #ifndef NDEBUG
1027 // Outside the WebCore namespace for ease of invocation from gdb. 1023 // Outside the WebCore namespace for ease of invocation from gdb.
1028 void showNode(const blink::Node*); 1024 void showNode(const blink::Node*);
1029 void showTree(const blink::Node*); 1025 void showTree(const blink::Node*);
1030 void showNodePath(const blink::Node*); 1026 void showNodePath(const blink::Node*);
1031 #endif 1027 #endif
1032 1028
1033 #endif // Node_h 1029 #endif // Node_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698