1// Copyright 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5module ax.mojom;
6
7// https://www.w3.org/TR/wai-aria-1.1/#aria-rowcount
8// https://www.w3.org/TR/wai-aria-1.1/#aria-colcount
9// If the total number of (rows|columns) is unknown, authors MUST set the
10// value of aria-(rowcount|colcount) to -1 to indicate that the value should not
11// be calculated by the user agent.
12// See: AXTableInfo
13const int32 kUnknownAriaColumnOrRowCount = -1;
14