mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1178484 - Part 2: Regenerate gecko's in-tree parser. r=hsivonen
This commit is contained in:
parent
dbbbb91632
commit
357d188e33
@ -986,6 +986,7 @@ public final class AttributeName
|
||||
public static final AttributeName LANGUAGE = new AttributeName(ALL_NO_NS, SAME_LOCAL("language"), ALL_NO_PREFIX, NCNAME_HTML | NCNAME_FOREIGN | NCNAME_LANG);
|
||||
public static final AttributeName TEMPLATE = new AttributeName(ALL_NO_NS, SAME_LOCAL("template"), ALL_NO_PREFIX, NCNAME_HTML | NCNAME_FOREIGN | NCNAME_LANG);
|
||||
public static final AttributeName TABINDEX = new AttributeName(ALL_NO_NS, SAME_LOCAL("tabindex"), ALL_NO_PREFIX, NCNAME_HTML | NCNAME_FOREIGN | NCNAME_LANG);
|
||||
public static final AttributeName PROPERTY = new AttributeName(ALL_NO_NS, SAME_LOCAL("property"), ALL_NO_PREFIX, NCNAME_HTML | NCNAME_FOREIGN | NCNAME_LANG);
|
||||
public static final AttributeName READONLY = new AttributeName(ALL_NO_NS, SAME_LOCAL("readonly"), ALL_NO_PREFIX, NCNAME_HTML | NCNAME_FOREIGN | NCNAME_LANG | CASE_FOLDED | BOOLEAN);
|
||||
public static final AttributeName SELECTED = new AttributeName(ALL_NO_NS, SAME_LOCAL("selected"), ALL_NO_PREFIX, NCNAME_HTML | NCNAME_FOREIGN | NCNAME_LANG | CASE_FOLDED | BOOLEAN);
|
||||
public static final AttributeName ROWLINES = new AttributeName(ALL_NO_NS, SAME_LOCAL("rowlines"), ALL_NO_PREFIX, NCNAME_HTML | NCNAME_FOREIGN | NCNAME_LANG);
|
||||
@ -1569,6 +1570,7 @@ public final class AttributeName
|
||||
LANGUAGE,
|
||||
TEMPLATE,
|
||||
TABINDEX,
|
||||
PROPERTY,
|
||||
READONLY,
|
||||
SELECTED,
|
||||
ROWLINES,
|
||||
@ -2153,6 +2155,7 @@ public final class AttributeName
|
||||
284606461,
|
||||
286700477,
|
||||
286798916,
|
||||
290055764,
|
||||
291557706,
|
||||
291665349,
|
||||
291804100,
|
||||
@ -2467,5 +2470,4 @@ public final class AttributeName
|
||||
908643300,
|
||||
945213471,
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -345,6 +345,7 @@ HTML5_ATOM(multiple, "multiple")
|
||||
HTML5_ATOM(longdesc, "longdesc")
|
||||
HTML5_ATOM(language, "language")
|
||||
HTML5_ATOM(tabindex, "tabindex")
|
||||
HTML5_ATOM(property, "property")
|
||||
HTML5_ATOM(readonly, "readonly")
|
||||
HTML5_ATOM(selected, "selected")
|
||||
HTML5_ATOM(rowlines, "rowlines")
|
||||
|
File diff suppressed because one or more lines are too long
@ -361,6 +361,7 @@ class nsHtml5AttributeName
|
||||
static nsHtml5AttributeName* ATTR_LANGUAGE;
|
||||
static nsHtml5AttributeName* ATTR_TEMPLATE;
|
||||
static nsHtml5AttributeName* ATTR_TABINDEX;
|
||||
static nsHtml5AttributeName* ATTR_PROPERTY;
|
||||
static nsHtml5AttributeName* ATTR_READONLY;
|
||||
static nsHtml5AttributeName* ATTR_SELECTED;
|
||||
static nsHtml5AttributeName* ATTR_ROWLINES;
|
||||
|
Loading…
Reference in New Issue
Block a user