// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_ACCESSIBILITY_AX_VALIDATION_MESSAGE_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_ACCESSIBILITY_AX_VALIDATION_MESSAGE_H_ #include "third_party/blink/renderer/modules/accessibility/ax_object.h" namespace blink { class AXObjectCacheImpl; class ListedElement; // The AXValidationMessage is a mock object that exposes an alert for a native // error message popup for an invalid HTML control, aka a validation message. // The alert is exposed with a name containing the text of the popup.. class AXValidationMessage final : public AXObject { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_ACCESSIBILITY_AX_VALIDATION_MESSAGE_H_