ax_constants.mojom 548 B

12345678910111213
  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. module ax.mojom;
  5. // https://www.w3.org/TR/wai-aria-1.1/#aria-rowcount
  6. // https://www.w3.org/TR/wai-aria-1.1/#aria-colcount
  7. // If the total number of (rows|columns) is unknown, authors MUST set the
  8. // value of aria-(rowcount|colcount) to -1 to indicate that the value should not
  9. // be calculated by the user agent.
  10. // See: AXTableInfo
  11. const int32 kUnknownAriaColumnOrRowCount = -1;