-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathNode.h
994 lines (809 loc) · 42.7 KB
/
Node.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
/*
* Copyright (C) 1999 Lars Knoll ([email protected])
* (C) 1999 Antti Koivisto ([email protected])
* (C) 2001 Dirk Mueller ([email protected])
* Copyright (C) 2004-2020 Apple Inc. All rights reserved.
* Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#pragma once
#include "EventTarget.h"
#include "ExceptionOr.h"
#include "LayoutRect.h"
#include "RenderStyleConstants.h"
#include "StyleValidity.h"
#include "TaskSource.h"
#include "TreeScope.h"
#include <compare>
#include <wtf/CompactPointerTuple.h>
#include <wtf/CompactUniquePtrTuple.h>
#include <wtf/FixedVector.h>
#include <wtf/Forward.h>
#include <wtf/ListHashSet.h>
#include <wtf/MainThread.h>
#include <wtf/OptionSet.h>
#include <wtf/RefCounted.h>
#include <wtf/RobinHoodHashSet.h>
#include <wtf/TZoneMalloc.h>
#include <wtf/URLHash.h>
#include <wtf/WeakPtr.h>
namespace WTF {
class TextStream;
}
namespace WebCore {
class ContainerNode;
class Document;
class Element;
class EventTypeInfo;
class FloatPoint;
class HTMLQualifiedName;
class HTMLSlotElement;
class MathMLQualifiedName;
class MutationObserver;
class MutationObserverRegistration;
class NamedNodeMap;
class NodeList;
class NodeListsNodeData;
class NodeRareData;
class QualifiedName;
class RenderBox;
class RenderBoxModelObject;
class RenderObject;
class RenderStyle;
class SVGQualifiedName;
class ShadowRoot;
class TouchEvent;
class WebCoreOpaqueRoot;
namespace Style {
struct PseudoElementIdentifier;
}
}
WTF_ALLOW_COMPACT_POINTERS_TO_INCOMPLETE_TYPE(WebCore::NodeRareData);
namespace WebCore {
enum class MutationObserverOptionType : uint8_t;
using MutationObserverOptions = OptionSet<MutationObserverOptionType>;
using MutationRecordDeliveryOptions = OptionSet<MutationObserverOptionType>;
using NodeOrString = std::variant<RefPtr<Node>, String>;
const int initialNodeVectorSize = 11; // Covers 99.5%. See webkit.org/b/80706
typedef Vector<Ref<Node>, initialNodeVectorSize> NodeVector;
class Node : public EventTarget, public CanMakeCheckedPtr<Node> {
WTF_MAKE_TZONE_OR_ISO_ALLOCATED(Node);
WTF_OVERRIDE_DELETE_FOR_CHECKED_PTR(Node);
friend class Document;
friend class TreeScope;
public:
enum NodeType {
ELEMENT_NODE = 1,
ATTRIBUTE_NODE = 2,
TEXT_NODE = 3,
CDATA_SECTION_NODE = 4,
PROCESSING_INSTRUCTION_NODE = 7,
COMMENT_NODE = 8,
DOCUMENT_NODE = 9,
DOCUMENT_TYPE_NODE = 10,
DOCUMENT_FRAGMENT_NODE = 11,
};
enum DeprecatedNodeType {
ENTITY_REFERENCE_NODE = 5,
ENTITY_NODE = 6,
NOTATION_NODE = 12,
};
enum DocumentPosition {
DOCUMENT_POSITION_EQUIVALENT = 0x00,
DOCUMENT_POSITION_DISCONNECTED = 0x01,
DOCUMENT_POSITION_PRECEDING = 0x02,
DOCUMENT_POSITION_FOLLOWING = 0x04,
DOCUMENT_POSITION_CONTAINS = 0x08,
DOCUMENT_POSITION_CONTAINED_BY = 0x10,
DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20,
};
WEBCORE_EXPORT static void startIgnoringLeaks();
WEBCORE_EXPORT static void stopIgnoringLeaks();
static void dumpStatistics();
virtual ~Node();
void willBeDeletedFrom(Document&);
// DOM methods & attributes for Node
bool hasTagName(const HTMLQualifiedName&) const;
bool hasTagName(const MathMLQualifiedName&) const;
inline bool hasTagName(const SVGQualifiedName&) const;
virtual String nodeName() const = 0;
virtual String nodeValue() const;
virtual ExceptionOr<void> setNodeValue(const String&);
NodeType nodeType() const { return nodeTypeFromBitFields(m_typeBitFields); }
virtual size_t approximateMemoryCost() const { return sizeof(*this); }
ContainerNode* parentNode() const;
inline RefPtr<ContainerNode> protectedParentNode() const; // Defined in ContainerNode.h.
static constexpr ptrdiff_t parentNodeMemoryOffset() { return OBJECT_OFFSETOF(Node, m_parentNode); }
inline Element* parentElement() const; // Defined in ElementInlines.h.
inline RefPtr<Element> protectedParentElement() const; // Defined in ElementInlines.h.
Node* previousSibling() const { return m_previousSibling; }
RefPtr<Node> protectedPreviousSibling() const { return m_previousSibling; }
static constexpr ptrdiff_t previousSiblingMemoryOffset() { return OBJECT_OFFSETOF(Node, m_previousSibling); }
Node* nextSibling() const { return m_next.get(); }
RefPtr<Node> protectedNextSibling() const { return m_next.get(); }
static constexpr ptrdiff_t nextSiblingMemoryOffset() { return OBJECT_OFFSETOF(Node, m_next); }
WEBCORE_EXPORT RefPtr<NodeList> childNodes();
inline Node* firstChild() const; // Defined in ContainerNode.h
inline RefPtr<Node> protectedFirstChild() const; // Defined in ContainerNode.h
inline Node* lastChild() const; // Defined in ContainerNode.h
inline RefPtr<Node> protectedLastChild() const; // Defined in ContainerNode.h
inline bool hasAttributes() const;
inline NamedNodeMap* attributesMap() const;
Node* pseudoAwareNextSibling() const;
Node* pseudoAwarePreviousSibling() const;
Node* pseudoAwareFirstChild() const;
Node* pseudoAwareLastChild() const;
WEBCORE_EXPORT const URL& baseURI() const;
void getSubresourceURLs(ListHashSet<URL>&) const;
void getCandidateSubresourceURLs(ListHashSet<URL>&) const;
WEBCORE_EXPORT ExceptionOr<void> insertBefore(Node& newChild, RefPtr<Node>&& refChild);
WEBCORE_EXPORT ExceptionOr<void> replaceChild(Node& newChild, Node& oldChild);
WEBCORE_EXPORT ExceptionOr<void> removeChild(Node& child);
WEBCORE_EXPORT ExceptionOr<void> appendChild(Node& newChild);
inline bool hasChildNodes() const;
enum class CloningOperation {
OnlySelf,
SelfWithTemplateContent,
Everything,
};
virtual Ref<Node> cloneNodeInternal(Document&, CloningOperation, CustomElementRegistry*) = 0;
Ref<Node> cloneNode(bool deep);
WEBCORE_EXPORT ExceptionOr<Ref<Node>> cloneNodeForBindings(bool deep);
virtual const AtomString& localName() const;
virtual const AtomString& namespaceURI() const;
virtual const AtomString& prefix() const;
virtual ExceptionOr<void> setPrefix(const AtomString&);
WEBCORE_EXPORT ExceptionOr<void> normalize();
bool isSameNode(Node* other) const { return this == other; }
WEBCORE_EXPORT bool isEqualNode(Node*) const;
WEBCORE_EXPORT bool isDefaultNamespace(const AtomString& namespaceURI) const;
WEBCORE_EXPORT const AtomString& lookupPrefix(const AtomString& namespaceURI) const;
WEBCORE_EXPORT const AtomString& lookupNamespaceURI(const AtomString& prefix) const;
WEBCORE_EXPORT String textContent(bool convertBRsToNewlines = false) const;
WEBCORE_EXPORT ExceptionOr<void> setTextContent(String&&);
Node* lastDescendant() const;
Node* firstDescendant() const;
// From the NonDocumentTypeChildNode - https://dom.spec.whatwg.org/#nondocumenttypechildnode
WEBCORE_EXPORT Element* previousElementSibling() const;
WEBCORE_EXPORT Element* nextElementSibling() const;
// From the ChildNode - https://dom.spec.whatwg.org/#childnode
ExceptionOr<void> before(FixedVector<NodeOrString>&&);
ExceptionOr<void> after(FixedVector<NodeOrString>&&);
ExceptionOr<void> replaceWith(FixedVector<NodeOrString>&&);
WEBCORE_EXPORT ExceptionOr<void> remove();
// Other methods (not part of DOM)
bool isElementNode() const { return hasTypeFlag(TypeFlag::IsElement); }
bool isContainerNode() const { return hasTypeFlag(TypeFlag::IsContainerNode); }
bool isCharacterDataNode() const { return hasTypeFlag(TypeFlag::IsCharacterData); }
bool isTextNode() const { return hasTypeFlag(TypeFlag::IsText); }
bool isHTMLElement() const { return hasTypeFlag(TypeFlag::IsHTMLElement); }
bool isSVGElement() const { return hasTypeFlag(TypeFlag::IsSVGElement); }
bool isMathMLElement() const { return hasTypeFlag(TypeFlag::IsMathMLElement); }
bool isUnknownElement() const { return hasTypeFlag(TypeFlag::IsUnknownElement); }
bool isHTMLUnknownElement() const { return isHTMLElement() && isUnknownElement(); }
bool isSVGUnknownElement() const { return isSVGElement() && isUnknownElement(); }
bool isMathMLUnknownElement() const { return isMathMLElement() && isUnknownElement(); }
bool isFormControlElement() const { return hasTypeFlag(TypeFlag::IsFormControlElement); }
bool isPseudoElement() const { return pseudoId() != PseudoId::None; }
bool isBeforePseudoElement() const { return pseudoId() == PseudoId::Before; }
bool isAfterPseudoElement() const { return pseudoId() == PseudoId::After; }
PseudoId pseudoId() const { return (isElementNode() && hasCustomStyleResolveCallbacks()) ? customPseudoId() : PseudoId::None; }
#if ENABLE(VIDEO)
virtual bool isWebVTTElement() const { return false; }
#endif
bool isStyledElement() const { return hasTypeFlag(TypeFlag::IsHTMLElement) || hasTypeFlag(TypeFlag::IsSVGElement) || hasTypeFlag(TypeFlag::IsMathMLElement); }
virtual bool isAttributeNode() const { return false; }
virtual bool isHTMLFrameOwnerElement() const { return false; }
virtual bool isPluginElement() const { return false; }
bool isDocumentNode() const { return nodeType() == DOCUMENT_NODE; }
bool isTreeScope() const { return isDocumentNode() || hasTypeFlag(TypeFlag::IsShadowRoot); }
bool isDocumentFragment() const { return nodeType() == DOCUMENT_FRAGMENT_NODE; }
bool isShadowRoot() const { return hasTypeFlag(TypeFlag::IsShadowRoot); }
bool isUserAgentShadowRoot() const; // Defined in ShadowRoot.h
bool hasCustomStyleResolveCallbacks() const { return hasTypeFlag(TypeFlag::HasCustomStyleResolveCallbacks); }
bool hasSyntheticAttrChildNodes() const { return hasEventTargetFlag(EventTargetFlag::HasSyntheticAttrChildNodes); }
void setHasSyntheticAttrChildNodes(bool flag) { setEventTargetFlag(EventTargetFlag::HasSyntheticAttrChildNodes, flag); }
bool hasShadowRootContainingSlots() const { return hasEventTargetFlag(EventTargetFlag::HasShadowRootContainingSlots); }
void setHasShadowRootContainingSlots(bool flag) { setEventTargetFlag(EventTargetFlag::HasShadowRootContainingSlots, flag); }
bool needsSVGRendererUpdate() const { return hasElementStateFlag(ElementStateFlag::NeedsSVGRendererUpdate); }
void setNeedsSVGRendererUpdate(bool flag) { setElementStateFlag(ElementStateFlag::NeedsSVGRendererUpdate, flag); }
// If this node is in a shadow tree, returns its shadow host. Otherwise, returns null.
WEBCORE_EXPORT Element* shadowHost() const;
ShadowRoot* containingShadowRoot() const;
RefPtr<ShadowRoot> protectedContainingShadowRoot() const;
inline ShadowRoot* shadowRoot() const; // Defined in ElementRareData.h
bool isClosedShadowHidden(const Node&) const;
HTMLSlotElement* assignedSlot() const;
HTMLSlotElement* assignedSlotForBindings() const;
HTMLSlotElement* manuallyAssignedSlot() const;
void setManuallyAssignedSlot(HTMLSlotElement*);
bool hasEverPaintedImages() const;
void setHasEverPaintedImages(bool);
bool isUncustomizedCustomElement() const { return customElementState() == CustomElementState::Uncustomized; }
bool isCustomElementUpgradeCandidate() const { return customElementState() == CustomElementState::Undefined; }
bool isDefinedCustomElement() const { return customElementState() == CustomElementState::Custom; }
bool isFailedCustomElement() const { return customElementState() == CustomElementState::FailedOrPrecustomized && isUnknownElement(); }
bool isFailedOrPrecustomizedCustomElement() const { return customElementState() == CustomElementState::FailedOrPrecustomized; }
bool isPrecustomizedCustomElement() const { return customElementState() == CustomElementState::FailedOrPrecustomized && !isUnknownElement(); }
bool isPrecustomizedOrDefinedCustomElement() const { return isPrecustomizedCustomElement() || isDefinedCustomElement(); }
bool isInCustomElementReactionQueue() const { return hasElementStateFlag(ElementStateFlag::IsInCustomElementReactionQueue); }
void setIsInCustomElementReactionQueue() { setElementStateFlag(ElementStateFlag::IsInCustomElementReactionQueue); }
void clearIsInCustomElementReactionQueue() { clearElementStateFlag(ElementStateFlag::IsInCustomElementReactionQueue); }
bool usesNullCustomElementRegistry() const { return hasElementStateFlag(ElementStateFlag::UsesNullCustomElementRegistry); }
void setUsesNullCustomElementRegistry() const { setElementStateFlag(ElementStateFlag::UsesNullCustomElementRegistry); }
void clearUsesNullCustomElementRegistry() const { clearElementStateFlag(ElementStateFlag::UsesNullCustomElementRegistry); }
bool usesScopedCustomElementRegistryMap() const { return hasElementStateFlag(ElementStateFlag::UsesScopedCustomElementRegistryMap); }
void setUsesScopedCustomElementRegistryMap() { setElementStateFlag(ElementStateFlag::UsesScopedCustomElementRegistryMap); }
void clearUsesScopedCustomElementRegistryMap() { clearElementStateFlag(ElementStateFlag::UsesScopedCustomElementRegistryMap); }
// Returns null, a child of ShadowRoot, or a legacy shadow root.
Node* nonBoundaryShadowTreeRootNode();
// Node's parent or shadow tree host.
inline ContainerNode* parentOrShadowHostNode() const; // Defined in ShadowRoot.h
inline RefPtr<ContainerNode> protectedParentOrShadowHostNode() const; // Defined in ShadowRoot.h
ContainerNode* parentInComposedTree() const;
WEBCORE_EXPORT Element* parentElementInComposedTree() const;
Element* parentOrShadowHostElement() const;
inline void setParentNode(ContainerNode*); // Defined in ContainerNode.h.
Node& rootNode() const;
WEBCORE_EXPORT Node& traverseToRootNode() const;
Node& shadowIncludingRoot() const;
struct GetRootNodeOptions {
bool composed;
};
Node& getRootNode(const GetRootNodeOptions&) const;
inline WebCoreOpaqueRoot opaqueRoot() const; // Defined in DocumentInlines.h.
WebCoreOpaqueRoot traverseToOpaqueRoot() const;
void queueTaskKeepingThisNodeAlive(TaskSource, Function<void ()>&&);
void queueTaskToDispatchEvent(TaskSource, Ref<Event>&&);
// Use when it's guaranteed to that shadowHost is null.
ContainerNode* parentNodeGuaranteedHostFree() const;
// Returns the parent node, but null if the parent node is a ShadowRoot.
ContainerNode* nonShadowBoundaryParentNode() const;
bool selfOrPrecedingNodesAffectDirAuto() const { return hasStateFlag(StateFlag::SelfOrPrecedingNodesAffectDirAuto); }
void setSelfOrPrecedingNodesAffectDirAuto(bool flag) { setStateFlag(StateFlag::SelfOrPrecedingNodesAffectDirAuto, flag); }
TextDirection effectiveTextDirection() const;
void setEffectiveTextDirection(TextDirection);
bool usesEffectiveTextDirection() const { return rareDataBitfields().usesEffectiveTextDirection; }
void setUsesEffectiveTextDirection(bool);
// Returns the enclosing event parent Element (or self) that, when clicked, would trigger a navigation.
WEBCORE_EXPORT Element* enclosingLinkEventParentOrSelf();
// These low-level calls give the caller responsibility for maintaining the integrity of the tree.
void setPreviousSibling(Node* previous) { m_previousSibling = previous; }
void setNextSibling(Node* next) { m_next = next; }
virtual bool canContainRangeEndPoint() const { return false; }
WEBCORE_EXPORT bool isRootEditableElement() const;
WEBCORE_EXPORT Element* rootEditableElement() const;
// For <link> and <style> elements.
virtual bool sheetLoaded() { return true; }
virtual void notifyLoadedSheetAndAllCriticalSubresources(bool /* error loading subresource */) { }
virtual void startLoadingDynamicSheet() { ASSERT_NOT_REACHED(); }
bool isUserActionElement() const { return hasElementStateFlag(ElementStateFlag::IsUserActionElement); }
void setUserActionElement(bool flag) { setElementStateFlag(ElementStateFlag::IsUserActionElement, flag); }
bool inRenderedDocument() const;
bool needsStyleRecalc() const { return styleValidity() != Style::Validity::Valid || hasInvalidRenderer(); }
Style::Validity styleValidity() const { return styleBitfields().styleValidity(); }
bool hasInvalidRenderer() const { return hasStateFlag(StateFlag::HasInvalidRenderer); }
bool styleResolutionShouldRecompositeLayer() const { return hasStateFlag(StateFlag::StyleResolutionShouldRecompositeLayer); }
bool childNeedsStyleRecalc() const { return hasStyleFlag(NodeStyleFlag::DescendantNeedsStyleResolution); }
bool isEditingText() const { return isTextNode() && hasStateFlag(StateFlag::IsSpecialInternalNode); }
bool isDocumentFragmentForInnerOuterHTML() const { return isDocumentFragment() && hasStateFlag(StateFlag::IsSpecialInternalNode); }
bool hasHeldBackChildrenChanged() const { return hasStateFlag(StateFlag::HasHeldBackChildrenChanged); }
void setHasHeldBackChildrenChanged() { setStateFlag(StateFlag::HasHeldBackChildrenChanged); }
void clearHasHeldBackChildrenChanged() { clearStateFlag(StateFlag::HasHeldBackChildrenChanged); }
void setChildNeedsStyleRecalc() { setStyleFlag(NodeStyleFlag::DescendantNeedsStyleResolution); }
void clearChildNeedsStyleRecalc();
void setHasValidStyle();
WEBCORE_EXPORT bool isContentEditable() const;
bool isContentRichlyEditable() const;
WEBCORE_EXPORT void inspect();
enum class UserSelectAllTreatment : bool { NotEditable, Editable };
bool hasEditableStyle(UserSelectAllTreatment treatment = UserSelectAllTreatment::NotEditable) const
{
return computeEditability(treatment, ShouldUpdateStyle::DoNotUpdate) != Editability::ReadOnly;
}
// FIXME: Replace every use of this function by helpers in Editing.h
bool hasRichlyEditableStyle() const
{
return computeEditability(UserSelectAllTreatment::NotEditable, ShouldUpdateStyle::DoNotUpdate) == Editability::CanEditRichly;
}
enum class Editability { ReadOnly, CanEditPlainText, CanEditRichly };
enum class ShouldUpdateStyle { Update, DoNotUpdate };
WEBCORE_EXPORT Editability computeEditability(UserSelectAllTreatment, ShouldUpdateStyle) const;
Editability computeEditabilityWithStyle(const RenderStyle*, UserSelectAllTreatment, ShouldUpdateStyle) const;
WEBCORE_EXPORT LayoutRect absoluteBoundingRect(bool* isReplaced);
IntRect pixelSnappedAbsoluteBoundingRect(bool* isReplaced) { return snappedIntRect(absoluteBoundingRect(isReplaced)); }
WEBCORE_EXPORT unsigned computeNodeIndex() const;
// Returns the DOM ownerDocument attribute. This method never returns null, except in the case
// of a Document node.
WEBCORE_EXPORT Document* ownerDocument() const;
// Returns the document associated with this node. A document node returns itself.
Document& document() const { return treeScope().documentScope(); }
inline Ref<Document> protectedDocument() const; // Defined in DocumentInlines.h.
TreeScope& treeScope() const
{
ASSERT(m_treeScope);
return *m_treeScope;
}
Ref<TreeScope> protectedTreeScope() const { return treeScope(); }
void setTreeScopeRecursively(TreeScope&);
static constexpr ptrdiff_t treeScopeMemoryOffset() { return OBJECT_OFFSETOF(Node, m_treeScope); }
TreeScope& treeScopeForSVGReferences() const;
// Returns true if this node is associated with a document and is in its associated document's
// node tree, false otherwise (https://dom.spec.whatwg.org/#connected).
bool isConnected() const { return hasEventTargetFlag(EventTargetFlag::IsConnected); }
bool isInUserAgentShadowTree() const;
bool isInShadowTree() const { return hasEventTargetFlag(EventTargetFlag::IsInShadowTree); }
bool isInTreeScope() const { return isConnected() || isInShadowTree(); }
bool hasBeenInUserAgentShadowTree() const { return hasEventTargetFlag(EventTargetFlag::HasBeenInUserAgentShadowTree); }
// https://dom.spec.whatwg.org/#in-a-document-tree
bool isInDocumentTree() const { return isConnected() && !isInShadowTree(); }
bool isDocumentTypeNode() const { return nodeType() == DOCUMENT_TYPE_NODE; }
virtual bool childTypeAllowed(NodeType) const { return false; }
unsigned countChildNodes() const;
unsigned length() const;
Node* traverseToChildAt(unsigned) const;
ExceptionOr<void> checkSetPrefix(const AtomString& prefix);
WEBCORE_EXPORT bool isDescendantOf(const Node&) const;
bool isDescendantOf(const Node* other) const { return other && isDescendantOf(*other); }
WEBCORE_EXPORT bool contains(const Node&) const;
bool contains(const Node* other) const { return other && contains(*other); }
WEBCORE_EXPORT bool isDescendantOrShadowDescendantOf(const Node&) const;
bool isDescendantOrShadowDescendantOf(const Node* other) const { return other && isDescendantOrShadowDescendantOf(*other); }
WEBCORE_EXPORT bool containsIncludingShadowDOM(const Node*) const;
// Whether or not a selection can be started in this object
virtual bool canStartSelection() const;
virtual bool shouldSelectOnMouseDown() { return false; }
// Getting points into and out of screen space
FloatPoint convertToPage(const FloatPoint&) const;
FloatPoint convertFromPage(const FloatPoint&) const;
// -----------------------------------------------------------------------------
// Integration with rendering tree
// As renderer() includes a branch you should avoid calling it repeatedly in hot code paths.
RenderObject* renderer() const { return m_renderer; }
CheckedPtr<RenderObject> checkedRenderer() const;
void setRenderer(RenderObject*); // Defined in RenderObject.h
// Use these two methods with caution.
WEBCORE_EXPORT RenderBox* renderBox() const;
RenderBoxModelObject* renderBoxModelObject() const;
// Wrapper for nodes that don't have a renderer, but still cache the style (like HTMLOptionElement).
inline const RenderStyle* renderStyle() const;
WEBCORE_EXPORT const RenderStyle* computedStyle();
virtual const RenderStyle* computedStyle(const std::optional<Style::PseudoElementIdentifier>&);
enum class InsertedIntoAncestorResult {
Done,
NeedsPostInsertionCallback,
};
struct InsertionType {
bool connectedToDocument { false };
bool treeScopeChanged { false };
};
// Called *after* this node or its ancestor is inserted into a new parent (may or may not be a part of document) by scripts or parser.
// insertedInto **MUST NOT** invoke scripts. Return NeedsPostInsertionCallback and implement didFinishInsertingNode instead to run scripts.
virtual InsertedIntoAncestorResult insertedIntoAncestor(InsertionType, ContainerNode& parentOfInsertedTree);
virtual void didFinishInsertingNode() { }
struct RemovalType {
bool disconnectedFromDocument { false };
bool treeScopeChanged { false };
};
virtual void removedFromAncestor(RemovalType, ContainerNode& oldParentOfRemovedTree);
virtual String description() const;
virtual String debugDescription() const;
#if ENABLE(TREE_DEBUGGING)
void showNode(ASCIILiteral prefix = ""_s) const;
WEBCORE_EXPORT void showTreeForThis() const;
void showNodePathForThis() const;
void showTreeAndMark(const Node* markedNode1, ASCIILiteral markedLabel1, const Node* markedNode2 = nullptr, ASCIILiteral markedLabel2 = { }) const;
void showTreeForThisAcrossFrame() const;
#endif // ENABLE(TREE_DEBUGGING)
void invalidateNodeListAndCollectionCachesInAncestors();
void invalidateNodeListAndCollectionCachesInAncestorsForAttribute(const QualifiedName&);
NodeListsNodeData* nodeLists();
void clearNodeLists();
virtual bool willRespondToMouseMoveEvents() const;
WEBCORE_EXPORT bool willRespondToMouseClickEvents(const RenderStyle* = nullptr) const;
Editability computeEditabilityForMouseClickEvents(const RenderStyle* = nullptr) const;
virtual bool willRespondToMouseClickEventsWithEditability(Editability) const;
virtual bool willRespondToTouchEvents() const;
WEBCORE_EXPORT unsigned short compareDocumentPosition(Node&);
enum EventTargetInterfaceType eventTargetInterface() const override;
ScriptExecutionContext* scriptExecutionContext() const final; // Implemented in DocumentInlines.h.
WEBCORE_EXPORT bool addEventListener(const AtomString& eventType, Ref<EventListener>&&, const AddEventListenerOptions&) override;
bool removeEventListener(const AtomString& eventType, EventListener&, const EventListenerOptions&) override;
void removeAllEventListeners() override;
using EventTarget::dispatchEvent;
void dispatchEvent(Event&) override;
void dispatchScopedEvent(Event&);
void dispatchSubtreeModifiedEvent();
void dispatchDOMActivateEvent(Event& underlyingClickEvent);
#if ENABLE(TOUCH_EVENTS)
virtual bool allowsDoubleTapGesture() const { return true; }
#endif
WEBCORE_EXPORT void dispatchInputEvent();
// Perform the default action for an event.
virtual void defaultEventHandler(Event&);
void ref() const;
void deref() const;
bool hasOneRef() const;
unsigned refCount() const;
void applyRefDuringDestructionCheck() const;
#if ASSERT_ENABLED
mutable bool m_inRemovedLastRefFunction { false };
bool m_adoptionIsRequired { true };
#endif
void relaxAdoptionRequirement()
{
#if ASSERT_ENABLED
ASSERT_WITH_SECURITY_IMPLICATION(!deletionHasBegun());
ASSERT(m_adoptionIsRequired);
m_adoptionIsRequired = false;
#endif
}
UncheckedKeyHashMap<Ref<MutationObserver>, MutationRecordDeliveryOptions> registeredMutationObservers(MutationObserverOptionType, const QualifiedName* attributeName);
void registerMutationObserver(MutationObserver&, MutationObserverOptions, const MemoryCompactLookupOnlyRobinHoodHashSet<AtomString>& attributeFilter);
void unregisterMutationObserver(MutationObserverRegistration&);
void registerTransientMutationObserver(MutationObserverRegistration&);
void unregisterTransientMutationObserver(MutationObserverRegistration&);
void notifyMutationObserversNodeWillDetach();
unsigned connectedSubframeCount() const { return rareDataBitfields().connectedSubframeCount; }
void incrementConnectedSubframeCount(unsigned amount = 1);
void decrementConnectedSubframeCount(unsigned amount = 1);
void updateAncestorConnectedSubframeCountForRemoval() const;
void updateAncestorConnectedSubframeCountForInsertion() const;
#if ENABLE(JIT)
static constexpr ptrdiff_t typeFlagsMemoryOffset() { return OBJECT_OFFSETOF(Node, m_typeBitFields); }
static constexpr ptrdiff_t stateFlagsMemoryOffset() { return OBJECT_OFFSETOF(Node, m_stateFlags); }
static constexpr ptrdiff_t rareDataMemoryOffset() { return OBJECT_OFFSETOF(Node, m_rareDataWithBitfields); }
#if CPU(ADDRESS64)
static uint64_t rareDataPointerMask() { return CompactPointerTuple<NodeRareData*, uint16_t>::pointerMask; }
#else
static uint32_t rareDataPointerMask() { return -1; }
#endif
static auto flagIsText() { return enumToUnderlyingType(TypeFlag::IsText); }
static auto flagIsContainer() { return enumToUnderlyingType(TypeFlag::IsContainerNode); }
static auto flagIsElement() { return enumToUnderlyingType(TypeFlag::IsElement); }
static auto flagIsShadowRoot() { return enumToUnderlyingType(TypeFlag::IsShadowRoot); }
static auto flagIsHTML() { return enumToUnderlyingType(TypeFlag::IsHTMLElement); }
static auto flagIsLink() { return enumToUnderlyingType(StateFlag::IsLink); }
static auto flagIsParsingChildren() { return enumToUnderlyingType(StateFlag::IsParsingChildren); }
#endif // ENABLE(JIT)
#if ASSERT_ENABLED
bool deletionHasBegun() const { return hasStateFlag(StateFlag::DeletionHasBegun); }
#endif
bool containsSelectionEndPoint() const { return hasStateFlag(StateFlag::ContainsSelectionEndPoint); }
void setContainsSelectionEndPoint(bool value) { setStateFlag(StateFlag::ContainsSelectionEndPoint, value); }
protected:
enum class TypeFlag : uint16_t {
IsCharacterData = 1 << 0,
IsText = 1 << 1,
IsContainerNode = 1 << 2,
IsElement = 1 << 3,
IsHTMLElement = 1 << 4,
IsSVGElement = 1 << 5,
IsMathMLElement = 1 << 6,
IsShadowRoot = 1 << 7,
IsUnknownElement = 1 << 8,
IsFormControlElement = 1 << 9,
HasCustomStyleResolveCallbacks = 1 << 10,
HasDidMoveToNewDocument = 1 << 11,
};
static constexpr auto typeFlagBitCount = 12;
static uint16_t constructBitFieldsFromNodeTypeAndFlags(NodeType type, OptionSet<TypeFlag> flags) { return (type << typeFlagBitCount) | flags.toRaw(); }
static NodeType nodeTypeFromBitFields(uint16_t bitFields) { return static_cast<NodeType>((bitFields >> typeFlagBitCount) & 0xf); }
// Don't bother masking with (1 << typeFlagBitCount) - 1 since OptionSet tolerates the upper 4-bits being used for other purposes.
bool hasTypeFlag(TypeFlag flag) const { return OptionSet<TypeFlag>::fromRaw(m_typeBitFields).contains(flag); }
enum class StateFlag : uint16_t {
IsLink = 1 << 0,
IsParsingChildren = 1 << 1,
SelfOrPrecedingNodesAffectDirAuto = 1 << 2,
EffectiveLangKnownToMatchDocumentElement = 1 << 3,
IsComputedStyleInvalidFlag = 1 << 4,
HasInvalidRenderer = 1 << 5,
StyleResolutionShouldRecompositeLayer = 1 << 6,
ContainsOnlyASCIIWhitespace = 1 << 7, // Only used on CharacterData.
ContainsOnlyASCIIWhitespaceIsValid = 1 << 8, // Only used on CharacterData.
HasHeldBackChildrenChanged = 1 << 9,
#if ASSERT_ENABLED
DeletionHasBegun = 1 << 10,
#endif
ContainsSelectionEndPoint = 1 << 11,
IsSpecialInternalNode = 1 << 12, // DocumentFragment node for innerHTML/outerHTML or EditingText node.
// 3 bits free.
};
enum class ElementStateFlag : uint16_t {
HasElementIdentifier = 1 << 0,
IsUserActionElement = 1 << 1,
IsInCustomElementReactionQueue = 1 << 2,
NeedsSVGRendererUpdate = 1 << 3,
NeedsUpdateQueryContainerDependentStyle = 1 << 4,
EverHadSmoothScroll = 1 << 5,
#if ENABLE(FULLSCREEN_API)
IsFullscreen = 1 << 6,
#endif
UsesNullCustomElementRegistry = 1 << 7,
UsesScopedCustomElementRegistryMap = 1 << 8,
// 7-bits free.
};
enum class TabIndexState : uint8_t {
NotSet = 0,
Zero = 1,
NegativeOne = 2,
InRareData = 3,
};
enum class CustomElementState : uint8_t {
Uncustomized = 0,
Undefined = 1,
Custom = 2,
FailedOrPrecustomized = 3,
};
struct RareDataBitFields {
uint16_t connectedSubframeCount : 10;
uint16_t tabIndexState : 2;
uint16_t customElementState : 2;
uint16_t usesEffectiveTextDirection : 1;
uint16_t effectiveTextDirection : 1;
};
bool hasStateFlag(StateFlag flag) const { return m_stateFlags.contains(flag); }
void setStateFlag(StateFlag flag, bool value = true) const { m_stateFlags.set(flag, value); }
void clearStateFlag(StateFlag flag) const { setStateFlag(flag, false); }
bool hasElementStateFlag(ElementStateFlag flag) const { return m_elementStateFlags.contains(flag); }
inline void setElementStateFlag(ElementStateFlag, bool value = true) const;
void clearElementStateFlag(ElementStateFlag flag) const { setElementStateFlag(flag, false); }
RareDataBitFields rareDataBitfields() const { return std::bit_cast<RareDataBitFields>(m_rareDataWithBitfields.type()); }
void setRareDataBitfields(RareDataBitFields bitfields) { m_rareDataWithBitfields.setType(std::bit_cast<uint16_t>(bitfields)); }
TabIndexState tabIndexState() const { return static_cast<TabIndexState>(rareDataBitfields().tabIndexState); }
void setTabIndexState(TabIndexState);
CustomElementState customElementState() const { return static_cast<CustomElementState>(rareDataBitfields().customElementState); }
void setCustomElementState(CustomElementState);
bool isParsingChildrenFinished() const { return !hasStateFlag(StateFlag::IsParsingChildren); }
void setIsParsingChildrenFinished() { clearStateFlag(StateFlag::IsParsingChildren); }
void clearIsParsingChildrenFinished() { setStateFlag(StateFlag::IsParsingChildren); }
Node(Document&, NodeType, OptionSet<TypeFlag>);
static constexpr uint32_t s_refCountIncrement = 2;
static constexpr uint32_t s_refCountMask = ~static_cast<uint32_t>(1);
enum class NodeStyleFlag : uint16_t {
DescendantNeedsStyleResolution = 1 << 0,
DirectChildNeedsStyleResolution = 1 << 1,
AffectedByHasWithPositionalPseudoClass = 1 << 2,
ChildrenAffectedByFirstChildRules = 1 << 3,
ChildrenAffectedByLastChildRules = 1 << 4,
AffectsNextSiblingElementStyle = 1 << 5,
StyleIsAffectedByPreviousSibling = 1 << 6,
DescendantsAffectedByPreviousSibling = 1 << 7,
StyleAffectedByEmpty = 1 << 8,
// We optimize for :first-child and :last-child. The other positional child selectors like nth-child or
// *-child-of-type, we will just give up and re-evaluate whenever children change at all.
ChildrenAffectedByForwardPositionalRules = 1 << 9,
DescendantsAffectedByForwardPositionalRules = 1 << 10,
ChildrenAffectedByBackwardPositionalRules = 1 << 11,
DescendantsAffectedByBackwardPositionalRules = 1 << 12,
};
struct StyleBitfields {
public:
static StyleBitfields fromRaw(uint16_t packed) { return std::bit_cast<StyleBitfields>(packed); }
uint16_t toRaw() const { return std::bit_cast<uint16_t>(*this); }
Style::Validity styleValidity() const { return static_cast<Style::Validity>(m_styleValidity); }
void setStyleValidity(Style::Validity validity) { m_styleValidity = enumToUnderlyingType(validity); }
OptionSet<NodeStyleFlag> flags() const { return OptionSet<NodeStyleFlag>::fromRaw(m_flags); }
void setFlag(NodeStyleFlag flag) { m_flags = (flags() | flag).toRaw(); }
void clearFlag(NodeStyleFlag flag) { m_flags = (flags() - flag).toRaw(); }
void clearFlags(OptionSet<NodeStyleFlag> flagsToClear) { m_flags = (flags() - flagsToClear).toRaw(); }
void clearDescendantsNeedStyleResolution() { m_flags = (flags() - NodeStyleFlag::DescendantNeedsStyleResolution - NodeStyleFlag::DirectChildNeedsStyleResolution).toRaw(); }
private:
uint16_t m_styleValidity : 3 { 0 };
uint16_t m_flags : 13 { 0 };
};
StyleBitfields styleBitfields() const { return m_styleBitfields; }
void setStyleBitfields(StyleBitfields bitfields) { m_styleBitfields = bitfields; }
ALWAYS_INLINE bool hasStyleFlag(NodeStyleFlag flag) const { return styleBitfields().flags().contains(flag); }
ALWAYS_INLINE void setStyleFlag(NodeStyleFlag);
ALWAYS_INLINE void clearStyleFlags(OptionSet<NodeStyleFlag>);
virtual void addSubresourceAttributeURLs(ListHashSet<URL>&) const { }
virtual void addCandidateSubresourceURLs(ListHashSet<URL>&) const { }
bool hasRareData() const { return !!m_rareDataWithBitfields.pointer(); }
NodeRareData* rareData() const { return m_rareDataWithBitfields.pointer(); }
NodeRareData& ensureRareData();
void clearRareData();
void setTreeScope(TreeScope& scope) { m_treeScope = &scope; }
void invalidateStyle(Style::Validity, Style::InvalidationMode = Style::InvalidationMode::Normal);
void updateAncestorsForStyleRecalc();
void markAncestorsForInvalidatedStyle();
template<typename NodeClass>
static NodeClass& traverseToRootNodeInternal(const NodeClass&);
// FIXME: Replace all uses of convertNodesOrStringsIntoNode by convertNodesOrStringsIntoNodeVector.
ExceptionOr<RefPtr<Node>> convertNodesOrStringsIntoNode(FixedVector<NodeOrString>&&);
ExceptionOr<NodeVector> convertNodesOrStringsIntoNodeVector(FixedVector<NodeOrString>&&);
private:
virtual PseudoId customPseudoId() const
{
ASSERT(hasCustomStyleResolveCallbacks());
return PseudoId::None;
}
WEBCORE_EXPORT void removedLastRef();
void refEventTarget() final;
void derefEventTarget() final;
void trackForDebugging();
void materializeRareData();
Vector<std::unique_ptr<MutationObserverRegistration>>* mutationObserverRegistry();
WeakHashSet<MutationObserverRegistration>* transientMutationObserverRegistry();
void adjustStyleValidity(Style::Validity, Style::InvalidationMode);
static unsigned moveShadowTreeToNewDocumentFastCase(ShadowRoot&, Document& oldDocument, Document& newDocument);
static void moveShadowTreeToNewDocumentSlowCase(ShadowRoot&, Document& oldDocument, Document& newDocument);
static void moveTreeToNewScope(Node&, TreeScope& oldScope, TreeScope& newScope);
void moveNodeToNewDocumentFastCase(Document& oldDocument, Document& newDocument);
void moveNodeToNewDocumentSlowCase(Document& oldDocument, Document& newDocument);
WEBCORE_EXPORT void notifyInspectorOfRendererChange();
mutable uint32_t m_refCountAndParentBit { s_refCountIncrement };
const uint16_t m_typeBitFields;
mutable OptionSet<StateFlag> m_stateFlags;
mutable OptionSet<ElementStateFlag> m_elementStateFlags;
mutable StyleBitfields m_styleBitfields;
CheckedPtr<ContainerNode> m_parentNode;
TreeScope* m_treeScope { nullptr };
Node* m_previousSibling { nullptr };
CheckedPtr<Node> m_next;
RenderObject* m_renderer { nullptr };
CompactUniquePtrTuple<NodeRareData, uint16_t> m_rareDataWithBitfields;
};
bool connectedInSameTreeScope(const Node*, const Node*);
// FIXME: We should remove these but std::is_eq() / std::is_neq() are not available in
// some of our SDKs yet (rdar://87314077).
constexpr bool is_eq(std::partial_ordering cmp) { return cmp == 0; }
constexpr bool is_neq(std::partial_ordering cmp) { return cmp != 0; }
enum TreeType { Tree, ShadowIncludingTree, ComposedTree };
template<TreeType = Tree> ContainerNode* parent(const Node&);
template<TreeType = Tree> Node* commonInclusiveAncestor(const Node&, const Node&);
template<TreeType = Tree> std::partial_ordering treeOrder(const Node&, const Node&);
WEBCORE_EXPORT std::partial_ordering treeOrderForTesting(TreeType, const Node&, const Node&);
bool isTouchRelatedEventType(const EventTypeInfo&, const EventTarget&);
#if ASSERT_ENABLED
inline void adopted(Node* node)
{
if (!node)
return;
node->m_adoptionIsRequired = false;
}
#endif // ASSERT_ENABLED
ALWAYS_INLINE void Node::ref() const
{
ASSERT(isMainThread());
ASSERT(!m_adoptionIsRequired);
applyRefDuringDestructionCheck();
m_refCountAndParentBit += s_refCountIncrement;
}
inline void Node::applyRefDuringDestructionCheck() const
{
#if ASSERT_ENABLED
if (!deletionHasBegun())
return;
WTF::RefCountedBase::logRefDuringDestruction(this);
#endif
}
ALWAYS_INLINE void Node::deref() const
{
ASSERT(isMainThread());
ASSERT(!m_adoptionIsRequired);
ASSERT_WITH_SECURITY_IMPLICATION(refCount());
auto updatedRefCount = m_refCountAndParentBit - s_refCountIncrement;
if (!updatedRefCount) {
ASSERT(!deletionHasBegun());
#if ASSERT_ENABLED
m_inRemovedLastRefFunction = true;
#endif
const_cast<Node&>(*this).removedLastRef();
return;
}
m_refCountAndParentBit = updatedRefCount;
}
ALWAYS_INLINE bool Node::hasOneRef() const
{
ASSERT(!deletionHasBegun());
ASSERT(!m_inRemovedLastRefFunction);
return refCount() == 1;
}
ALWAYS_INLINE unsigned Node::refCount() const
{
return m_refCountAndParentBit / s_refCountIncrement;
}
// Used in Node::addSubresourceAttributeURLs() and in addSubresourceStyleURLs()
inline void addSubresourceURL(ListHashSet<URL>& urls, const URL& url)
{
if (!url.isNull())
urls.add(url);
}
inline ContainerNode* Node::parentNode() const
{
ASSERT(isMainThreadOrGCThread());
return m_parentNode.get();
}
inline ContainerNode* Node::parentNodeGuaranteedHostFree() const
{
ASSERT(!isShadowRoot());
return parentNode();
}
inline void Node::setElementStateFlag(ElementStateFlag flag, bool value) const
{
m_elementStateFlags.set(flag, value);
}
ALWAYS_INLINE void Node::setStyleFlag(NodeStyleFlag flag)
{
auto bitfields = styleBitfields();
bitfields.setFlag(flag);
setStyleBitfields(bitfields);
}
ALWAYS_INLINE void Node::clearStyleFlags(OptionSet<NodeStyleFlag> flags)
{
auto bitfields = styleBitfields();
bitfields.clearFlags(flags);
setStyleBitfields(bitfields);
}
inline void Node::clearChildNeedsStyleRecalc()
{
auto bitfields = styleBitfields();
bitfields.clearDescendantsNeedStyleResolution();
setStyleBitfields(bitfields);
}
inline void Node::setHasValidStyle()
{
auto bitfields = styleBitfields();
bitfields.setStyleValidity(Style::Validity::Valid);
setStyleBitfields(bitfields);
clearStateFlag(StateFlag::IsComputedStyleInvalidFlag);
clearStateFlag(StateFlag::HasInvalidRenderer);
clearStateFlag(StateFlag::StyleResolutionShouldRecompositeLayer);
}
inline void Node::setTreeScopeRecursively(TreeScope& newTreeScope)
{
ASSERT(!isDocumentNode());
ASSERT(!deletionHasBegun());
if (m_treeScope != &newTreeScope)
moveTreeToNewScope(*this, *m_treeScope, newTreeScope);
}
inline void EventTarget::ref()
{
auto* node = dynamicDowncast<Node>(*this);
if (LIKELY(node))
node->ref();
else
refEventTarget();
}
inline void EventTarget::deref()
{
auto* node = dynamicDowncast<Node>(*this);
if (LIKELY(node))
node->deref();
else
derefEventTarget();
}
template<typename NodeClass>
inline NodeClass& Node::traverseToRootNodeInternal(const NodeClass& node)
{
auto* current = const_cast<NodeClass*>(&node);
while (current->parentNode())
current = current->parentNode();
return *current;
}
WEBCORE_EXPORT WTF::TextStream& operator<<(WTF::TextStream&, const Node&);
} // namespace WebCore
#if ENABLE(TREE_DEBUGGING)
// Outside the WebCore namespace for ease of invocation from the debugger.
void showTree(const WebCore::Node*);
void showNodePath(const WebCore::Node*);
#endif
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::Node)
static bool isType(const WebCore::EventTarget& target) { return target.isNode(); }
SPECIALIZE_TYPE_TRAITS_END()