Changeset 295475 in webkit
- Timestamp:
- Jun 11, 2022, 3:32:52 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/html/HTMLFormControlElement.h
r292960 r295475 182 182 void endDelayingUpdateValidity(); 183 183 184 // These functions can be called concurrently for ValidityState. 184 185 HTMLElement& asHTMLElement() final { return *this; } 185 186 const HTMLFormControlElement& asHTMLElement() const final { return *this; } 187 186 188 FormNamedItem* asFormNamedItem() final { return this; } 187 189 FormAssociatedElement* asFormAssociatedElement() final { return this; } -
trunk/Source/WebCore/html/HTMLObjectElement.h
r293292 r295475 94 94 FormNamedItem* asFormNamedItem() final { return this; } 95 95 FormAssociatedElement* asFormAssociatedElement() final { return this; } 96 97 // These functions can be called concurrently for ValidityState. 96 98 HTMLObjectElement& asHTMLElement() final { return *this; } 97 99 const HTMLObjectElement& asHTMLElement() const final { return *this; } -
trunk/Source/WebCore/html/ValidityState.h
r208179 r295475 2 2 * This file is part of the WebKit project. 3 3 * 4 * Copyright (C) 2013 Apple Inc. All rights reserved.4 * Copyright (C) 2013-2022 Apple Inc. All rights reserved. 5 5 * 6 6 * This library is free software; you can redistribute it and/or … … 32 32 // as a typedef of FormAssociatedElement, but that would require changes to bindings generation. 33 33 class ValidityState : public FormAssociatedElement { 34 public: 35 Element* element() { return &asHTMLElement(); } 36 Node* opaqueRootConcurrently() { return &asHTMLElement(); } 34 37 }; 35 38 -
trunk/Source/WebCore/html/ValidityState.idl
r287551 r295475 3 3 * 4 4 * Copyright (C) 2009 Michelangelo De Simone <micdesim@gmail.com> 5 * Copyright (C) 2013-2022 Apple Inc. All rights reserved. 5 6 * 6 7 * This library is free software; you can redistribute it and/or … … 23 24 [ 24 25 SkipVTableValidation, 25 Exposed=Window 26 Exposed=Window, 27 GenerateIsReachable=ImplElementRoot, 28 GenerateAddOpaqueRoot=opaqueRootConcurrently 26 29 ] interface ValidityState { 27 30 readonly attribute boolean valueMissing;
Note:
See TracChangeset
for help on using the changeset viewer.