Path: blob/trunk/third_party/closure/goog/a11y/aria/datatables.js
1865 views
// Copyright 2013 The Closure Library Authors. All Rights Reserved.1//2// Licensed under the Apache License, Version 2.0 (the "License");3// you may not use this file except in compliance with the License.4// You may obtain a copy of the License at5//6// http://www.apache.org/licenses/LICENSE-2.07//8// Unless required by applicable law or agreed to in writing, software9// distributed under the License is distributed on an "AS-IS" BASIS,10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.11// See the License for the specific language governing permissions and12// limitations under the License.13141516/**17* @fileoverview The file contains data tables generated from the ARIA18* standard schema http://www.w3.org/TR/wai-aria/.19*20* This is auto-generated code. Do not manually edit!21*/2223goog.provide('goog.a11y.aria.datatables');2425goog.require('goog.a11y.aria.State');26goog.require('goog.object');272829/**30* A map that contains mapping between an ARIA state and the default value31* for it. Note that not all ARIA states have default values.32*33* @type {Object<!(goog.a11y.aria.State|string), (string|boolean|number)>}34*/35goog.a11y.aria.DefaultStateValueMap_;363738/**39* A method that creates a map that contains mapping between an ARIA state and40* the default value for it. Note that not all ARIA states have default values.41*42* @return {!Object<!(goog.a11y.aria.State|string), (string|boolean|number)>}43* The names for each of the notification methods.44*/45goog.a11y.aria.datatables.getDefaultValuesMap = function() {46if (!goog.a11y.aria.DefaultStateValueMap_) {47goog.a11y.aria.DefaultStateValueMap_ = goog.object.create(48goog.a11y.aria.State.ATOMIC, false, goog.a11y.aria.State.AUTOCOMPLETE,49'none', goog.a11y.aria.State.DROPEFFECT, 'none',50goog.a11y.aria.State.HASPOPUP, false, goog.a11y.aria.State.LIVE, 'off',51goog.a11y.aria.State.MULTILINE, false,52goog.a11y.aria.State.MULTISELECTABLE, false,53goog.a11y.aria.State.ORIENTATION, 'vertical',54goog.a11y.aria.State.READONLY, false, goog.a11y.aria.State.RELEVANT,55'additions text', goog.a11y.aria.State.REQUIRED, false,56goog.a11y.aria.State.SORT, 'none', goog.a11y.aria.State.BUSY, false,57goog.a11y.aria.State.DISABLED, false, goog.a11y.aria.State.HIDDEN,58false, goog.a11y.aria.State.INVALID, 'false');59}6061return goog.a11y.aria.DefaultStateValueMap_;62};636465