chromium/third_party/blink/renderer/modules/accessibility/ax_layout_object_test.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/dom/shadow_root.h"
#include "third_party/blink/renderer/core/layout/list/layout_list_item.h"
#include "third_party/blink/renderer/modules/accessibility/ax_node_object.h"
#include "third_party/blink/renderer/modules/accessibility/testing/accessibility_test.h"

namespace blink {

class AXLayoutObjectTest : public AccessibilityTest {};

TEST_F(AXLayoutObjectTest, IsNotEditableInsideListmarker) {}

TEST_F(AXLayoutObjectTest, IsNotEditableOutsideListmarker) {}

TEST_F(AXLayoutObjectTest, GetValueForControlWithTextTransform) {}

TEST_F(AXLayoutObjectTest, GetValueForControlWithTextSecurity) {}

// Test AX hit test for user-agent shadow DOM, which should ignore the shadow
// Node at the given point, and select the host Element instead.
TEST_F(AXLayoutObjectTest, AccessibilityHitTest) {}

// Tests AX hit test for open / closed shadow DOM, which should select the
// shadow Node under the given point (as opposed to taking the host Element,
// which is the case for user-agent shadow DOM).
TEST_F(AXLayoutObjectTest, AccessibilityHitTestShadowDOM) {}

// https://crbug.com/1167596
TEST_F(AXLayoutObjectTest, GetListStyleDecimalLeadingZeroAsCustomCounterStyle) {}
// https://crbug.com/1167596
TEST_F(AXLayoutObjectTest, GetListStyleOverriddenDecimalLeadingZero) {}

TEST_F(AXLayoutObjectTest, GetPredefinedListStyleWithSpeakAs) {}

TEST_F(AXLayoutObjectTest, GetCustomListStyleWithSpeakAs) {}

}  // namespace blink