Path: blob/trunk/third_party/closure/goog/dom/attr.js
2868 views
// Copyright 2016 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.131415goog.provide('goog.dom.Attr');161718/**19* Enum of all html attribute names specified by the HTML specitifcations.20* @enum {string}21*/22goog.dom.Attr = {23ACCEPT: 'accept',24ACCEPT_CHARSET: 'accept-charset',25ACCESSKEY: 'accesskey',26ACTION: 'action',27ALIGN: 'align',28ALT: 'alt',29ASYNC: 'async',30AUTOCOMPLETE: 'autocomplete',31AUTOFOCUS: 'autofocus',32AUTOPLAY: 'autoplay',33AUTOSAVE: 'autosave',34BGCOLOR: 'bgcolor',35BORDER: 'border',36BUFFERED: 'buffered',37CHALLENGE: 'challenge',38CHARSET: 'charset',39CHECKED: 'checked',40CITE: 'cite',41CLASS: 'class',42CODE: 'code',43CODEBASE: 'codebase',44COLOR: 'color',45COLS: 'cols',46COLSPAN: 'colspan',47CONTENT: 'content',48CONTENTEDITABLE: 'contenteditable',49CONTEXTMENU: 'contextmenu',50CONTROLS: 'controls',51COORDS: 'coords',52DATA: 'data',53DATETIME: 'datetime',54DEFAULT: 'default',55DEFER: 'defer',56DIR: 'dir',57DIRNAME: 'dirname',58DISABLED: 'disabled',59DOWNLOAD: 'download',60DRAGGABLE: 'draggable',61DROPZONE: 'dropzone',62ENCTYPE: 'enctype',63FOR: 'for',64FORM: 'form',65FORMACTION: 'formaction',66HEADERS: 'headers',67HEIGHT: 'height',68HIDDEN: 'hidden',69HIGH: 'high',70HREF: 'href',71HREFLANG: 'hreflang',72HTTP_EQUIV: 'http-equiv',73ICON: 'icon',74ID: 'id',75ISMAP: 'ismap',76ITEMPROP: 'itemprop',77KEYTYPE: 'keytype',78KIND: 'kind',79LABEL: 'label',80LANG: 'lang',81LANGUAGE: 'language',82LIST: 'list',83LOOP: 'loop',84LOW: 'low',85MANIFEST: 'manifest',86MAX: 'max',87MAXLENGTH: 'maxlength',88MEDIA: 'media',89METHOD: 'method',90MIN: 'min',91MULTIPLE: 'multiple',92MUTED: 'muted',93NAME: 'name',94NOVALIDATE: 'novalidate',95OPEN: 'open',96OPTIMUM: 'optimum',97PATTERN: 'pattern',98PING: 'ping',99PLACEHOLDER: 'placeholder',100POSTER: 'poster',101PRELOAD: 'preload',102RADIOGROUP: 'radiogroup',103READONLY: 'readonly',104REL: 'rel',105REQUIRED: 'required',106REVERSED: 'reversed',107ROWS: 'rows',108ROWSPAN: 'rowspan',109SANDBOX: 'sandbox',110SCOPE: 'scope',111SCOPED: 'scoped',112SEAMLESS: 'seamless',113SELECTED: 'selected',114SHAPE: 'shape',115SIZE: 'size',116SIZES: 'sizes',117SPAN: 'span',118SPELLCHECK: 'spellcheck',119SRC: 'src',120SRCDOC: 'srcdoc',121SRCLANG: 'srclang',122SRCSET: 'srcset',123START: 'start',124STEP: 'step',125STYLE: 'style',126SUMMARY: 'summary',127TABINDEX: 'tabindex',128TARGET: 'target',129TITLE: 'title',130TYPE: 'type',131USEMAP: 'usemap',132VALUE: 'value',133WIDTH: 'width',134WRAP: 'wrap'135};136137138