diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 29f7a3ec8b8..e87dec424b0 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -7,7 +7,7 @@
-
+
INCOMPATIBLE CHANGE: For this version, the processing of WebWindowListener events got many changes/fixes/improvements.
The main point was to let this work as stable as possible even if many WebWindowListener are registred. Also the state
diff --git a/src/main/java/org/htmlunit/BrowserVersion.java b/src/main/java/org/htmlunit/BrowserVersion.java
index 586417e5332..771a206829b 100644
--- a/src/main/java/org/htmlunit/BrowserVersion.java
+++ b/src/main/java/org/htmlunit/BrowserVersion.java
@@ -89,9 +89,9 @@ public final class BrowserVersion implements Serializable {
private static final String PLATFORM_WIN32 = "Win32";
/** Latest Firefox. */
- public static final BrowserVersion FIREFOX = new BrowserVersion(116, "FF");
+ public static final BrowserVersion FIREFOX = new BrowserVersion(119, "FF");
- private static final int FIREFOX_ESR_NUMERIC = 102;
+ private static final int FIREFOX_ESR_NUMERIC = 109; // FF ESR 115 reports itself as 109
/** Firefox ESR. */
public static final BrowserVersion FIREFOX_ESR = new BrowserVersion(FIREFOX_ESR_NUMERIC, "FF-ESR");
diff --git a/src/test/java/org/htmlunit/BrowserVersionTest.java b/src/test/java/org/htmlunit/BrowserVersionTest.java
index 4ec074e3e18..6c7cfbb1bc5 100644
--- a/src/test/java/org/htmlunit/BrowserVersionTest.java
+++ b/src/test/java/org/htmlunit/BrowserVersionTest.java
@@ -35,8 +35,8 @@ public class BrowserVersionTest {
*/
@Test
public void getBrowserVersionNumeric() {
- assertEquals(116, BrowserVersion.FIREFOX.getBrowserVersionNumeric());
- assertEquals(102, BrowserVersion.FIREFOX_ESR.getBrowserVersionNumeric());
+ assertEquals(119, BrowserVersion.FIREFOX.getBrowserVersionNumeric());
+ assertEquals(109, BrowserVersion.FIREFOX_ESR.getBrowserVersionNumeric());
assertEquals(118, BrowserVersion.CHROME.getBrowserVersionNumeric());
assertEquals(118, BrowserVersion.EDGE.getBrowserVersionNumeric());
assertEquals(11, BrowserVersion.INTERNET_EXPLORER.getBrowserVersionNumeric());
diff --git a/src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java b/src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java
index 6e4dba20170..ee24c197a96 100644
--- a/src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java
+++ b/src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java
@@ -561,7 +561,16 @@ public void htmlElement() throws Exception {
+ "setHTML(),setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute(),"
+ "webkitMatchesSelector(),webkitRequestFullScreen(),"
+ "webkitRequestFullscreen()",
- FF = "after(),animate(),append(),assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
+ FF = "after(),animate(),append(),ariaAtomic[GSCE],ariaAutoComplete[GSCE],ariaBusy[GSCE],"
+ + "ariaChecked[GSCE],ariaColCount[GSCE],ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],"
+ + "ariaCurrent[GSCE],ariaDescription[GSCE],ariaDisabled[GSCE],ariaExpanded[GSCE],ariaHasPopup[GSCE],"
+ + "ariaHidden[GSCE],ariaInvalid[GSCE],ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLevel[GSCE],"
+ + "ariaLive[GSCE],ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],"
+ + "ariaOrientation[GSCE],ariaPlaceholder[GSCE],ariaPosInSet[GSCE],ariaPressed[GSCE],"
+ + "ariaReadOnly[GSCE],ariaRelevant[GSCE],ariaRequired[GSCE],ariaRoleDescription[GSCE],"
+ + "ariaRowCount[GSCE],ariaRowIndex[GSCE],ariaRowIndexText[GSCE],ariaRowSpan[GSCE],"
+ + "ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],ariaValueMax[GSCE],ariaValueMin[GSCE],"
+ + "ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
+ "checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],"
+ "clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),constructor(),"
+ "firstElementChild[GCE],getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),"
@@ -574,26 +583,26 @@ public void htmlElement() throws Exception {
+ "part[GSCE],prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),"
+ "releaseCapture(),releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),"
+ "removeAttributeNS(),replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),"
- + "scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],"
- + "scrollTo(),scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
- + "setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture(),shadowRoot[GCE],"
- + "slot[GSCE],tagName[GCE],toggleAttribute(),"
+ + "role[GSCE],scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],"
+ + "scrollLeftMax[GCE],scrollTo(),scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),"
+ + "setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture(),"
+ + "shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute(),"
+ "webkitMatchesSelector()",
FF_ESR = "after(),animate(),append(),assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
- + "childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],clientHeight[GCE],"
- + "clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),constructor(),firstElementChild[GCE],"
- + "getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),"
- + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
- + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
- + "hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
- + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),mozMatchesSelector(),"
- + "mozRequestFullScreen(),namespaceURI[GCE],nextElementSibling[GCE],onfullscreenchange[GSCE],"
- + "onfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],prefix[GCE],prepend(),"
- + "previousElementSibling[GCE],querySelector(),querySelectorAll(),releaseCapture(),"
- + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
- + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),scroll(),scrollBy(),"
- + "scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],scrollTo(),"
- + "scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
+ + "checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],"
+ + "clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),constructor(),"
+ + "firstElementChild[GCE],getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),"
+ + "getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects(),"
+ + "getElementsByClassName(),getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),"
+ + "hasAttributeNS(),hasAttributes(),hasPointerCapture(),id[GSCE],innerHTML[GSCE],"
+ + "insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),lastElementChild[GCE],"
+ + "localName[GCE],matches(),mozMatchesSelector(),mozRequestFullScreen(),namespaceURI[GCE],"
+ + "nextElementSibling[GCE],onfullscreenchange[GSCE],onfullscreenerror[GSCE],outerHTML[GSCE],"
+ + "part[GSCE],prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),"
+ + "releaseCapture(),releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),"
+ + "removeAttributeNS(),replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),"
+ + "scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],"
+ + "scrollTo(),scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
+ "setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture(),shadowRoot[GCE],"
+ "slot[GSCE],tagName[GCE],toggleAttribute(),"
+ "webkitMatchesSelector()",
@@ -749,7 +758,16 @@ public void element() throws Exception {
+ "setHTML(),setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute(),"
+ "webkitMatchesSelector(),webkitRequestFullScreen(),"
+ "webkitRequestFullscreen()",
- FF = "after(),animate(),append(),assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
+ FF = "after(),animate(),append(),ariaAtomic[GSCE],ariaAutoComplete[GSCE],ariaBusy[GSCE],"
+ + "ariaChecked[GSCE],ariaColCount[GSCE],ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],"
+ + "ariaCurrent[GSCE],ariaDescription[GSCE],ariaDisabled[GSCE],ariaExpanded[GSCE],ariaHasPopup[GSCE],"
+ + "ariaHidden[GSCE],ariaInvalid[GSCE],ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLevel[GSCE],"
+ + "ariaLive[GSCE],ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],"
+ + "ariaOrientation[GSCE],ariaPlaceholder[GSCE],ariaPosInSet[GSCE],ariaPressed[GSCE],"
+ + "ariaReadOnly[GSCE],ariaRelevant[GSCE],ariaRequired[GSCE],ariaRoleDescription[GSCE],"
+ + "ariaRowCount[GSCE],ariaRowIndex[GSCE],ariaRowIndexText[GSCE],ariaRowSpan[GSCE],"
+ + "ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],ariaValueMax[GSCE],ariaValueMin[GSCE],"
+ + "ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
+ "checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],"
+ "clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),constructor(),"
+ "firstElementChild[GCE],getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),"
@@ -762,26 +780,26 @@ public void element() throws Exception {
+ "part[GSCE],prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),"
+ "releaseCapture(),releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),"
+ "removeAttributeNS(),replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),"
- + "scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],"
- + "scrollTo(),scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
- + "setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture(),shadowRoot[GCE],"
- + "slot[GSCE],tagName[GCE],toggleAttribute(),"
+ + "role[GSCE],scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],"
+ + "scrollLeftMax[GCE],scrollTo(),scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),"
+ + "setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture(),"
+ + "shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute(),"
+ "webkitMatchesSelector()",
FF_ESR = "after(),animate(),append(),assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
- + "childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],clientHeight[GCE],"
- + "clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),constructor(),firstElementChild[GCE],"
- + "getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),"
- + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
- + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
- + "hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
- + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),mozMatchesSelector(),"
- + "mozRequestFullScreen(),namespaceURI[GCE],nextElementSibling[GCE],onfullscreenchange[GSCE],"
- + "onfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],prefix[GCE],prepend(),"
- + "previousElementSibling[GCE],querySelector(),querySelectorAll(),releaseCapture(),"
- + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
- + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),scroll(),scrollBy(),"
- + "scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],scrollTo(),"
- + "scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
+ + "checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],"
+ + "clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),constructor(),"
+ + "firstElementChild[GCE],getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),"
+ + "getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects(),"
+ + "getElementsByClassName(),getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),"
+ + "hasAttributeNS(),hasAttributes(),hasPointerCapture(),id[GSCE],innerHTML[GSCE],"
+ + "insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),lastElementChild[GCE],"
+ + "localName[GCE],matches(),mozMatchesSelector(),mozRequestFullScreen(),namespaceURI[GCE],"
+ + "nextElementSibling[GCE],onfullscreenchange[GSCE],onfullscreenerror[GSCE],outerHTML[GSCE],"
+ + "part[GSCE],prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),"
+ + "releaseCapture(),releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),"
+ + "removeAttributeNS(),replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),"
+ + "scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],"
+ + "scrollTo(),scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
+ "setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture(),shadowRoot[GCE],"
+ "slot[GSCE],tagName[GCE],toggleAttribute(),"
+ "webkitMatchesSelector()",
@@ -1301,6 +1319,33 @@ public void window() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -1327,32 +1372,6 @@ public void window() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -1524,6 +1543,33 @@ public void abbr() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -1550,32 +1596,6 @@ public void abbr() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -1797,6 +1817,33 @@ public void a() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -1823,32 +1870,6 @@ public void a() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,clear,constructor,width")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -2077,6 +2098,33 @@ public void area() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -2103,32 +2151,6 @@ public void area() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -2340,6 +2362,33 @@ public void article() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -2366,32 +2415,6 @@ public void article() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -2691,6 +2714,33 @@ public void base() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -2717,32 +2767,6 @@ public void base() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "color[GSCE],constructor[],face[GSCE],size[GSCE]")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -2913,6 +2937,33 @@ public void basefont() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -2939,32 +2990,6 @@ public void basefont() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "constructor,namedRecordset(),recordset")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -3136,6 +3161,33 @@ public void bdi() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -3162,32 +3214,6 @@ public void bdi() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -3359,6 +3385,33 @@ public void bdo() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -3385,32 +3438,6 @@ public void bdo() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -3659,6 +3686,33 @@ public void body() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -3685,32 +3739,6 @@ public void body() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -3852,9 +3880,9 @@ public void br() throws Exception {
+ "formMethod[GSCE],formNoValidate[GSCE],formTarget[GSCE],labels[GCE],name[GSCE],reportValidity(),"
+ "setCustomValidity(),type[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],"
+ "willValidate[GCE]",
- FF_ESR = "autofocus[GSCE],checkValidity(),constructor(),disabled[GSCE],form[GCE],formAction[GSCE],"
- + "formEnctype[GSCE],formMethod[GSCE],formNoValidate[GSCE],formTarget[GSCE],labels[GCE],name[GSCE],"
- + "reportValidity(),setCustomValidity(),type[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],"
+ FF_ESR = "checkValidity(),constructor(),disabled[GSCE],form[GCE],formAction[GSCE],formEnctype[GSCE],"
+ + "formMethod[GSCE],formNoValidate[GSCE],formTarget[GSCE],labels[GCE],name[GSCE],reportValidity(),"
+ + "setCustomValidity(),type[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],"
+ "willValidate[GCE]",
IE = "autofocus,checkValidity(),constructor,createTextRange(),form,formAction,formEnctype,formMethod,"
+ "formNoValidate,formTarget,name,setCustomValidity(),status,type,validationMessage,validity,value,"
@@ -3889,7 +3917,7 @@ public void button() throws Exception {
+ "toBlob(),toDataURL(),transferControlToOffscreen(),"
+ "width[GSCE]",
FF_ESR = "captureStream(),constructor(),getContext(),height[GSCE],mozOpaque[GSCE],mozPrintCallback[GSCE],"
- + "toBlob(),toDataURL(),"
+ + "toBlob(),toDataURL(),transferControlToOffscreen(),"
+ "width[GSCE]",
IE = "constructor,getContext(),height,msToBlob(),toDataURL(),width")
@HtmlUnitNYI(CHROME = "constructor(),getContext(),height[GSCE],toDataURL(),width[GSCE]",
@@ -3986,9 +4014,36 @@ public void caption() throws Exception {
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
- + "onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
- + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
- + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
+ + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
+ + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
@@ -4007,32 +4062,6 @@ public void caption() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,clear,constructor,width")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -4204,6 +4233,33 @@ public void center() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -4230,32 +4286,6 @@ public void center() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -4427,6 +4457,33 @@ public void cite() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -4453,32 +4510,6 @@ public void cite() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -4681,6 +4712,33 @@ public void datalist() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -4707,32 +4765,6 @@ public void datalist() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -4904,6 +4936,33 @@ public void dfn() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -4930,32 +4989,6 @@ public void dfn() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "constructor[],noWrap[GSCE]")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -5228,6 +5261,33 @@ public void dl() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -5254,32 +5314,6 @@ public void dl() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "constructor[],noWrap[GSCE]")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -5481,9 +5515,36 @@ public void embed() throws Exception {
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
- + "onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
- + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
- + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
+ + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
+ + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
@@ -5502,32 +5563,6 @@ public void embed() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -5733,6 +5768,33 @@ public void fieldset() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -5759,32 +5821,6 @@ public void fieldset() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -5995,6 +6031,33 @@ public void figcaption() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -6021,32 +6084,6 @@ public void figcaption() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -6226,8 +6263,8 @@ public void font() throws Exception {
+ "relList[GSCE],reportValidity(),requestSubmit(),reset(),submit(),"
+ "target[GSCE]",
FF_ESR = "acceptCharset[GSCE],action[GSCE],autocomplete[GSCE],checkValidity(),constructor(),elements[GCE],"
- + "encoding[GSCE],enctype[GSCE],length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],"
- + "reportValidity(),requestSubmit(),reset(),submit(),"
+ + "encoding[GSCE],enctype[GSCE],length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],rel[GSCE],"
+ + "relList[GSCE],reportValidity(),requestSubmit(),reset(),submit(),"
+ "target[GSCE]",
IE = "acceptCharset,action,autocomplete,checkValidity(),constructor,elements,encoding,enctype,item(),"
+ "length,method,name,namedItem(),noValidate,reset(),submit(),tags(),target,"
@@ -6330,6 +6367,33 @@ public void formData() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -6356,32 +6420,6 @@ public void formData() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -6689,6 +6727,33 @@ public void head() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -6715,32 +6780,6 @@ public void head() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -7125,6 +7164,33 @@ public void img() throws Exception {
@Alerts(CHROME = "constructor()",
EDGE = "constructor()",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -7151,32 +7217,6 @@ public void img() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "align,alt,border,complete,constructor,crossOrigin,dynsrc,fileCreatedDate,fileModifiedDate,"
+ "fileUpdatedDate,height,href,hspace,isMap,longDesc,loop,lowsrc,mimeType,msPlayToDisabled,"
+ "msPlayToPreferredSourceUri,msPlayToPrimary,name,nameProp,naturalHeight,naturalWidth,protocol,src,"
@@ -7326,6 +7366,33 @@ public void isindex() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -7352,32 +7419,6 @@ public void isindex() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -7549,6 +7590,33 @@ public void i() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -7575,32 +7643,6 @@ public void i() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -8012,6 +8054,33 @@ public void link() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -8038,32 +8107,6 @@ public void link() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "constructor,namedRecordset(),recordset")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -8250,6 +8293,33 @@ public void map() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -8276,32 +8346,6 @@ public void map() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -8524,7 +8568,7 @@ public void menuitem() throws Exception {
@Alerts(CHROME = "constructor(),content[GSCE],httpEquiv[GSCE],media[GSCE],name[GSCE],scheme[GSCE]",
EDGE = "constructor(),content[GSCE],httpEquiv[GSCE],media[GSCE],name[GSCE],scheme[GSCE]",
FF = "constructor(),content[GSCE],httpEquiv[GSCE],media[GSCE],name[GSCE],scheme[GSCE]",
- FF_ESR = "constructor(),content[GSCE],httpEquiv[GSCE],name[GSCE],scheme[GSCE]",
+ FF_ESR = "constructor(),content[GSCE],httpEquiv[GSCE],media[GSCE],name[GSCE],scheme[GSCE]",
IE = "charset[GSCE],constructor[],content[GSCE],httpEquiv[GSCE],name[GSCE],scheme[GSCE],url[GSCE]")
public void meta() throws Exception {
test("meta");
@@ -8631,6 +8675,33 @@ public void multicol() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -8657,32 +8728,6 @@ public void multicol() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -8909,6 +8954,33 @@ public void nextid() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -8935,32 +9007,6 @@ public void nextid() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -9132,6 +9178,33 @@ public void nobr() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -9158,32 +9231,6 @@ public void nobr() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -9394,6 +9441,33 @@ public void noembed() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -9420,32 +9494,6 @@ public void noembed() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -9782,6 +9830,33 @@ public void nolayer() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -9808,32 +9883,6 @@ public void nolayer() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,clear,constructor,width")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -10246,6 +10295,33 @@ public void performance() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -10272,32 +10348,6 @@ public void performance() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,clear,constructor,width")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -10504,6 +10554,33 @@ public void progress() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -10530,32 +10607,6 @@ public void progress() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -10703,9 +10754,36 @@ public void rbc() throws Exception {
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
- + "onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
- + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
- + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
+ + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
+ + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
@@ -10724,32 +10802,6 @@ public void rbc() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -10877,6 +10929,33 @@ public void rp() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -10903,32 +10982,6 @@ public void rp() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -11057,6 +11110,33 @@ public void rt() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -11083,32 +11163,6 @@ public void rt() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -11236,6 +11290,33 @@ public void rtc() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -11262,32 +11343,6 @@ public void rtc() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -11415,6 +11470,33 @@ public void ruby() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -11441,32 +11523,6 @@ public void ruby() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -11627,6 +11683,33 @@ public void s() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -11653,32 +11736,6 @@ public void s() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -11873,9 +11930,36 @@ public void script() throws Exception {
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
- + "onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
- + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
- + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
+ + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
+ + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
@@ -11894,32 +11978,6 @@ public void script() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -12086,8 +12144,8 @@ public void section() throws Exception {
+ "reportValidity(),required[GSCE],selectedIndex[GSCE],selectedOptions[GCE],setCustomValidity(),"
+ "size[GSCE],type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
+ "willValidate[GCE]",
- FF_ESR = "add(),autocomplete[GSCE],autofocus[GSCE],checkValidity(),constructor(),disabled[GSCE],form[GCE],"
- + "item(),labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],namedItem(),options[GCE],remove(),"
+ FF_ESR = "add(),autocomplete[GSCE],checkValidity(),constructor(),disabled[GSCE],form[GCE],item(),"
+ + "labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],namedItem(),options[GCE],remove(),"
+ "reportValidity(),required[GSCE],selectedIndex[GSCE],selectedOptions[GCE],setCustomValidity(),"
+ "size[GSCE],type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
+ "willValidate[GCE]",
@@ -12203,6 +12261,33 @@ public void optionsCollection() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -12229,32 +12314,6 @@ public void optionsCollection() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -12370,7 +12429,7 @@ public void small() throws Exception {
@Alerts(CHROME = "constructor(),height[GSCE],media[GSCE],sizes[GSCE],src[GSCE],srcset[GSCE],type[GSCE],width[GSCE]",
EDGE = "constructor(),height[GSCE],media[GSCE],sizes[GSCE],src[GSCE],srcset[GSCE],type[GSCE],width[GSCE]",
FF = "constructor(),height[GSCE],media[GSCE],sizes[GSCE],src[GSCE],srcset[GSCE],type[GSCE],width[GSCE]",
- FF_ESR = "constructor(),media[GSCE],sizes[GSCE],src[GSCE],srcset[GSCE],type[GSCE]",
+ FF_ESR = "constructor(),height[GSCE],media[GSCE],sizes[GSCE],src[GSCE],srcset[GSCE],type[GSCE],width[GSCE]",
IE = "constructor,media,msKeySystem,src,type")
@HtmlUnitNYI(CHROME = "constructor()",
EDGE = "constructor()",
@@ -12461,6 +12520,33 @@ public void span() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -12487,32 +12573,6 @@ public void span() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -12684,6 +12744,33 @@ public void strike() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -12710,32 +12797,6 @@ public void strike() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -12926,6 +12987,33 @@ public void style() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -12952,32 +13040,6 @@ public void style() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -13149,6 +13211,33 @@ public void sub() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -13175,32 +13264,6 @@ public void sub() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "constructor,namedRecordset(),recordset")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -13372,6 +13435,33 @@ public void summary() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -13398,32 +13488,6 @@ public void summary() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -13796,12 +13860,11 @@ public void tr() throws Exception {
+ "setRangeText(),setSelectionRange(),textLength[GCE],type[GCE],validationMessage[GCE],"
+ "validity[GCE],value[GSCE],willValidate[GCE],"
+ "wrap[GSCE]",
- FF_ESR = "autocomplete[GSCE],autofocus[GSCE],checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],"
- + "disabled[GSCE],form[GCE],labels[GCE],maxLength[GSCE],minLength[GSCE],name[GSCE],"
- + "placeholder[GSCE],readOnly[GSCE],reportValidity(),required[GSCE],rows[GSCE],select(),"
- + "selectionDirection[GSCE],selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
- + "setRangeText(),setSelectionRange(),textLength[GCE],type[GCE],validationMessage[GCE],"
- + "validity[GCE],value[GSCE],willValidate[GCE],"
+ FF_ESR = "autocomplete[GSCE],checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],disabled[GSCE],"
+ + "form[GCE],labels[GCE],maxLength[GSCE],minLength[GSCE],name[GSCE],placeholder[GSCE],"
+ + "readOnly[GSCE],reportValidity(),required[GSCE],rows[GSCE],select(),selectionDirection[GSCE],"
+ + "selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),setRangeText(),setSelectionRange(),"
+ + "textLength[GCE],type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],willValidate[GCE],"
+ "wrap[GSCE]",
IE = "autofocus,checkValidity(),cols,constructor,createTextRange(),defaultValue,form,maxLength,name,"
+ "placeholder,readOnly,required,rows,select(),selectionEnd,selectionStart,setCustomValidity(),"
@@ -13943,6 +14006,33 @@ public void thead() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -13969,32 +14059,6 @@ public void thead() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -14225,6 +14289,33 @@ public void track() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -14251,32 +14342,6 @@ public void track() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -14468,6 +14533,33 @@ public void ul() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -14494,32 +14586,6 @@ public void ul() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "cite,constructor,dateTime")
@HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
@@ -14730,6 +14796,33 @@ public void video() throws Exception {
+ "title[GSCE],togglePopover(),translate[GSCE],"
+ "virtualKeyboardPolicy[GSCE]",
FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ + "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ + "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
+ + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
+ + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
+ + "onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
+ + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
+ + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
+ + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
+ + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
+ + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
+ + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
+ + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
+ + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ + "tabIndex[GSCE],title[GSCE],"
+ + "translate[GSCE]",
+ FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
+ "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
+ "enterKeyHint[GSCE],focus(),hidden[GSCE],inert[GSCE],innerText[GSCE],inputMode[GSCE],"
+ "isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
@@ -14756,32 +14849,6 @@ public void video() throws Exception {
+ "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],"
+ "tabIndex[GSCE],title[GSCE],"
+ "translate[GSCE]",
- FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),blur(),click(),constructor(),"
- + "contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],enterKeyHint[GSCE],focus(),"
- + "hidden[GSCE],innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],"
- + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
- + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
- + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
- + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
- + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
- + "ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
- + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
- + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
- + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
- + "onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
- + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
- + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
- + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
- + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
- + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
- + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
- + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
- + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],"
- + "title[GSCE]",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),constructor,contains(),contentEditable,"
+ "createControlRange(),currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),"
@@ -14985,17 +15052,16 @@ public void xmp() throws Exception {
+ "value[GSCE],valueAsDate[GSCE],valueAsNumber[GSCE],webkitdirectory[GSCE],webkitEntries[GCE],"
+ "width[GSCE],"
+ "willValidate[GCE]",
- FF_ESR = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],autofocus[GSCE],checked[GSCE],"
- + "checkValidity(),constructor(),defaultChecked[GSCE],defaultValue[GSCE],disabled[GSCE],files[GSCE],"
- + "form[GCE],formAction[GSCE],formEnctype[GSCE],formMethod[GSCE],formNoValidate[GSCE],"
- + "formTarget[GSCE],height[GSCE],indeterminate[GSCE],labels[GCE],list[GCE],max[GSCE],"
- + "maxLength[GSCE],min[GSCE],minLength[GSCE],mozIsTextField(),multiple[GSCE],name[GSCE],"
- + "pattern[GSCE],placeholder[GSCE],readOnly[GSCE],reportValidity(),required[GSCE],select(),"
- + "selectionDirection[GSCE],selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
- + "setRangeText(),setSelectionRange(),showPicker(),size[GSCE],src[GSCE],step[GSCE],stepDown(),"
- + "stepUp(),textLength[GCE],type[GSCE],useMap[GSCE],validationMessage[GCE],validity[GCE],"
- + "value[GSCE],valueAsDate[GSCE],valueAsNumber[GSCE],webkitdirectory[GSCE],webkitEntries[GCE],"
- + "width[GSCE],"
+ FF_ESR = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],checked[GSCE],checkValidity(),"
+ + "constructor(),defaultChecked[GSCE],defaultValue[GSCE],disabled[GSCE],files[GSCE],form[GCE],"
+ + "formAction[GSCE],formEnctype[GSCE],formMethod[GSCE],formNoValidate[GSCE],formTarget[GSCE],"
+ + "height[GSCE],indeterminate[GSCE],labels[GCE],list[GCE],max[GSCE],maxLength[GSCE],min[GSCE],"
+ + "minLength[GSCE],mozIsTextField(),multiple[GSCE],name[GSCE],pattern[GSCE],placeholder[GSCE],"
+ + "readOnly[GSCE],reportValidity(),required[GSCE],select(),selectionDirection[GSCE],"
+ + "selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),setRangeText(),setSelectionRange(),"
+ + "showPicker(),size[GSCE],src[GSCE],step[GSCE],stepDown(),stepUp(),textLength[GCE],type[GSCE],"
+ + "useMap[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],valueAsDate[GSCE],"
+ + "valueAsNumber[GSCE],webkitdirectory[GSCE],webkitEntries[GCE],width[GSCE],"
+ "willValidate[GCE]",
IE = "accept,align,alt,autocomplete,autofocus,border,checked,checkValidity(),complete,constructor,"
+ "createTextRange(),defaultChecked,defaultValue,dynsrc,files,form,formAction,formEnctype,"
@@ -15559,7 +15625,7 @@ public void wheelEvent() throws Exception {
+ "getModifierState(),initMouseEvent(),initNSMouseEvent(),metaKey[GCE],movementX[GCE],"
+ "movementY[GCE],MOZ_SOURCE_CURSOR[E],MOZ_SOURCE_ERASER[E],MOZ_SOURCE_KEYBOARD[E],"
+ "MOZ_SOURCE_MOUSE[E],MOZ_SOURCE_PEN[E],MOZ_SOURCE_TOUCH[E],MOZ_SOURCE_UNKNOWN[E],"
- + "mozInputSource[GCE],mozPressure[GCE],offsetX[GCE],offsetY[GCE],pageX[GCE],pageY[GCE],region[GCE],"
+ + "mozInputSource[GCE],mozPressure[GCE],offsetX[GCE],offsetY[GCE],pageX[GCE],pageY[GCE],"
+ "relatedTarget[GCE],screenX[GCE],screenY[GCE],shiftKey[GCE],x[GCE],"
+ "y[GCE]",
IE = "altKey,button,buttons,clientX,clientY,constructor,ctrlKey,fromElement,getModifierState(),"
@@ -15870,9 +15936,9 @@ public void slot() throws Exception {
+ "mozFullScreenElement[GCE],mozFullScreenEnabled[GCE],mozSetImageElement(),onabort[GSCE],"
+ "onafterscriptexecute[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
+ "onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],"
- + "onbeforescriptexecute[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
- + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
- + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ + "onbeforescriptexecute[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
+ + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
+ + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
+ "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
+ "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ "onfullscreenchange[GSCE],onfullscreenerror[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
@@ -15923,18 +15989,18 @@ public void slot() throws Exception {
+ "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
+ "onfullscreenchange[GSCE],onfullscreenerror[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
+ "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
- + "onloadedmetadata[GSCE],onloadend[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
- + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
- + "onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],"
- + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],"
- + "onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],onpointerlockchange[GSCE],"
- + "onpointerlockerror[GSCE],onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],"
- + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreadystatechange[GSCE],onreset[GSCE],"
- + "onresize[GSCE],onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],"
- + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],"
- + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
- + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvisibilitychange[GSCE],"
- + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
+ + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
+ + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
+ + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
+ + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
+ + "onpointerenter[GSCE],onpointerleave[GSCE],onpointerlockchange[GSCE],onpointerlockerror[GSCE],"
+ + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
+ + "onratechange[GSCE],onreadystatechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
+ + "onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
+ + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
+ + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
+ + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvisibilitychange[GSCE],onvolumechange[GSCE],"
+ + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
+ "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],open(),plugins[GCE],"
+ "pointerLockElement[GCE],preferredStyleSheetSet[GCE],prepend(),queryCommandEnabled(),"
+ "queryCommandIndeterm(),queryCommandState(),queryCommandSupported(),queryCommandValue(),"
@@ -16050,6 +16116,29 @@ public void xmlDocument() throws Exception {
+ "style[GSCE],tabIndex[GSCE],"
+ "viewportElement[GCE]",
FF = "autofocus[GSCE],blur(),className[GCE],constructor(),dataset[GCE],focus(),id[GSCE],nonce[GSCE],"
+ + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
+ + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncancel[GSCE],"
+ + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
+ + "oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
+ + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
+ + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
+ + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
+ + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
+ + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
+ + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
+ + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
+ + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
+ + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
+ + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
+ + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
+ + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
+ + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
+ + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
+ + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
+ + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],ownerSVGElement[GCE],"
+ + "style[GSCE],tabIndex[GSCE],"
+ + "viewportElement[GCE]",
+ FF_ESR = "autofocus[GSCE],blur(),className[GCE],constructor(),dataset[GCE],focus(),id[GSCE],nonce[GSCE],"
+ "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
+ "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],"
+ "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
@@ -16072,28 +16161,6 @@ public void xmlDocument() throws Exception {
+ "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],ownerSVGElement[GCE],"
+ "style[GSCE],tabIndex[GSCE],"
+ "viewportElement[GCE]",
- FF_ESR = "blur(),className[GCE],constructor(),dataset[GCE],focus(),id[GSCE],nonce[GSCE],onabort[GSCE],"
- + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
- + "onauxclick[GSCE],onbeforeinput[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
- + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
- + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
- + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
- + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
- + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
- + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadend[GSCE],"
- + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
- + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
- + "onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],"
- + "onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],"
- + "onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],"
- + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
- + "onscroll[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
- + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
- + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
- + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
- + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
- + "onwebkittransitionend[GSCE],onwheel[GSCE],ownerSVGElement[GCE],style[GSCE],tabIndex[GSCE],"
- + "viewportElement[GCE]",
IE = "childElementCount,clientHeight,clientLeft,clientTop,clientWidth,constructor,firstElementChild,"
+ "getAttribute(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),"
+ "getClientRects(),getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),"
@@ -16899,14 +16966,15 @@ public void nodeListButtonLabels() throws Exception {
+ "flood-color[GSCE],flood-opacity[GSCE],floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],"
+ "font-feature-settings[GSCE],font-kerning[GSCE],font-language-override[GSCE],"
+ "font-optical-sizing[GSCE],font-palette[GSCE],font-size-adjust[GSCE],font-size[GSCE],"
- + "font-stretch[GSCE],font-style[GSCE],font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],"
- + "font-synthesis-weight[GSCE],font-synthesis[GSCE],font-variant-alternates[GSCE],"
- + "font-variant-caps[GSCE],font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],"
- + "font-variant-numeric[GSCE],font-variant-position[GSCE],font-variant[GSCE],"
- + "font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
- + "fontFeatureSettings[GSCE],fontKerning[GSCE],fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],"
- + "fontPalette[GSCE],fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],"
- + "fontSynthesis[GSCE],fontSynthesisSmallCaps[GSCE],fontSynthesisStyle[GSCE],"
+ + "font-stretch[GSCE],font-style[GSCE],font-synthesis-position[GSCE],"
+ + "font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],font-synthesis-weight[GSCE],"
+ + "font-synthesis[GSCE],font-variant-alternates[GSCE],font-variant-caps[GSCE],"
+ + "font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],font-variant-numeric[GSCE],"
+ + "font-variant-position[GSCE],font-variant[GSCE],font-variation-settings[GSCE],font-weight[GSCE],"
+ + "font[GSCE],fontFamily[GSCE],fontFeatureSettings[GSCE],fontKerning[GSCE],"
+ + "fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],fontPalette[GSCE],fontSize[GSCE],"
+ + "fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],fontSynthesis[GSCE],"
+ + "fontSynthesisPosition[GSCE],fontSynthesisSmallCaps[GSCE],fontSynthesisStyle[GSCE],"
+ "fontSynthesisWeight[GSCE],fontVariant[GSCE],fontVariantAlternates[GSCE],fontVariantCaps[GSCE],"
+ "fontVariantEastAsian[GSCE],fontVariantLigatures[GSCE],fontVariantNumeric[GSCE],"
+ "fontVariantPosition[GSCE],fontVariationSettings[GSCE],fontWeight[GSCE],forced-color-adjust[GSCE],"
@@ -16940,10 +17008,11 @@ public void nodeListButtonLabels() throws Exception {
+ "mask-position-y[GSCE],mask-position[GSCE],mask-repeat[GSCE],mask-size[GSCE],mask-type[GSCE],"
+ "mask[GSCE],maskClip[GSCE],maskComposite[GSCE],maskImage[GSCE],maskMode[GSCE],maskOrigin[GSCE],"
+ "maskPosition[GSCE],maskPositionX[GSCE],maskPositionY[GSCE],maskRepeat[GSCE],maskSize[GSCE],"
- + "maskType[GSCE],max-block-size[GSCE],max-height[GSCE],max-inline-size[GSCE],max-width[GSCE],"
- + "maxBlockSize[GSCE],maxHeight[GSCE],maxInlineSize[GSCE],maxWidth[GSCE],min-block-size[GSCE],"
- + "min-height[GSCE],min-inline-size[GSCE],min-width[GSCE],minBlockSize[GSCE],minHeight[GSCE],"
- + "minInlineSize[GSCE],minWidth[GSCE],mix-blend-mode[GSCE],mixBlendMode[GSCE],MozAnimation[GSCE],"
+ + "maskType[GSCE],math-depth[GSCE],math-style[GSCE],mathDepth[GSCE],mathStyle[GSCE],"
+ + "max-block-size[GSCE],max-height[GSCE],max-inline-size[GSCE],max-width[GSCE],maxBlockSize[GSCE],"
+ + "maxHeight[GSCE],maxInlineSize[GSCE],maxWidth[GSCE],min-block-size[GSCE],min-height[GSCE],"
+ + "min-inline-size[GSCE],min-width[GSCE],minBlockSize[GSCE],minHeight[GSCE],minInlineSize[GSCE],"
+ + "minWidth[GSCE],mix-blend-mode[GSCE],mixBlendMode[GSCE],MozAnimation[GSCE],"
+ "MozAnimationDelay[GSCE],MozAnimationDirection[GSCE],MozAnimationDuration[GSCE],"
+ "MozAnimationFillMode[GSCE],MozAnimationIterationCount[GSCE],MozAnimationName[GSCE],"
+ "MozAnimationPlayState[GSCE],MozAnimationTimingFunction[GSCE],MozAppearance[GSCE],"
@@ -17083,11 +17152,11 @@ public void nodeListButtonLabels() throws Exception {
+ "-moz-box-direction[GSCE],-moz-box-flex[GSCE],-moz-box-ordinal-group[GSCE],-moz-box-orient[GSCE],"
+ "-moz-box-pack[GSCE],-moz-box-sizing[GSCE],-moz-float-edge[GSCE],-moz-font-feature-settings[GSCE],"
+ "-moz-font-language-override[GSCE],-moz-force-broken-image-icon[GSCE],-moz-hyphens[GSCE],"
- + "-moz-image-region[GSCE],-moz-margin-end[GSCE],-moz-margin-start[GSCE],-moz-orient[GSCE],"
- + "-moz-padding-end[GSCE],-moz-padding-start[GSCE],-moz-perspective-origin[GSCE],"
- + "-moz-perspective[GSCE],-moz-tab-size[GSCE],-moz-text-size-adjust[GSCE],"
- + "-moz-transform-origin[GSCE],-moz-transform-style[GSCE],-moz-transform[GSCE],"
- + "-moz-transition-delay[GSCE],-moz-transition-duration[GSCE],-moz-transition-property[GSCE],"
+ + "-moz-margin-end[GSCE],-moz-margin-start[GSCE],-moz-orient[GSCE],-moz-padding-end[GSCE],"
+ + "-moz-padding-start[GSCE],-moz-perspective-origin[GSCE],-moz-perspective[GSCE],"
+ + "-moz-tab-size[GSCE],-moz-text-size-adjust[GSCE],-moz-transform-origin[GSCE],"
+ + "-moz-transform-style[GSCE],-moz-transform[GSCE],-moz-transition-delay[GSCE],"
+ + "-moz-transition-duration[GSCE],-moz-transition-property[GSCE],"
+ "-moz-transition-timing-function[GSCE],-moz-transition[GSCE],-moz-user-focus[GSCE],"
+ "-moz-user-input[GSCE],-moz-user-modify[GSCE],-moz-user-select[GSCE],-moz-window-dragging[GSCE],"
+ "-webkit-align-content[GSCE],-webkit-align-items[GSCE],-webkit-align-self[GSCE],"
@@ -17101,42 +17170,45 @@ public void nodeListButtonLabels() throws Exception {
+ "-webkit-border-top-left-radius[GSCE],-webkit-border-top-right-radius[GSCE],"
+ "-webkit-box-align[GSCE],-webkit-box-direction[GSCE],-webkit-box-flex[GSCE],"
+ "-webkit-box-ordinal-group[GSCE],-webkit-box-orient[GSCE],-webkit-box-pack[GSCE],"
- + "-webkit-box-shadow[GSCE],-webkit-box-sizing[GSCE],-webkit-filter[GSCE],-webkit-flex-basis[GSCE],"
- + "-webkit-flex-direction[GSCE],-webkit-flex-flow[GSCE],-webkit-flex-grow[GSCE],"
- + "-webkit-flex-shrink[GSCE],-webkit-flex-wrap[GSCE],-webkit-flex[GSCE],"
+ + "-webkit-box-shadow[GSCE],-webkit-box-sizing[GSCE],-webkit-clip-path[GSCE],-webkit-filter[GSCE],"
+ + "-webkit-flex-basis[GSCE],-webkit-flex-direction[GSCE],-webkit-flex-flow[GSCE],"
+ + "-webkit-flex-grow[GSCE],-webkit-flex-shrink[GSCE],-webkit-flex-wrap[GSCE],-webkit-flex[GSCE],"
+ "-webkit-justify-content[GSCE],-webkit-line-clamp[GSCE],-webkit-mask-clip[GSCE],"
+ "-webkit-mask-composite[GSCE],-webkit-mask-image[GSCE],-webkit-mask-origin[GSCE],"
+ "-webkit-mask-position-x[GSCE],-webkit-mask-position-y[GSCE],-webkit-mask-position[GSCE],"
+ "-webkit-mask-repeat[GSCE],-webkit-mask-size[GSCE],-webkit-mask[GSCE],-webkit-order[GSCE],"
+ "-webkit-perspective-origin[GSCE],-webkit-perspective[GSCE],-webkit-text-fill-color[GSCE],"
- + "-webkit-text-size-adjust[GSCE],-webkit-text-stroke-color[GSCE],-webkit-text-stroke-width[GSCE],"
- + "-webkit-text-stroke[GSCE],-webkit-transform-origin[GSCE],-webkit-transform-style[GSCE],"
- + "-webkit-transform[GSCE],-webkit-transition-delay[GSCE],-webkit-transition-duration[GSCE],"
- + "-webkit-transition-property[GSCE],-webkit-transition-timing-function[GSCE],"
- + "-webkit-transition[GSCE],-webkit-user-select[GSCE],accent-color[GSCE],accentColor[GSCE],"
- + "align-content[GSCE],align-items[GSCE],align-self[GSCE],alignContent[GSCE],alignItems[GSCE],"
- + "alignSelf[GSCE],all[GSCE],animation-delay[GSCE],animation-direction[GSCE],"
- + "animation-duration[GSCE],animation-fill-mode[GSCE],animation-iteration-count[GSCE],"
- + "animation-name[GSCE],animation-play-state[GSCE],animation-timing-function[GSCE],animation[GSCE],"
- + "animationDelay[GSCE],animationDirection[GSCE],animationDuration[GSCE],animationFillMode[GSCE],"
- + "animationIterationCount[GSCE],animationName[GSCE],animationPlayState[GSCE],"
- + "animationTimingFunction[GSCE],appearance[GSCE],aspect-ratio[GSCE],aspectRatio[GSCE],"
- + "backface-visibility[GSCE],backfaceVisibility[GSCE],background-attachment[GSCE],"
- + "background-blend-mode[GSCE],background-clip[GSCE],background-color[GSCE],background-image[GSCE],"
- + "background-origin[GSCE],background-position-x[GSCE],background-position-y[GSCE],"
- + "background-position[GSCE],background-repeat[GSCE],background-size[GSCE],background[GSCE],"
- + "backgroundAttachment[GSCE],backgroundBlendMode[GSCE],backgroundClip[GSCE],backgroundColor[GSCE],"
- + "backgroundImage[GSCE],backgroundOrigin[GSCE],backgroundPosition[GSCE],backgroundPositionX[GSCE],"
- + "backgroundPositionY[GSCE],backgroundRepeat[GSCE],backgroundSize[GSCE],block-size[GSCE],"
- + "blockSize[GSCE],border-block-color[GSCE],border-block-end-color[GSCE],"
- + "border-block-end-style[GSCE],border-block-end-width[GSCE],border-block-end[GSCE],"
- + "border-block-start-color[GSCE],border-block-start-style[GSCE],border-block-start-width[GSCE],"
- + "border-block-start[GSCE],border-block-style[GSCE],border-block-width[GSCE],border-block[GSCE],"
- + "border-bottom-color[GSCE],border-bottom-left-radius[GSCE],border-bottom-right-radius[GSCE],"
- + "border-bottom-style[GSCE],border-bottom-width[GSCE],border-bottom[GSCE],border-collapse[GSCE],"
- + "border-color[GSCE],border-end-end-radius[GSCE],border-end-start-radius[GSCE],"
- + "border-image-outset[GSCE],border-image-repeat[GSCE],border-image-slice[GSCE],"
- + "border-image-source[GSCE],border-image-width[GSCE],border-image[GSCE],border-inline-color[GSCE],"
+ + "-webkit-text-security[GSCE],-webkit-text-size-adjust[GSCE],-webkit-text-stroke-color[GSCE],"
+ + "-webkit-text-stroke-width[GSCE],-webkit-text-stroke[GSCE],-webkit-transform-origin[GSCE],"
+ + "-webkit-transform-style[GSCE],-webkit-transform[GSCE],-webkit-transition-delay[GSCE],"
+ + "-webkit-transition-duration[GSCE],-webkit-transition-property[GSCE],"
+ + "-webkit-transition-timing-function[GSCE],-webkit-transition[GSCE],-webkit-user-select[GSCE],"
+ + "accent-color[GSCE],accentColor[GSCE],align-content[GSCE],align-items[GSCE],align-self[GSCE],"
+ + "alignContent[GSCE],alignItems[GSCE],alignSelf[GSCE],all[GSCE],animation-composition[GSCE],"
+ + "animation-delay[GSCE],animation-direction[GSCE],animation-duration[GSCE],"
+ + "animation-fill-mode[GSCE],animation-iteration-count[GSCE],animation-name[GSCE],"
+ + "animation-play-state[GSCE],animation-timing-function[GSCE],animation[GSCE],"
+ + "animationComposition[GSCE],animationDelay[GSCE],animationDirection[GSCE],animationDuration[GSCE],"
+ + "animationFillMode[GSCE],animationIterationCount[GSCE],animationName[GSCE],"
+ + "animationPlayState[GSCE],animationTimingFunction[GSCE],appearance[GSCE],aspect-ratio[GSCE],"
+ + "aspectRatio[GSCE],backdrop-filter[GSCE],backdropFilter[GSCE],backface-visibility[GSCE],"
+ + "backfaceVisibility[GSCE],background-attachment[GSCE],background-blend-mode[GSCE],"
+ + "background-clip[GSCE],background-color[GSCE],background-image[GSCE],background-origin[GSCE],"
+ + "background-position-x[GSCE],background-position-y[GSCE],background-position[GSCE],"
+ + "background-repeat[GSCE],background-size[GSCE],background[GSCE],backgroundAttachment[GSCE],"
+ + "backgroundBlendMode[GSCE],backgroundClip[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
+ + "backgroundOrigin[GSCE],backgroundPosition[GSCE],backgroundPositionX[GSCE],"
+ + "backgroundPositionY[GSCE],backgroundRepeat[GSCE],backgroundSize[GSCE],baseline-source[GSCE],"
+ + "baselineSource[GSCE],block-size[GSCE],blockSize[GSCE],border-block-color[GSCE],"
+ + "border-block-end-color[GSCE],border-block-end-style[GSCE],border-block-end-width[GSCE],"
+ + "border-block-end[GSCE],border-block-start-color[GSCE],border-block-start-style[GSCE],"
+ + "border-block-start-width[GSCE],border-block-start[GSCE],border-block-style[GSCE],"
+ + "border-block-width[GSCE],border-block[GSCE],border-bottom-color[GSCE],"
+ + "border-bottom-left-radius[GSCE],border-bottom-right-radius[GSCE],border-bottom-style[GSCE],"
+ + "border-bottom-width[GSCE],border-bottom[GSCE],border-collapse[GSCE],border-color[GSCE],"
+ + "border-end-end-radius[GSCE],border-end-start-radius[GSCE],border-image-outset[GSCE],"
+ + "border-image-repeat[GSCE],border-image-slice[GSCE],border-image-source[GSCE],"
+ + "border-image-width[GSCE],border-image[GSCE],border-inline-color[GSCE],"
+ "border-inline-end-color[GSCE],border-inline-end-style[GSCE],border-inline-end-width[GSCE],"
+ "border-inline-end[GSCE],border-inline-start-color[GSCE],border-inline-start-style[GSCE],"
+ "border-inline-start-width[GSCE],border-inline-start[GSCE],border-inline-style[GSCE],"
@@ -17173,30 +17245,38 @@ public void nodeListButtonLabels() throws Exception {
+ "column-rule-style[GSCE],column-rule-width[GSCE],column-rule[GSCE],column-span[GSCE],"
+ "column-width[GSCE],columnCount[GSCE],columnFill[GSCE],columnGap[GSCE],columnRule[GSCE],"
+ "columnRuleColor[GSCE],columnRuleStyle[GSCE],columnRuleWidth[GSCE],columns[GSCE],columnSpan[GSCE],"
- + "columnWidth[GSCE],constructor(),contain[GSCE],content[GSCE],counter-increment[GSCE],"
- + "counter-reset[GSCE],counter-set[GSCE],counterIncrement[GSCE],counterReset[GSCE],counterSet[GSCE],"
- + "cssFloat[GSCE],cursor[GSCE],cx[GSCE],cy[GSCE],d[GSCE],direction[GSCE],display[GSCE],"
- + "dominant-baseline[GSCE],dominantBaseline[GSCE],empty-cells[GSCE],emptyCells[GSCE],"
- + "fill-opacity[GSCE],fill-rule[GSCE],fill[GSCE],fillOpacity[GSCE],fillRule[GSCE],filter[GSCE],"
- + "flex-basis[GSCE],flex-direction[GSCE],flex-flow[GSCE],flex-grow[GSCE],flex-shrink[GSCE],"
- + "flex-wrap[GSCE],flex[GSCE],flexBasis[GSCE],flexDirection[GSCE],flexFlow[GSCE],flexGrow[GSCE],"
- + "flexShrink[GSCE],flexWrap[GSCE],float[GSCE],flood-color[GSCE],flood-opacity[GSCE],"
- + "floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],font-feature-settings[GSCE],"
- + "font-kerning[GSCE],font-language-override[GSCE],font-optical-sizing[GSCE],font-size-adjust[GSCE],"
- + "font-size[GSCE],font-stretch[GSCE],font-style[GSCE],font-synthesis[GSCE],"
- + "font-variant-alternates[GSCE],font-variant-caps[GSCE],font-variant-east-asian[GSCE],"
- + "font-variant-ligatures[GSCE],font-variant-numeric[GSCE],font-variant-position[GSCE],"
- + "font-variant[GSCE],font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
+ + "columnWidth[GSCE],constructor(),contain-intrinsic-block-size[GSCE],"
+ + "contain-intrinsic-height[GSCE],contain-intrinsic-inline-size[GSCE],contain-intrinsic-size[GSCE],"
+ + "contain-intrinsic-width[GSCE],contain[GSCE],container-name[GSCE],container-type[GSCE],"
+ + "container[GSCE],containerName[GSCE],containerType[GSCE],containIntrinsicBlockSize[GSCE],"
+ + "containIntrinsicHeight[GSCE],containIntrinsicInlineSize[GSCE],containIntrinsicSize[GSCE],"
+ + "containIntrinsicWidth[GSCE],content[GSCE],counter-increment[GSCE],counter-reset[GSCE],"
+ + "counter-set[GSCE],counterIncrement[GSCE],counterReset[GSCE],counterSet[GSCE],cssFloat[GSCE],"
+ + "cursor[GSCE],cx[GSCE],cy[GSCE],d[GSCE],direction[GSCE],display[GSCE],dominant-baseline[GSCE],"
+ + "dominantBaseline[GSCE],empty-cells[GSCE],emptyCells[GSCE],fill-opacity[GSCE],fill-rule[GSCE],"
+ + "fill[GSCE],fillOpacity[GSCE],fillRule[GSCE],filter[GSCE],flex-basis[GSCE],flex-direction[GSCE],"
+ + "flex-flow[GSCE],flex-grow[GSCE],flex-shrink[GSCE],flex-wrap[GSCE],flex[GSCE],flexBasis[GSCE],"
+ + "flexDirection[GSCE],flexFlow[GSCE],flexGrow[GSCE],flexShrink[GSCE],flexWrap[GSCE],float[GSCE],"
+ + "flood-color[GSCE],flood-opacity[GSCE],floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],"
+ + "font-feature-settings[GSCE],font-kerning[GSCE],font-language-override[GSCE],"
+ + "font-optical-sizing[GSCE],font-palette[GSCE],font-size-adjust[GSCE],font-size[GSCE],"
+ + "font-stretch[GSCE],font-style[GSCE],font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],"
+ + "font-synthesis-weight[GSCE],font-synthesis[GSCE],font-variant-alternates[GSCE],"
+ + "font-variant-caps[GSCE],font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],"
+ + "font-variant-numeric[GSCE],font-variant-position[GSCE],font-variant[GSCE],"
+ + "font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
+ "fontFeatureSettings[GSCE],fontKerning[GSCE],fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],"
- + "fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],fontSynthesis[GSCE],"
- + "fontVariant[GSCE],fontVariantAlternates[GSCE],fontVariantCaps[GSCE],fontVariantEastAsian[GSCE],"
- + "fontVariantLigatures[GSCE],fontVariantNumeric[GSCE],fontVariantPosition[GSCE],"
- + "fontVariationSettings[GSCE],fontWeight[GSCE],gap[GSCE],grid-area[GSCE],grid-auto-columns[GSCE],"
- + "grid-auto-flow[GSCE],grid-auto-rows[GSCE],grid-column-end[GSCE],grid-column-gap[GSCE],"
- + "grid-column-start[GSCE],grid-column[GSCE],grid-gap[GSCE],grid-row-end[GSCE],grid-row-gap[GSCE],"
- + "grid-row-start[GSCE],grid-row[GSCE],grid-template-areas[GSCE],grid-template-columns[GSCE],"
- + "grid-template-rows[GSCE],grid-template[GSCE],grid[GSCE],gridArea[GSCE],gridAutoColumns[GSCE],"
- + "gridAutoFlow[GSCE],gridAutoRows[GSCE],gridColumn[GSCE],gridColumnEnd[GSCE],gridColumnGap[GSCE],"
+ + "fontPalette[GSCE],fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],"
+ + "fontSynthesis[GSCE],fontSynthesisSmallCaps[GSCE],fontSynthesisStyle[GSCE],"
+ + "fontSynthesisWeight[GSCE],fontVariant[GSCE],fontVariantAlternates[GSCE],fontVariantCaps[GSCE],"
+ + "fontVariantEastAsian[GSCE],fontVariantLigatures[GSCE],fontVariantNumeric[GSCE],"
+ + "fontVariantPosition[GSCE],fontVariationSettings[GSCE],fontWeight[GSCE],forced-color-adjust[GSCE],"
+ + "forcedColorAdjust[GSCE],gap[GSCE],grid-area[GSCE],grid-auto-columns[GSCE],grid-auto-flow[GSCE],"
+ + "grid-auto-rows[GSCE],grid-column-end[GSCE],grid-column-gap[GSCE],grid-column-start[GSCE],"
+ + "grid-column[GSCE],grid-gap[GSCE],grid-row-end[GSCE],grid-row-gap[GSCE],grid-row-start[GSCE],"
+ + "grid-row[GSCE],grid-template-areas[GSCE],grid-template-columns[GSCE],grid-template-rows[GSCE],"
+ + "grid-template[GSCE],grid[GSCE],gridArea[GSCE],gridAutoColumns[GSCE],gridAutoFlow[GSCE],"
+ + "gridAutoRows[GSCE],gridColumn[GSCE],gridColumnEnd[GSCE],gridColumnGap[GSCE],"
+ "gridColumnStart[GSCE],gridGap[GSCE],gridRow[GSCE],gridRowEnd[GSCE],gridRowGap[GSCE],"
+ "gridRowStart[GSCE],gridTemplate[GSCE],gridTemplateAreas[GSCE],gridTemplateColumns[GSCE],"
+ "gridTemplateRows[GSCE],height[GSCE],hyphenate-character[GSCE],hyphenateCharacter[GSCE],"
@@ -17233,14 +17313,14 @@ public void nodeListButtonLabels() throws Exception {
+ "MozBorderStartStyle[GSCE],MozBorderStartWidth[GSCE],MozBoxAlign[GSCE],MozBoxDirection[GSCE],"
+ "MozBoxFlex[GSCE],MozBoxOrdinalGroup[GSCE],MozBoxOrient[GSCE],MozBoxPack[GSCE],MozBoxSizing[GSCE],"
+ "MozFloatEdge[GSCE],MozFontFeatureSettings[GSCE],MozFontLanguageOverride[GSCE],"
- + "MozForceBrokenImageIcon[GSCE],MozHyphens[GSCE],MozImageRegion[GSCE],MozMarginEnd[GSCE],"
- + "MozMarginStart[GSCE],MozOrient[GSCE],MozPaddingEnd[GSCE],MozPaddingStart[GSCE],"
- + "MozPerspective[GSCE],MozPerspectiveOrigin[GSCE],MozTabSize[GSCE],MozTextSizeAdjust[GSCE],"
- + "MozTransform[GSCE],MozTransformOrigin[GSCE],MozTransformStyle[GSCE],MozTransition[GSCE],"
- + "MozTransitionDelay[GSCE],MozTransitionDuration[GSCE],MozTransitionProperty[GSCE],"
- + "MozTransitionTimingFunction[GSCE],MozUserFocus[GSCE],MozUserInput[GSCE],MozUserModify[GSCE],"
- + "MozUserSelect[GSCE],MozWindowDragging[GSCE],object-fit[GSCE],object-position[GSCE],"
- + "objectFit[GSCE],objectPosition[GSCE],offset-anchor[GSCE],offset-distance[GSCE],offset-path[GSCE],"
+ + "MozForceBrokenImageIcon[GSCE],MozHyphens[GSCE],MozMarginEnd[GSCE],MozMarginStart[GSCE],"
+ + "MozOrient[GSCE],MozPaddingEnd[GSCE],MozPaddingStart[GSCE],MozPerspective[GSCE],"
+ + "MozPerspectiveOrigin[GSCE],MozTabSize[GSCE],MozTextSizeAdjust[GSCE],MozTransform[GSCE],"
+ + "MozTransformOrigin[GSCE],MozTransformStyle[GSCE],MozTransition[GSCE],MozTransitionDelay[GSCE],"
+ + "MozTransitionDuration[GSCE],MozTransitionProperty[GSCE],MozTransitionTimingFunction[GSCE],"
+ + "MozUserFocus[GSCE],MozUserInput[GSCE],MozUserModify[GSCE],MozUserSelect[GSCE],"
+ + "MozWindowDragging[GSCE],object-fit[GSCE],object-position[GSCE],objectFit[GSCE],"
+ + "objectPosition[GSCE],offset-anchor[GSCE],offset-distance[GSCE],offset-path[GSCE],"
+ "offset-rotate[GSCE],offset[GSCE],offsetAnchor[GSCE],offsetDistance[GSCE],offsetPath[GSCE],"
+ "offsetRotate[GSCE],opacity[GSCE],order[GSCE],outline-color[GSCE],outline-offset[GSCE],"
+ "outline-style[GSCE],outline-width[GSCE],outline[GSCE],outlineColor[GSCE],outlineOffset[GSCE],"
@@ -17257,7 +17337,7 @@ public void nodeListButtonLabels() throws Exception {
+ "paddingBlockEnd[GSCE],paddingBlockStart[GSCE],paddingBottom[GSCE],paddingInline[GSCE],"
+ "paddingInlineEnd[GSCE],paddingInlineStart[GSCE],paddingLeft[GSCE],paddingRight[GSCE],"
+ "paddingTop[GSCE],page-break-after[GSCE],page-break-before[GSCE],page-break-inside[GSCE],"
- + "pageBreakAfter[GSCE],pageBreakBefore[GSCE],pageBreakInside[GSCE],paint-order[GSCE],"
+ + "page[GSCE],pageBreakAfter[GSCE],pageBreakBefore[GSCE],pageBreakInside[GSCE],paint-order[GSCE],"
+ "paintOrder[GSCE],perspective-origin[GSCE],perspective[GSCE],perspectiveOrigin[GSCE],"
+ "place-content[GSCE],place-items[GSCE],place-self[GSCE],placeContent[GSCE],placeItems[GSCE],"
+ "placeSelf[GSCE],pointer-events[GSCE],pointerEvents[GSCE],position[GSCE],print-color-adjust[GSCE],"
@@ -17270,37 +17350,37 @@ public void nodeListButtonLabels() throws Exception {
+ "scroll-padding-block-end[GSCE],scroll-padding-block-start[GSCE],scroll-padding-block[GSCE],"
+ "scroll-padding-bottom[GSCE],scroll-padding-inline-end[GSCE],scroll-padding-inline-start[GSCE],"
+ "scroll-padding-inline[GSCE],scroll-padding-left[GSCE],scroll-padding-right[GSCE],"
- + "scroll-padding-top[GSCE],scroll-padding[GSCE],scroll-snap-align[GSCE],scroll-snap-type[GSCE],"
- + "scrollbar-color[GSCE],scrollbar-gutter[GSCE],scrollbar-width[GSCE],scrollbarColor[GSCE],"
- + "scrollbarGutter[GSCE],scrollbarWidth[GSCE],scrollBehavior[GSCE],scrollMargin[GSCE],"
- + "scrollMarginBlock[GSCE],scrollMarginBlockEnd[GSCE],scrollMarginBlockStart[GSCE],"
- + "scrollMarginBottom[GSCE],scrollMarginInline[GSCE],scrollMarginInlineEnd[GSCE],"
- + "scrollMarginInlineStart[GSCE],scrollMarginLeft[GSCE],scrollMarginRight[GSCE],"
- + "scrollMarginTop[GSCE],scrollPadding[GSCE],scrollPaddingBlock[GSCE],scrollPaddingBlockEnd[GSCE],"
- + "scrollPaddingBlockStart[GSCE],scrollPaddingBottom[GSCE],scrollPaddingInline[GSCE],"
- + "scrollPaddingInlineEnd[GSCE],scrollPaddingInlineStart[GSCE],scrollPaddingLeft[GSCE],"
- + "scrollPaddingRight[GSCE],scrollPaddingTop[GSCE],scrollSnapAlign[GSCE],scrollSnapType[GSCE],"
- + "shape-image-threshold[GSCE],shape-margin[GSCE],shape-outside[GSCE],shape-rendering[GSCE],"
- + "shapeImageThreshold[GSCE],shapeMargin[GSCE],shapeOutside[GSCE],shapeRendering[GSCE],"
- + "stop-color[GSCE],stop-opacity[GSCE],stopColor[GSCE],stopOpacity[GSCE],stroke-dasharray[GSCE],"
- + "stroke-dashoffset[GSCE],stroke-linecap[GSCE],stroke-linejoin[GSCE],stroke-miterlimit[GSCE],"
- + "stroke-opacity[GSCE],stroke-width[GSCE],stroke[GSCE],strokeDasharray[GSCE],"
- + "strokeDashoffset[GSCE],strokeLinecap[GSCE],strokeLinejoin[GSCE],strokeMiterlimit[GSCE],"
- + "strokeOpacity[GSCE],strokeWidth[GSCE],tab-size[GSCE],table-layout[GSCE],tableLayout[GSCE],"
- + "tabSize[GSCE],text-align-last[GSCE],text-align[GSCE],text-anchor[GSCE],"
- + "text-combine-upright[GSCE],text-decoration-color[GSCE],text-decoration-line[GSCE],"
- + "text-decoration-skip-ink[GSCE],text-decoration-style[GSCE],text-decoration-thickness[GSCE],"
- + "text-decoration[GSCE],text-emphasis-color[GSCE],text-emphasis-position[GSCE],"
- + "text-emphasis-style[GSCE],text-emphasis[GSCE],text-indent[GSCE],text-justify[GSCE],"
- + "text-orientation[GSCE],text-overflow[GSCE],text-rendering[GSCE],text-shadow[GSCE],"
- + "text-transform[GSCE],text-underline-offset[GSCE],text-underline-position[GSCE],textAlign[GSCE],"
- + "textAlignLast[GSCE],textAnchor[GSCE],textCombineUpright[GSCE],textDecoration[GSCE],"
- + "textDecorationColor[GSCE],textDecorationLine[GSCE],textDecorationSkipInk[GSCE],"
- + "textDecorationStyle[GSCE],textDecorationThickness[GSCE],textEmphasis[GSCE],"
- + "textEmphasisColor[GSCE],textEmphasisPosition[GSCE],textEmphasisStyle[GSCE],textIndent[GSCE],"
- + "textJustify[GSCE],textOrientation[GSCE],textOverflow[GSCE],textRendering[GSCE],textShadow[GSCE],"
- + "textTransform[GSCE],textUnderlineOffset[GSCE],textUnderlinePosition[GSCE],top[GSCE],"
- + "touch-action[GSCE],touchAction[GSCE],transform-box[GSCE],transform-origin[GSCE],"
+ + "scroll-padding-top[GSCE],scroll-padding[GSCE],scroll-snap-align[GSCE],scroll-snap-stop[GSCE],"
+ + "scroll-snap-type[GSCE],scrollbar-color[GSCE],scrollbar-gutter[GSCE],scrollbar-width[GSCE],"
+ + "scrollbarColor[GSCE],scrollbarGutter[GSCE],scrollbarWidth[GSCE],scrollBehavior[GSCE],"
+ + "scrollMargin[GSCE],scrollMarginBlock[GSCE],scrollMarginBlockEnd[GSCE],"
+ + "scrollMarginBlockStart[GSCE],scrollMarginBottom[GSCE],scrollMarginInline[GSCE],"
+ + "scrollMarginInlineEnd[GSCE],scrollMarginInlineStart[GSCE],scrollMarginLeft[GSCE],"
+ + "scrollMarginRight[GSCE],scrollMarginTop[GSCE],scrollPadding[GSCE],scrollPaddingBlock[GSCE],"
+ + "scrollPaddingBlockEnd[GSCE],scrollPaddingBlockStart[GSCE],scrollPaddingBottom[GSCE],"
+ + "scrollPaddingInline[GSCE],scrollPaddingInlineEnd[GSCE],scrollPaddingInlineStart[GSCE],"
+ + "scrollPaddingLeft[GSCE],scrollPaddingRight[GSCE],scrollPaddingTop[GSCE],scrollSnapAlign[GSCE],"
+ + "scrollSnapStop[GSCE],scrollSnapType[GSCE],shape-image-threshold[GSCE],shape-margin[GSCE],"
+ + "shape-outside[GSCE],shape-rendering[GSCE],shapeImageThreshold[GSCE],shapeMargin[GSCE],"
+ + "shapeOutside[GSCE],shapeRendering[GSCE],stop-color[GSCE],stop-opacity[GSCE],stopColor[GSCE],"
+ + "stopOpacity[GSCE],stroke-dasharray[GSCE],stroke-dashoffset[GSCE],stroke-linecap[GSCE],"
+ + "stroke-linejoin[GSCE],stroke-miterlimit[GSCE],stroke-opacity[GSCE],stroke-width[GSCE],"
+ + "stroke[GSCE],strokeDasharray[GSCE],strokeDashoffset[GSCE],strokeLinecap[GSCE],"
+ + "strokeLinejoin[GSCE],strokeMiterlimit[GSCE],strokeOpacity[GSCE],strokeWidth[GSCE],tab-size[GSCE],"
+ + "table-layout[GSCE],tableLayout[GSCE],tabSize[GSCE],text-align-last[GSCE],text-align[GSCE],"
+ + "text-anchor[GSCE],text-combine-upright[GSCE],text-decoration-color[GSCE],"
+ + "text-decoration-line[GSCE],text-decoration-skip-ink[GSCE],text-decoration-style[GSCE],"
+ + "text-decoration-thickness[GSCE],text-decoration[GSCE],text-emphasis-color[GSCE],"
+ + "text-emphasis-position[GSCE],text-emphasis-style[GSCE],text-emphasis[GSCE],text-indent[GSCE],"
+ + "text-justify[GSCE],text-orientation[GSCE],text-overflow[GSCE],text-rendering[GSCE],"
+ + "text-shadow[GSCE],text-transform[GSCE],text-underline-offset[GSCE],text-underline-position[GSCE],"
+ + "textAlign[GSCE],textAlignLast[GSCE],textAnchor[GSCE],textCombineUpright[GSCE],"
+ + "textDecoration[GSCE],textDecorationColor[GSCE],textDecorationLine[GSCE],"
+ + "textDecorationSkipInk[GSCE],textDecorationStyle[GSCE],textDecorationThickness[GSCE],"
+ + "textEmphasis[GSCE],textEmphasisColor[GSCE],textEmphasisPosition[GSCE],textEmphasisStyle[GSCE],"
+ + "textIndent[GSCE],textJustify[GSCE],textOrientation[GSCE],textOverflow[GSCE],textRendering[GSCE],"
+ + "textShadow[GSCE],textTransform[GSCE],textUnderlineOffset[GSCE],textUnderlinePosition[GSCE],"
+ + "top[GSCE],touch-action[GSCE],touchAction[GSCE],transform-box[GSCE],transform-origin[GSCE],"
+ "transform-style[GSCE],transform[GSCE],transformBox[GSCE],transformOrigin[GSCE],"
+ "transformStyle[GSCE],transition-delay[GSCE],transition-duration[GSCE],transition-property[GSCE],"
+ "transition-timing-function[GSCE],transition[GSCE],transitionDelay[GSCE],transitionDuration[GSCE],"
@@ -17326,27 +17406,28 @@ public void nodeListButtonLabels() throws Exception {
+ "WebkitBoxDirection[GSCE],webkitBoxDirection[GSCE],WebkitBoxFlex[GSCE],webkitBoxFlex[GSCE],"
+ "WebkitBoxOrdinalGroup[GSCE],webkitBoxOrdinalGroup[GSCE],WebkitBoxOrient[GSCE],"
+ "webkitBoxOrient[GSCE],WebkitBoxPack[GSCE],webkitBoxPack[GSCE],WebkitBoxShadow[GSCE],"
- + "webkitBoxShadow[GSCE],WebkitBoxSizing[GSCE],webkitBoxSizing[GSCE],WebkitFilter[GSCE],"
- + "webkitFilter[GSCE],WebkitFlex[GSCE],webkitFlex[GSCE],WebkitFlexBasis[GSCE],webkitFlexBasis[GSCE],"
- + "WebkitFlexDirection[GSCE],webkitFlexDirection[GSCE],WebkitFlexFlow[GSCE],webkitFlexFlow[GSCE],"
- + "WebkitFlexGrow[GSCE],webkitFlexGrow[GSCE],WebkitFlexShrink[GSCE],webkitFlexShrink[GSCE],"
- + "WebkitFlexWrap[GSCE],webkitFlexWrap[GSCE],WebkitJustifyContent[GSCE],webkitJustifyContent[GSCE],"
- + "WebkitLineClamp[GSCE],webkitLineClamp[GSCE],WebkitMask[GSCE],webkitMask[GSCE],"
- + "WebkitMaskClip[GSCE],webkitMaskClip[GSCE],WebkitMaskComposite[GSCE],webkitMaskComposite[GSCE],"
- + "WebkitMaskImage[GSCE],webkitMaskImage[GSCE],WebkitMaskOrigin[GSCE],webkitMaskOrigin[GSCE],"
- + "WebkitMaskPosition[GSCE],webkitMaskPosition[GSCE],WebkitMaskPositionX[GSCE],"
- + "webkitMaskPositionX[GSCE],WebkitMaskPositionY[GSCE],webkitMaskPositionY[GSCE],"
- + "WebkitMaskRepeat[GSCE],webkitMaskRepeat[GSCE],WebkitMaskSize[GSCE],webkitMaskSize[GSCE],"
- + "WebkitOrder[GSCE],webkitOrder[GSCE],WebkitPerspective[GSCE],webkitPerspective[GSCE],"
- + "WebkitPerspectiveOrigin[GSCE],webkitPerspectiveOrigin[GSCE],WebkitTextFillColor[GSCE],"
- + "webkitTextFillColor[GSCE],WebkitTextSizeAdjust[GSCE],webkitTextSizeAdjust[GSCE],"
- + "WebkitTextStroke[GSCE],webkitTextStroke[GSCE],WebkitTextStrokeColor[GSCE],"
- + "webkitTextStrokeColor[GSCE],WebkitTextStrokeWidth[GSCE],webkitTextStrokeWidth[GSCE],"
- + "WebkitTransform[GSCE],webkitTransform[GSCE],WebkitTransformOrigin[GSCE],"
- + "webkitTransformOrigin[GSCE],WebkitTransformStyle[GSCE],webkitTransformStyle[GSCE],"
- + "WebkitTransition[GSCE],webkitTransition[GSCE],WebkitTransitionDelay[GSCE],"
- + "webkitTransitionDelay[GSCE],WebkitTransitionDuration[GSCE],webkitTransitionDuration[GSCE],"
- + "WebkitTransitionProperty[GSCE],webkitTransitionProperty[GSCE],"
+ + "webkitBoxShadow[GSCE],WebkitBoxSizing[GSCE],webkitBoxSizing[GSCE],WebkitClipPath[GSCE],"
+ + "webkitClipPath[GSCE],WebkitFilter[GSCE],webkitFilter[GSCE],WebkitFlex[GSCE],webkitFlex[GSCE],"
+ + "WebkitFlexBasis[GSCE],webkitFlexBasis[GSCE],WebkitFlexDirection[GSCE],webkitFlexDirection[GSCE],"
+ + "WebkitFlexFlow[GSCE],webkitFlexFlow[GSCE],WebkitFlexGrow[GSCE],webkitFlexGrow[GSCE],"
+ + "WebkitFlexShrink[GSCE],webkitFlexShrink[GSCE],WebkitFlexWrap[GSCE],webkitFlexWrap[GSCE],"
+ + "WebkitJustifyContent[GSCE],webkitJustifyContent[GSCE],WebkitLineClamp[GSCE],"
+ + "webkitLineClamp[GSCE],WebkitMask[GSCE],webkitMask[GSCE],WebkitMaskClip[GSCE],"
+ + "webkitMaskClip[GSCE],WebkitMaskComposite[GSCE],webkitMaskComposite[GSCE],WebkitMaskImage[GSCE],"
+ + "webkitMaskImage[GSCE],WebkitMaskOrigin[GSCE],webkitMaskOrigin[GSCE],WebkitMaskPosition[GSCE],"
+ + "webkitMaskPosition[GSCE],WebkitMaskPositionX[GSCE],webkitMaskPositionX[GSCE],"
+ + "WebkitMaskPositionY[GSCE],webkitMaskPositionY[GSCE],WebkitMaskRepeat[GSCE],"
+ + "webkitMaskRepeat[GSCE],WebkitMaskSize[GSCE],webkitMaskSize[GSCE],WebkitOrder[GSCE],"
+ + "webkitOrder[GSCE],WebkitPerspective[GSCE],webkitPerspective[GSCE],WebkitPerspectiveOrigin[GSCE],"
+ + "webkitPerspectiveOrigin[GSCE],WebkitTextFillColor[GSCE],webkitTextFillColor[GSCE],"
+ + "WebkitTextSecurity[GSCE],webkitTextSecurity[GSCE],WebkitTextSizeAdjust[GSCE],"
+ + "webkitTextSizeAdjust[GSCE],WebkitTextStroke[GSCE],webkitTextStroke[GSCE],"
+ + "WebkitTextStrokeColor[GSCE],webkitTextStrokeColor[GSCE],WebkitTextStrokeWidth[GSCE],"
+ + "webkitTextStrokeWidth[GSCE],WebkitTransform[GSCE],webkitTransform[GSCE],"
+ + "WebkitTransformOrigin[GSCE],webkitTransformOrigin[GSCE],WebkitTransformStyle[GSCE],"
+ + "webkitTransformStyle[GSCE],WebkitTransition[GSCE],webkitTransition[GSCE],"
+ + "WebkitTransitionDelay[GSCE],webkitTransitionDelay[GSCE],WebkitTransitionDuration[GSCE],"
+ + "webkitTransitionDuration[GSCE],WebkitTransitionProperty[GSCE],webkitTransitionProperty[GSCE],"
+ "WebkitTransitionTimingFunction[GSCE],webkitTransitionTimingFunction[GSCE],WebkitUserSelect[GSCE],"
+ "webkitUserSelect[GSCE],white-space[GSCE],whiteSpace[GSCE],width[GSCE],will-change[GSCE],"
+ "willChange[GSCE],word-break[GSCE],word-spacing[GSCE],word-wrap[GSCE],wordBreak[GSCE],"
@@ -17582,14 +17663,15 @@ public void computedStyle() throws Exception {
+ "flood-color[GSCE],flood-opacity[GSCE],floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],"
+ "font-feature-settings[GSCE],font-kerning[GSCE],font-language-override[GSCE],"
+ "font-optical-sizing[GSCE],font-palette[GSCE],font-size-adjust[GSCE],font-size[GSCE],"
- + "font-stretch[GSCE],font-style[GSCE],font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],"
- + "font-synthesis-weight[GSCE],font-synthesis[GSCE],font-variant-alternates[GSCE],"
- + "font-variant-caps[GSCE],font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],"
- + "font-variant-numeric[GSCE],font-variant-position[GSCE],font-variant[GSCE],"
- + "font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
- + "fontFeatureSettings[GSCE],fontKerning[GSCE],fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],"
- + "fontPalette[GSCE],fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],"
- + "fontSynthesis[GSCE],fontSynthesisSmallCaps[GSCE],fontSynthesisStyle[GSCE],"
+ + "font-stretch[GSCE],font-style[GSCE],font-synthesis-position[GSCE],"
+ + "font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],font-synthesis-weight[GSCE],"
+ + "font-synthesis[GSCE],font-variant-alternates[GSCE],font-variant-caps[GSCE],"
+ + "font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],font-variant-numeric[GSCE],"
+ + "font-variant-position[GSCE],font-variant[GSCE],font-variation-settings[GSCE],font-weight[GSCE],"
+ + "font[GSCE],fontFamily[GSCE],fontFeatureSettings[GSCE],fontKerning[GSCE],"
+ + "fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],fontPalette[GSCE],fontSize[GSCE],"
+ + "fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],fontSynthesis[GSCE],"
+ + "fontSynthesisPosition[GSCE],fontSynthesisSmallCaps[GSCE],fontSynthesisStyle[GSCE],"
+ "fontSynthesisWeight[GSCE],fontVariant[GSCE],fontVariantAlternates[GSCE],fontVariantCaps[GSCE],"
+ "fontVariantEastAsian[GSCE],fontVariantLigatures[GSCE],fontVariantNumeric[GSCE],"
+ "fontVariantPosition[GSCE],fontVariationSettings[GSCE],fontWeight[GSCE],forced-color-adjust[GSCE],"
@@ -17623,10 +17705,11 @@ public void computedStyle() throws Exception {
+ "mask-position-y[GSCE],mask-position[GSCE],mask-repeat[GSCE],mask-size[GSCE],mask-type[GSCE],"
+ "mask[GSCE],maskClip[GSCE],maskComposite[GSCE],maskImage[GSCE],maskMode[GSCE],maskOrigin[GSCE],"
+ "maskPosition[GSCE],maskPositionX[GSCE],maskPositionY[GSCE],maskRepeat[GSCE],maskSize[GSCE],"
- + "maskType[GSCE],max-block-size[GSCE],max-height[GSCE],max-inline-size[GSCE],max-width[GSCE],"
- + "maxBlockSize[GSCE],maxHeight[GSCE],maxInlineSize[GSCE],maxWidth[GSCE],min-block-size[GSCE],"
- + "min-height[GSCE],min-inline-size[GSCE],min-width[GSCE],minBlockSize[GSCE],minHeight[GSCE],"
- + "minInlineSize[GSCE],minWidth[GSCE],mix-blend-mode[GSCE],mixBlendMode[GSCE],MozAnimation[GSCE],"
+ + "maskType[GSCE],math-depth[GSCE],math-style[GSCE],mathDepth[GSCE],mathStyle[GSCE],"
+ + "max-block-size[GSCE],max-height[GSCE],max-inline-size[GSCE],max-width[GSCE],maxBlockSize[GSCE],"
+ + "maxHeight[GSCE],maxInlineSize[GSCE],maxWidth[GSCE],min-block-size[GSCE],min-height[GSCE],"
+ + "min-inline-size[GSCE],min-width[GSCE],minBlockSize[GSCE],minHeight[GSCE],minInlineSize[GSCE],"
+ + "minWidth[GSCE],mix-blend-mode[GSCE],mixBlendMode[GSCE],MozAnimation[GSCE],"
+ "MozAnimationDelay[GSCE],MozAnimationDirection[GSCE],MozAnimationDuration[GSCE],"
+ "MozAnimationFillMode[GSCE],MozAnimationIterationCount[GSCE],MozAnimationName[GSCE],"
+ "MozAnimationPlayState[GSCE],MozAnimationTimingFunction[GSCE],MozAppearance[GSCE],"
@@ -17766,11 +17849,11 @@ public void computedStyle() throws Exception {
+ "-moz-box-direction[GSCE],-moz-box-flex[GSCE],-moz-box-ordinal-group[GSCE],-moz-box-orient[GSCE],"
+ "-moz-box-pack[GSCE],-moz-box-sizing[GSCE],-moz-float-edge[GSCE],-moz-font-feature-settings[GSCE],"
+ "-moz-font-language-override[GSCE],-moz-force-broken-image-icon[GSCE],-moz-hyphens[GSCE],"
- + "-moz-image-region[GSCE],-moz-margin-end[GSCE],-moz-margin-start[GSCE],-moz-orient[GSCE],"
- + "-moz-padding-end[GSCE],-moz-padding-start[GSCE],-moz-perspective-origin[GSCE],"
- + "-moz-perspective[GSCE],-moz-tab-size[GSCE],-moz-text-size-adjust[GSCE],"
- + "-moz-transform-origin[GSCE],-moz-transform-style[GSCE],-moz-transform[GSCE],"
- + "-moz-transition-delay[GSCE],-moz-transition-duration[GSCE],-moz-transition-property[GSCE],"
+ + "-moz-margin-end[GSCE],-moz-margin-start[GSCE],-moz-orient[GSCE],-moz-padding-end[GSCE],"
+ + "-moz-padding-start[GSCE],-moz-perspective-origin[GSCE],-moz-perspective[GSCE],"
+ + "-moz-tab-size[GSCE],-moz-text-size-adjust[GSCE],-moz-transform-origin[GSCE],"
+ + "-moz-transform-style[GSCE],-moz-transform[GSCE],-moz-transition-delay[GSCE],"
+ + "-moz-transition-duration[GSCE],-moz-transition-property[GSCE],"
+ "-moz-transition-timing-function[GSCE],-moz-transition[GSCE],-moz-user-focus[GSCE],"
+ "-moz-user-input[GSCE],-moz-user-modify[GSCE],-moz-user-select[GSCE],-moz-window-dragging[GSCE],"
+ "-webkit-align-content[GSCE],-webkit-align-items[GSCE],-webkit-align-self[GSCE],"
@@ -17784,42 +17867,45 @@ public void computedStyle() throws Exception {
+ "-webkit-border-top-left-radius[GSCE],-webkit-border-top-right-radius[GSCE],"
+ "-webkit-box-align[GSCE],-webkit-box-direction[GSCE],-webkit-box-flex[GSCE],"
+ "-webkit-box-ordinal-group[GSCE],-webkit-box-orient[GSCE],-webkit-box-pack[GSCE],"
- + "-webkit-box-shadow[GSCE],-webkit-box-sizing[GSCE],-webkit-filter[GSCE],-webkit-flex-basis[GSCE],"
- + "-webkit-flex-direction[GSCE],-webkit-flex-flow[GSCE],-webkit-flex-grow[GSCE],"
- + "-webkit-flex-shrink[GSCE],-webkit-flex-wrap[GSCE],-webkit-flex[GSCE],"
+ + "-webkit-box-shadow[GSCE],-webkit-box-sizing[GSCE],-webkit-clip-path[GSCE],-webkit-filter[GSCE],"
+ + "-webkit-flex-basis[GSCE],-webkit-flex-direction[GSCE],-webkit-flex-flow[GSCE],"
+ + "-webkit-flex-grow[GSCE],-webkit-flex-shrink[GSCE],-webkit-flex-wrap[GSCE],-webkit-flex[GSCE],"
+ "-webkit-justify-content[GSCE],-webkit-line-clamp[GSCE],-webkit-mask-clip[GSCE],"
+ "-webkit-mask-composite[GSCE],-webkit-mask-image[GSCE],-webkit-mask-origin[GSCE],"
+ "-webkit-mask-position-x[GSCE],-webkit-mask-position-y[GSCE],-webkit-mask-position[GSCE],"
+ "-webkit-mask-repeat[GSCE],-webkit-mask-size[GSCE],-webkit-mask[GSCE],-webkit-order[GSCE],"
+ "-webkit-perspective-origin[GSCE],-webkit-perspective[GSCE],-webkit-text-fill-color[GSCE],"
- + "-webkit-text-size-adjust[GSCE],-webkit-text-stroke-color[GSCE],-webkit-text-stroke-width[GSCE],"
- + "-webkit-text-stroke[GSCE],-webkit-transform-origin[GSCE],-webkit-transform-style[GSCE],"
- + "-webkit-transform[GSCE],-webkit-transition-delay[GSCE],-webkit-transition-duration[GSCE],"
- + "-webkit-transition-property[GSCE],-webkit-transition-timing-function[GSCE],"
- + "-webkit-transition[GSCE],-webkit-user-select[GSCE],accent-color[GSCE],accentColor[GSCE],"
- + "align-content[GSCE],align-items[GSCE],align-self[GSCE],alignContent[GSCE],alignItems[GSCE],"
- + "alignSelf[GSCE],all[GSCE],animation-delay[GSCE],animation-direction[GSCE],"
- + "animation-duration[GSCE],animation-fill-mode[GSCE],animation-iteration-count[GSCE],"
- + "animation-name[GSCE],animation-play-state[GSCE],animation-timing-function[GSCE],animation[GSCE],"
- + "animationDelay[GSCE],animationDirection[GSCE],animationDuration[GSCE],animationFillMode[GSCE],"
- + "animationIterationCount[GSCE],animationName[GSCE],animationPlayState[GSCE],"
- + "animationTimingFunction[GSCE],appearance[GSCE],aspect-ratio[GSCE],aspectRatio[GSCE],"
- + "backface-visibility[GSCE],backfaceVisibility[GSCE],background-attachment[GSCE],"
- + "background-blend-mode[GSCE],background-clip[GSCE],background-color[GSCE],background-image[GSCE],"
- + "background-origin[GSCE],background-position-x[GSCE],background-position-y[GSCE],"
- + "background-position[GSCE],background-repeat[GSCE],background-size[GSCE],background[GSCE],"
- + "backgroundAttachment[GSCE],backgroundBlendMode[GSCE],backgroundClip[GSCE],backgroundColor[GSCE],"
- + "backgroundImage[GSCE],backgroundOrigin[GSCE],backgroundPosition[GSCE],backgroundPositionX[GSCE],"
- + "backgroundPositionY[GSCE],backgroundRepeat[GSCE],backgroundSize[GSCE],block-size[GSCE],"
- + "blockSize[GSCE],border-block-color[GSCE],border-block-end-color[GSCE],"
- + "border-block-end-style[GSCE],border-block-end-width[GSCE],border-block-end[GSCE],"
- + "border-block-start-color[GSCE],border-block-start-style[GSCE],border-block-start-width[GSCE],"
- + "border-block-start[GSCE],border-block-style[GSCE],border-block-width[GSCE],border-block[GSCE],"
- + "border-bottom-color[GSCE],border-bottom-left-radius[GSCE],border-bottom-right-radius[GSCE],"
- + "border-bottom-style[GSCE],border-bottom-width[GSCE],border-bottom[GSCE],border-collapse[GSCE],"
- + "border-color[GSCE],border-end-end-radius[GSCE],border-end-start-radius[GSCE],"
- + "border-image-outset[GSCE],border-image-repeat[GSCE],border-image-slice[GSCE],"
- + "border-image-source[GSCE],border-image-width[GSCE],border-image[GSCE],border-inline-color[GSCE],"
+ + "-webkit-text-security[GSCE],-webkit-text-size-adjust[GSCE],-webkit-text-stroke-color[GSCE],"
+ + "-webkit-text-stroke-width[GSCE],-webkit-text-stroke[GSCE],-webkit-transform-origin[GSCE],"
+ + "-webkit-transform-style[GSCE],-webkit-transform[GSCE],-webkit-transition-delay[GSCE],"
+ + "-webkit-transition-duration[GSCE],-webkit-transition-property[GSCE],"
+ + "-webkit-transition-timing-function[GSCE],-webkit-transition[GSCE],-webkit-user-select[GSCE],"
+ + "accent-color[GSCE],accentColor[GSCE],align-content[GSCE],align-items[GSCE],align-self[GSCE],"
+ + "alignContent[GSCE],alignItems[GSCE],alignSelf[GSCE],all[GSCE],animation-composition[GSCE],"
+ + "animation-delay[GSCE],animation-direction[GSCE],animation-duration[GSCE],"
+ + "animation-fill-mode[GSCE],animation-iteration-count[GSCE],animation-name[GSCE],"
+ + "animation-play-state[GSCE],animation-timing-function[GSCE],animation[GSCE],"
+ + "animationComposition[GSCE],animationDelay[GSCE],animationDirection[GSCE],animationDuration[GSCE],"
+ + "animationFillMode[GSCE],animationIterationCount[GSCE],animationName[GSCE],"
+ + "animationPlayState[GSCE],animationTimingFunction[GSCE],appearance[GSCE],aspect-ratio[GSCE],"
+ + "aspectRatio[GSCE],backdrop-filter[GSCE],backdropFilter[GSCE],backface-visibility[GSCE],"
+ + "backfaceVisibility[GSCE],background-attachment[GSCE],background-blend-mode[GSCE],"
+ + "background-clip[GSCE],background-color[GSCE],background-image[GSCE],background-origin[GSCE],"
+ + "background-position-x[GSCE],background-position-y[GSCE],background-position[GSCE],"
+ + "background-repeat[GSCE],background-size[GSCE],background[GSCE],backgroundAttachment[GSCE],"
+ + "backgroundBlendMode[GSCE],backgroundClip[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
+ + "backgroundOrigin[GSCE],backgroundPosition[GSCE],backgroundPositionX[GSCE],"
+ + "backgroundPositionY[GSCE],backgroundRepeat[GSCE],backgroundSize[GSCE],baseline-source[GSCE],"
+ + "baselineSource[GSCE],block-size[GSCE],blockSize[GSCE],border-block-color[GSCE],"
+ + "border-block-end-color[GSCE],border-block-end-style[GSCE],border-block-end-width[GSCE],"
+ + "border-block-end[GSCE],border-block-start-color[GSCE],border-block-start-style[GSCE],"
+ + "border-block-start-width[GSCE],border-block-start[GSCE],border-block-style[GSCE],"
+ + "border-block-width[GSCE],border-block[GSCE],border-bottom-color[GSCE],"
+ + "border-bottom-left-radius[GSCE],border-bottom-right-radius[GSCE],border-bottom-style[GSCE],"
+ + "border-bottom-width[GSCE],border-bottom[GSCE],border-collapse[GSCE],border-color[GSCE],"
+ + "border-end-end-radius[GSCE],border-end-start-radius[GSCE],border-image-outset[GSCE],"
+ + "border-image-repeat[GSCE],border-image-slice[GSCE],border-image-source[GSCE],"
+ + "border-image-width[GSCE],border-image[GSCE],border-inline-color[GSCE],"
+ "border-inline-end-color[GSCE],border-inline-end-style[GSCE],border-inline-end-width[GSCE],"
+ "border-inline-end[GSCE],border-inline-start-color[GSCE],border-inline-start-style[GSCE],"
+ "border-inline-start-width[GSCE],border-inline-start[GSCE],border-inline-style[GSCE],"
@@ -17856,30 +17942,38 @@ public void computedStyle() throws Exception {
+ "column-rule-style[GSCE],column-rule-width[GSCE],column-rule[GSCE],column-span[GSCE],"
+ "column-width[GSCE],columnCount[GSCE],columnFill[GSCE],columnGap[GSCE],columnRule[GSCE],"
+ "columnRuleColor[GSCE],columnRuleStyle[GSCE],columnRuleWidth[GSCE],columns[GSCE],columnSpan[GSCE],"
- + "columnWidth[GSCE],constructor(),contain[GSCE],content[GSCE],counter-increment[GSCE],"
- + "counter-reset[GSCE],counter-set[GSCE],counterIncrement[GSCE],counterReset[GSCE],counterSet[GSCE],"
- + "cssFloat[GSCE],cursor[GSCE],cx[GSCE],cy[GSCE],d[GSCE],direction[GSCE],display[GSCE],"
- + "dominant-baseline[GSCE],dominantBaseline[GSCE],empty-cells[GSCE],emptyCells[GSCE],"
- + "fill-opacity[GSCE],fill-rule[GSCE],fill[GSCE],fillOpacity[GSCE],fillRule[GSCE],filter[GSCE],"
- + "flex-basis[GSCE],flex-direction[GSCE],flex-flow[GSCE],flex-grow[GSCE],flex-shrink[GSCE],"
- + "flex-wrap[GSCE],flex[GSCE],flexBasis[GSCE],flexDirection[GSCE],flexFlow[GSCE],flexGrow[GSCE],"
- + "flexShrink[GSCE],flexWrap[GSCE],float[GSCE],flood-color[GSCE],flood-opacity[GSCE],"
- + "floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],font-feature-settings[GSCE],"
- + "font-kerning[GSCE],font-language-override[GSCE],font-optical-sizing[GSCE],font-size-adjust[GSCE],"
- + "font-size[GSCE],font-stretch[GSCE],font-style[GSCE],font-synthesis[GSCE],"
- + "font-variant-alternates[GSCE],font-variant-caps[GSCE],font-variant-east-asian[GSCE],"
- + "font-variant-ligatures[GSCE],font-variant-numeric[GSCE],font-variant-position[GSCE],"
- + "font-variant[GSCE],font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
+ + "columnWidth[GSCE],constructor(),contain-intrinsic-block-size[GSCE],"
+ + "contain-intrinsic-height[GSCE],contain-intrinsic-inline-size[GSCE],contain-intrinsic-size[GSCE],"
+ + "contain-intrinsic-width[GSCE],contain[GSCE],container-name[GSCE],container-type[GSCE],"
+ + "container[GSCE],containerName[GSCE],containerType[GSCE],containIntrinsicBlockSize[GSCE],"
+ + "containIntrinsicHeight[GSCE],containIntrinsicInlineSize[GSCE],containIntrinsicSize[GSCE],"
+ + "containIntrinsicWidth[GSCE],content[GSCE],counter-increment[GSCE],counter-reset[GSCE],"
+ + "counter-set[GSCE],counterIncrement[GSCE],counterReset[GSCE],counterSet[GSCE],cssFloat[GSCE],"
+ + "cursor[GSCE],cx[GSCE],cy[GSCE],d[GSCE],direction[GSCE],display[GSCE],dominant-baseline[GSCE],"
+ + "dominantBaseline[GSCE],empty-cells[GSCE],emptyCells[GSCE],fill-opacity[GSCE],fill-rule[GSCE],"
+ + "fill[GSCE],fillOpacity[GSCE],fillRule[GSCE],filter[GSCE],flex-basis[GSCE],flex-direction[GSCE],"
+ + "flex-flow[GSCE],flex-grow[GSCE],flex-shrink[GSCE],flex-wrap[GSCE],flex[GSCE],flexBasis[GSCE],"
+ + "flexDirection[GSCE],flexFlow[GSCE],flexGrow[GSCE],flexShrink[GSCE],flexWrap[GSCE],float[GSCE],"
+ + "flood-color[GSCE],flood-opacity[GSCE],floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],"
+ + "font-feature-settings[GSCE],font-kerning[GSCE],font-language-override[GSCE],"
+ + "font-optical-sizing[GSCE],font-palette[GSCE],font-size-adjust[GSCE],font-size[GSCE],"
+ + "font-stretch[GSCE],font-style[GSCE],font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],"
+ + "font-synthesis-weight[GSCE],font-synthesis[GSCE],font-variant-alternates[GSCE],"
+ + "font-variant-caps[GSCE],font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],"
+ + "font-variant-numeric[GSCE],font-variant-position[GSCE],font-variant[GSCE],"
+ + "font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
+ "fontFeatureSettings[GSCE],fontKerning[GSCE],fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],"
- + "fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],fontSynthesis[GSCE],"
- + "fontVariant[GSCE],fontVariantAlternates[GSCE],fontVariantCaps[GSCE],fontVariantEastAsian[GSCE],"
- + "fontVariantLigatures[GSCE],fontVariantNumeric[GSCE],fontVariantPosition[GSCE],"
- + "fontVariationSettings[GSCE],fontWeight[GSCE],gap[GSCE],grid-area[GSCE],grid-auto-columns[GSCE],"
- + "grid-auto-flow[GSCE],grid-auto-rows[GSCE],grid-column-end[GSCE],grid-column-gap[GSCE],"
- + "grid-column-start[GSCE],grid-column[GSCE],grid-gap[GSCE],grid-row-end[GSCE],grid-row-gap[GSCE],"
- + "grid-row-start[GSCE],grid-row[GSCE],grid-template-areas[GSCE],grid-template-columns[GSCE],"
- + "grid-template-rows[GSCE],grid-template[GSCE],grid[GSCE],gridArea[GSCE],gridAutoColumns[GSCE],"
- + "gridAutoFlow[GSCE],gridAutoRows[GSCE],gridColumn[GSCE],gridColumnEnd[GSCE],gridColumnGap[GSCE],"
+ + "fontPalette[GSCE],fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],"
+ + "fontSynthesis[GSCE],fontSynthesisSmallCaps[GSCE],fontSynthesisStyle[GSCE],"
+ + "fontSynthesisWeight[GSCE],fontVariant[GSCE],fontVariantAlternates[GSCE],fontVariantCaps[GSCE],"
+ + "fontVariantEastAsian[GSCE],fontVariantLigatures[GSCE],fontVariantNumeric[GSCE],"
+ + "fontVariantPosition[GSCE],fontVariationSettings[GSCE],fontWeight[GSCE],forced-color-adjust[GSCE],"
+ + "forcedColorAdjust[GSCE],gap[GSCE],grid-area[GSCE],grid-auto-columns[GSCE],grid-auto-flow[GSCE],"
+ + "grid-auto-rows[GSCE],grid-column-end[GSCE],grid-column-gap[GSCE],grid-column-start[GSCE],"
+ + "grid-column[GSCE],grid-gap[GSCE],grid-row-end[GSCE],grid-row-gap[GSCE],grid-row-start[GSCE],"
+ + "grid-row[GSCE],grid-template-areas[GSCE],grid-template-columns[GSCE],grid-template-rows[GSCE],"
+ + "grid-template[GSCE],grid[GSCE],gridArea[GSCE],gridAutoColumns[GSCE],gridAutoFlow[GSCE],"
+ + "gridAutoRows[GSCE],gridColumn[GSCE],gridColumnEnd[GSCE],gridColumnGap[GSCE],"
+ "gridColumnStart[GSCE],gridGap[GSCE],gridRow[GSCE],gridRowEnd[GSCE],gridRowGap[GSCE],"
+ "gridRowStart[GSCE],gridTemplate[GSCE],gridTemplateAreas[GSCE],gridTemplateColumns[GSCE],"
+ "gridTemplateRows[GSCE],height[GSCE],hyphenate-character[GSCE],hyphenateCharacter[GSCE],"
@@ -17916,14 +18010,14 @@ public void computedStyle() throws Exception {
+ "MozBorderStartStyle[GSCE],MozBorderStartWidth[GSCE],MozBoxAlign[GSCE],MozBoxDirection[GSCE],"
+ "MozBoxFlex[GSCE],MozBoxOrdinalGroup[GSCE],MozBoxOrient[GSCE],MozBoxPack[GSCE],MozBoxSizing[GSCE],"
+ "MozFloatEdge[GSCE],MozFontFeatureSettings[GSCE],MozFontLanguageOverride[GSCE],"
- + "MozForceBrokenImageIcon[GSCE],MozHyphens[GSCE],MozImageRegion[GSCE],MozMarginEnd[GSCE],"
- + "MozMarginStart[GSCE],MozOrient[GSCE],MozPaddingEnd[GSCE],MozPaddingStart[GSCE],"
- + "MozPerspective[GSCE],MozPerspectiveOrigin[GSCE],MozTabSize[GSCE],MozTextSizeAdjust[GSCE],"
- + "MozTransform[GSCE],MozTransformOrigin[GSCE],MozTransformStyle[GSCE],MozTransition[GSCE],"
- + "MozTransitionDelay[GSCE],MozTransitionDuration[GSCE],MozTransitionProperty[GSCE],"
- + "MozTransitionTimingFunction[GSCE],MozUserFocus[GSCE],MozUserInput[GSCE],MozUserModify[GSCE],"
- + "MozUserSelect[GSCE],MozWindowDragging[GSCE],object-fit[GSCE],object-position[GSCE],"
- + "objectFit[GSCE],objectPosition[GSCE],offset-anchor[GSCE],offset-distance[GSCE],offset-path[GSCE],"
+ + "MozForceBrokenImageIcon[GSCE],MozHyphens[GSCE],MozMarginEnd[GSCE],MozMarginStart[GSCE],"
+ + "MozOrient[GSCE],MozPaddingEnd[GSCE],MozPaddingStart[GSCE],MozPerspective[GSCE],"
+ + "MozPerspectiveOrigin[GSCE],MozTabSize[GSCE],MozTextSizeAdjust[GSCE],MozTransform[GSCE],"
+ + "MozTransformOrigin[GSCE],MozTransformStyle[GSCE],MozTransition[GSCE],MozTransitionDelay[GSCE],"
+ + "MozTransitionDuration[GSCE],MozTransitionProperty[GSCE],MozTransitionTimingFunction[GSCE],"
+ + "MozUserFocus[GSCE],MozUserInput[GSCE],MozUserModify[GSCE],MozUserSelect[GSCE],"
+ + "MozWindowDragging[GSCE],object-fit[GSCE],object-position[GSCE],objectFit[GSCE],"
+ + "objectPosition[GSCE],offset-anchor[GSCE],offset-distance[GSCE],offset-path[GSCE],"
+ "offset-rotate[GSCE],offset[GSCE],offsetAnchor[GSCE],offsetDistance[GSCE],offsetPath[GSCE],"
+ "offsetRotate[GSCE],opacity[GSCE],order[GSCE],outline-color[GSCE],outline-offset[GSCE],"
+ "outline-style[GSCE],outline-width[GSCE],outline[GSCE],outlineColor[GSCE],outlineOffset[GSCE],"
@@ -17940,7 +18034,7 @@ public void computedStyle() throws Exception {
+ "paddingBlockEnd[GSCE],paddingBlockStart[GSCE],paddingBottom[GSCE],paddingInline[GSCE],"
+ "paddingInlineEnd[GSCE],paddingInlineStart[GSCE],paddingLeft[GSCE],paddingRight[GSCE],"
+ "paddingTop[GSCE],page-break-after[GSCE],page-break-before[GSCE],page-break-inside[GSCE],"
- + "pageBreakAfter[GSCE],pageBreakBefore[GSCE],pageBreakInside[GSCE],paint-order[GSCE],"
+ + "page[GSCE],pageBreakAfter[GSCE],pageBreakBefore[GSCE],pageBreakInside[GSCE],paint-order[GSCE],"
+ "paintOrder[GSCE],perspective-origin[GSCE],perspective[GSCE],perspectiveOrigin[GSCE],"
+ "place-content[GSCE],place-items[GSCE],place-self[GSCE],placeContent[GSCE],placeItems[GSCE],"
+ "placeSelf[GSCE],pointer-events[GSCE],pointerEvents[GSCE],position[GSCE],print-color-adjust[GSCE],"
@@ -17953,37 +18047,37 @@ public void computedStyle() throws Exception {
+ "scroll-padding-block-end[GSCE],scroll-padding-block-start[GSCE],scroll-padding-block[GSCE],"
+ "scroll-padding-bottom[GSCE],scroll-padding-inline-end[GSCE],scroll-padding-inline-start[GSCE],"
+ "scroll-padding-inline[GSCE],scroll-padding-left[GSCE],scroll-padding-right[GSCE],"
- + "scroll-padding-top[GSCE],scroll-padding[GSCE],scroll-snap-align[GSCE],scroll-snap-type[GSCE],"
- + "scrollbar-color[GSCE],scrollbar-gutter[GSCE],scrollbar-width[GSCE],scrollbarColor[GSCE],"
- + "scrollbarGutter[GSCE],scrollbarWidth[GSCE],scrollBehavior[GSCE],scrollMargin[GSCE],"
- + "scrollMarginBlock[GSCE],scrollMarginBlockEnd[GSCE],scrollMarginBlockStart[GSCE],"
- + "scrollMarginBottom[GSCE],scrollMarginInline[GSCE],scrollMarginInlineEnd[GSCE],"
- + "scrollMarginInlineStart[GSCE],scrollMarginLeft[GSCE],scrollMarginRight[GSCE],"
- + "scrollMarginTop[GSCE],scrollPadding[GSCE],scrollPaddingBlock[GSCE],scrollPaddingBlockEnd[GSCE],"
- + "scrollPaddingBlockStart[GSCE],scrollPaddingBottom[GSCE],scrollPaddingInline[GSCE],"
- + "scrollPaddingInlineEnd[GSCE],scrollPaddingInlineStart[GSCE],scrollPaddingLeft[GSCE],"
- + "scrollPaddingRight[GSCE],scrollPaddingTop[GSCE],scrollSnapAlign[GSCE],scrollSnapType[GSCE],"
- + "shape-image-threshold[GSCE],shape-margin[GSCE],shape-outside[GSCE],shape-rendering[GSCE],"
- + "shapeImageThreshold[GSCE],shapeMargin[GSCE],shapeOutside[GSCE],shapeRendering[GSCE],"
- + "stop-color[GSCE],stop-opacity[GSCE],stopColor[GSCE],stopOpacity[GSCE],stroke-dasharray[GSCE],"
- + "stroke-dashoffset[GSCE],stroke-linecap[GSCE],stroke-linejoin[GSCE],stroke-miterlimit[GSCE],"
- + "stroke-opacity[GSCE],stroke-width[GSCE],stroke[GSCE],strokeDasharray[GSCE],"
- + "strokeDashoffset[GSCE],strokeLinecap[GSCE],strokeLinejoin[GSCE],strokeMiterlimit[GSCE],"
- + "strokeOpacity[GSCE],strokeWidth[GSCE],tab-size[GSCE],table-layout[GSCE],tableLayout[GSCE],"
- + "tabSize[GSCE],text-align-last[GSCE],text-align[GSCE],text-anchor[GSCE],"
- + "text-combine-upright[GSCE],text-decoration-color[GSCE],text-decoration-line[GSCE],"
- + "text-decoration-skip-ink[GSCE],text-decoration-style[GSCE],text-decoration-thickness[GSCE],"
- + "text-decoration[GSCE],text-emphasis-color[GSCE],text-emphasis-position[GSCE],"
- + "text-emphasis-style[GSCE],text-emphasis[GSCE],text-indent[GSCE],text-justify[GSCE],"
- + "text-orientation[GSCE],text-overflow[GSCE],text-rendering[GSCE],text-shadow[GSCE],"
- + "text-transform[GSCE],text-underline-offset[GSCE],text-underline-position[GSCE],textAlign[GSCE],"
- + "textAlignLast[GSCE],textAnchor[GSCE],textCombineUpright[GSCE],textDecoration[GSCE],"
- + "textDecorationColor[GSCE],textDecorationLine[GSCE],textDecorationSkipInk[GSCE],"
- + "textDecorationStyle[GSCE],textDecorationThickness[GSCE],textEmphasis[GSCE],"
- + "textEmphasisColor[GSCE],textEmphasisPosition[GSCE],textEmphasisStyle[GSCE],textIndent[GSCE],"
- + "textJustify[GSCE],textOrientation[GSCE],textOverflow[GSCE],textRendering[GSCE],textShadow[GSCE],"
- + "textTransform[GSCE],textUnderlineOffset[GSCE],textUnderlinePosition[GSCE],top[GSCE],"
- + "touch-action[GSCE],touchAction[GSCE],transform-box[GSCE],transform-origin[GSCE],"
+ + "scroll-padding-top[GSCE],scroll-padding[GSCE],scroll-snap-align[GSCE],scroll-snap-stop[GSCE],"
+ + "scroll-snap-type[GSCE],scrollbar-color[GSCE],scrollbar-gutter[GSCE],scrollbar-width[GSCE],"
+ + "scrollbarColor[GSCE],scrollbarGutter[GSCE],scrollbarWidth[GSCE],scrollBehavior[GSCE],"
+ + "scrollMargin[GSCE],scrollMarginBlock[GSCE],scrollMarginBlockEnd[GSCE],"
+ + "scrollMarginBlockStart[GSCE],scrollMarginBottom[GSCE],scrollMarginInline[GSCE],"
+ + "scrollMarginInlineEnd[GSCE],scrollMarginInlineStart[GSCE],scrollMarginLeft[GSCE],"
+ + "scrollMarginRight[GSCE],scrollMarginTop[GSCE],scrollPadding[GSCE],scrollPaddingBlock[GSCE],"
+ + "scrollPaddingBlockEnd[GSCE],scrollPaddingBlockStart[GSCE],scrollPaddingBottom[GSCE],"
+ + "scrollPaddingInline[GSCE],scrollPaddingInlineEnd[GSCE],scrollPaddingInlineStart[GSCE],"
+ + "scrollPaddingLeft[GSCE],scrollPaddingRight[GSCE],scrollPaddingTop[GSCE],scrollSnapAlign[GSCE],"
+ + "scrollSnapStop[GSCE],scrollSnapType[GSCE],shape-image-threshold[GSCE],shape-margin[GSCE],"
+ + "shape-outside[GSCE],shape-rendering[GSCE],shapeImageThreshold[GSCE],shapeMargin[GSCE],"
+ + "shapeOutside[GSCE],shapeRendering[GSCE],stop-color[GSCE],stop-opacity[GSCE],stopColor[GSCE],"
+ + "stopOpacity[GSCE],stroke-dasharray[GSCE],stroke-dashoffset[GSCE],stroke-linecap[GSCE],"
+ + "stroke-linejoin[GSCE],stroke-miterlimit[GSCE],stroke-opacity[GSCE],stroke-width[GSCE],"
+ + "stroke[GSCE],strokeDasharray[GSCE],strokeDashoffset[GSCE],strokeLinecap[GSCE],"
+ + "strokeLinejoin[GSCE],strokeMiterlimit[GSCE],strokeOpacity[GSCE],strokeWidth[GSCE],tab-size[GSCE],"
+ + "table-layout[GSCE],tableLayout[GSCE],tabSize[GSCE],text-align-last[GSCE],text-align[GSCE],"
+ + "text-anchor[GSCE],text-combine-upright[GSCE],text-decoration-color[GSCE],"
+ + "text-decoration-line[GSCE],text-decoration-skip-ink[GSCE],text-decoration-style[GSCE],"
+ + "text-decoration-thickness[GSCE],text-decoration[GSCE],text-emphasis-color[GSCE],"
+ + "text-emphasis-position[GSCE],text-emphasis-style[GSCE],text-emphasis[GSCE],text-indent[GSCE],"
+ + "text-justify[GSCE],text-orientation[GSCE],text-overflow[GSCE],text-rendering[GSCE],"
+ + "text-shadow[GSCE],text-transform[GSCE],text-underline-offset[GSCE],text-underline-position[GSCE],"
+ + "textAlign[GSCE],textAlignLast[GSCE],textAnchor[GSCE],textCombineUpright[GSCE],"
+ + "textDecoration[GSCE],textDecorationColor[GSCE],textDecorationLine[GSCE],"
+ + "textDecorationSkipInk[GSCE],textDecorationStyle[GSCE],textDecorationThickness[GSCE],"
+ + "textEmphasis[GSCE],textEmphasisColor[GSCE],textEmphasisPosition[GSCE],textEmphasisStyle[GSCE],"
+ + "textIndent[GSCE],textJustify[GSCE],textOrientation[GSCE],textOverflow[GSCE],textRendering[GSCE],"
+ + "textShadow[GSCE],textTransform[GSCE],textUnderlineOffset[GSCE],textUnderlinePosition[GSCE],"
+ + "top[GSCE],touch-action[GSCE],touchAction[GSCE],transform-box[GSCE],transform-origin[GSCE],"
+ "transform-style[GSCE],transform[GSCE],transformBox[GSCE],transformOrigin[GSCE],"
+ "transformStyle[GSCE],transition-delay[GSCE],transition-duration[GSCE],transition-property[GSCE],"
+ "transition-timing-function[GSCE],transition[GSCE],transitionDelay[GSCE],transitionDuration[GSCE],"
@@ -18009,27 +18103,28 @@ public void computedStyle() throws Exception {
+ "WebkitBoxDirection[GSCE],webkitBoxDirection[GSCE],WebkitBoxFlex[GSCE],webkitBoxFlex[GSCE],"
+ "WebkitBoxOrdinalGroup[GSCE],webkitBoxOrdinalGroup[GSCE],WebkitBoxOrient[GSCE],"
+ "webkitBoxOrient[GSCE],WebkitBoxPack[GSCE],webkitBoxPack[GSCE],WebkitBoxShadow[GSCE],"
- + "webkitBoxShadow[GSCE],WebkitBoxSizing[GSCE],webkitBoxSizing[GSCE],WebkitFilter[GSCE],"
- + "webkitFilter[GSCE],WebkitFlex[GSCE],webkitFlex[GSCE],WebkitFlexBasis[GSCE],webkitFlexBasis[GSCE],"
- + "WebkitFlexDirection[GSCE],webkitFlexDirection[GSCE],WebkitFlexFlow[GSCE],webkitFlexFlow[GSCE],"
- + "WebkitFlexGrow[GSCE],webkitFlexGrow[GSCE],WebkitFlexShrink[GSCE],webkitFlexShrink[GSCE],"
- + "WebkitFlexWrap[GSCE],webkitFlexWrap[GSCE],WebkitJustifyContent[GSCE],webkitJustifyContent[GSCE],"
- + "WebkitLineClamp[GSCE],webkitLineClamp[GSCE],WebkitMask[GSCE],webkitMask[GSCE],"
- + "WebkitMaskClip[GSCE],webkitMaskClip[GSCE],WebkitMaskComposite[GSCE],webkitMaskComposite[GSCE],"
- + "WebkitMaskImage[GSCE],webkitMaskImage[GSCE],WebkitMaskOrigin[GSCE],webkitMaskOrigin[GSCE],"
- + "WebkitMaskPosition[GSCE],webkitMaskPosition[GSCE],WebkitMaskPositionX[GSCE],"
- + "webkitMaskPositionX[GSCE],WebkitMaskPositionY[GSCE],webkitMaskPositionY[GSCE],"
- + "WebkitMaskRepeat[GSCE],webkitMaskRepeat[GSCE],WebkitMaskSize[GSCE],webkitMaskSize[GSCE],"
- + "WebkitOrder[GSCE],webkitOrder[GSCE],WebkitPerspective[GSCE],webkitPerspective[GSCE],"
- + "WebkitPerspectiveOrigin[GSCE],webkitPerspectiveOrigin[GSCE],WebkitTextFillColor[GSCE],"
- + "webkitTextFillColor[GSCE],WebkitTextSizeAdjust[GSCE],webkitTextSizeAdjust[GSCE],"
- + "WebkitTextStroke[GSCE],webkitTextStroke[GSCE],WebkitTextStrokeColor[GSCE],"
- + "webkitTextStrokeColor[GSCE],WebkitTextStrokeWidth[GSCE],webkitTextStrokeWidth[GSCE],"
- + "WebkitTransform[GSCE],webkitTransform[GSCE],WebkitTransformOrigin[GSCE],"
- + "webkitTransformOrigin[GSCE],WebkitTransformStyle[GSCE],webkitTransformStyle[GSCE],"
- + "WebkitTransition[GSCE],webkitTransition[GSCE],WebkitTransitionDelay[GSCE],"
- + "webkitTransitionDelay[GSCE],WebkitTransitionDuration[GSCE],webkitTransitionDuration[GSCE],"
- + "WebkitTransitionProperty[GSCE],webkitTransitionProperty[GSCE],"
+ + "webkitBoxShadow[GSCE],WebkitBoxSizing[GSCE],webkitBoxSizing[GSCE],WebkitClipPath[GSCE],"
+ + "webkitClipPath[GSCE],WebkitFilter[GSCE],webkitFilter[GSCE],WebkitFlex[GSCE],webkitFlex[GSCE],"
+ + "WebkitFlexBasis[GSCE],webkitFlexBasis[GSCE],WebkitFlexDirection[GSCE],webkitFlexDirection[GSCE],"
+ + "WebkitFlexFlow[GSCE],webkitFlexFlow[GSCE],WebkitFlexGrow[GSCE],webkitFlexGrow[GSCE],"
+ + "WebkitFlexShrink[GSCE],webkitFlexShrink[GSCE],WebkitFlexWrap[GSCE],webkitFlexWrap[GSCE],"
+ + "WebkitJustifyContent[GSCE],webkitJustifyContent[GSCE],WebkitLineClamp[GSCE],"
+ + "webkitLineClamp[GSCE],WebkitMask[GSCE],webkitMask[GSCE],WebkitMaskClip[GSCE],"
+ + "webkitMaskClip[GSCE],WebkitMaskComposite[GSCE],webkitMaskComposite[GSCE],WebkitMaskImage[GSCE],"
+ + "webkitMaskImage[GSCE],WebkitMaskOrigin[GSCE],webkitMaskOrigin[GSCE],WebkitMaskPosition[GSCE],"
+ + "webkitMaskPosition[GSCE],WebkitMaskPositionX[GSCE],webkitMaskPositionX[GSCE],"
+ + "WebkitMaskPositionY[GSCE],webkitMaskPositionY[GSCE],WebkitMaskRepeat[GSCE],"
+ + "webkitMaskRepeat[GSCE],WebkitMaskSize[GSCE],webkitMaskSize[GSCE],WebkitOrder[GSCE],"
+ + "webkitOrder[GSCE],WebkitPerspective[GSCE],webkitPerspective[GSCE],WebkitPerspectiveOrigin[GSCE],"
+ + "webkitPerspectiveOrigin[GSCE],WebkitTextFillColor[GSCE],webkitTextFillColor[GSCE],"
+ + "WebkitTextSecurity[GSCE],webkitTextSecurity[GSCE],WebkitTextSizeAdjust[GSCE],"
+ + "webkitTextSizeAdjust[GSCE],WebkitTextStroke[GSCE],webkitTextStroke[GSCE],"
+ + "WebkitTextStrokeColor[GSCE],webkitTextStrokeColor[GSCE],WebkitTextStrokeWidth[GSCE],"
+ + "webkitTextStrokeWidth[GSCE],WebkitTransform[GSCE],webkitTransform[GSCE],"
+ + "WebkitTransformOrigin[GSCE],webkitTransformOrigin[GSCE],WebkitTransformStyle[GSCE],"
+ + "webkitTransformStyle[GSCE],WebkitTransition[GSCE],webkitTransition[GSCE],"
+ + "WebkitTransitionDelay[GSCE],webkitTransitionDelay[GSCE],WebkitTransitionDuration[GSCE],"
+ + "webkitTransitionDuration[GSCE],WebkitTransitionProperty[GSCE],webkitTransitionProperty[GSCE],"
+ "WebkitTransitionTimingFunction[GSCE],webkitTransitionTimingFunction[GSCE],WebkitUserSelect[GSCE],"
+ "webkitUserSelect[GSCE],white-space[GSCE],whiteSpace[GSCE],width[GSCE],will-change[GSCE],"
+ "willChange[GSCE],word-break[GSCE],word-spacing[GSCE],word-wrap[GSCE],wordBreak[GSCE],"
@@ -18306,8 +18401,8 @@ public void blob() throws Exception {
FF = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),size[GCE],"
+ "sort(),toString(),"
+ "values()",
- FF_ESR = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),sort(),"
- + "toString(),"
+ FF_ESR = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),size[GCE],"
+ + "sort(),toString(),"
+ "values()",
IE = "exception")
@HtmlUnitNYI(CHROME = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),"
diff --git a/src/test/java/org/htmlunit/general/ElementPropertiesTest.java b/src/test/java/org/htmlunit/general/ElementPropertiesTest.java
index b301d1bd135..7156649a424 100644
--- a/src/test/java/org/htmlunit/general/ElementPropertiesTest.java
+++ b/src/test/java/org/htmlunit/general/ElementPropertiesTest.java
@@ -503,6 +503,24 @@ public void unknown() throws Exception {
+ "popover,showPopover(),spellcheck,style,tabIndex,textprediction,title,togglePopover(),translate,"
+ "virtualKeyboardPolicy",
FF = "accessKey,accessKeyLabel,attachInternals(),autocapitalize,autofocus,blur(),click(),"
+ + "contentEditable,dataset,dir,draggable,enterKeyHint,focus(),hidden,inert,innerText,inputMode,"
+ + "isContentEditable,lang,nonce,offsetHeight,offsetLeft,offsetParent,offsetTop,offsetWidth,onabort,"
+ + "onanimationcancel,onanimationend,onanimationiteration,onanimationstart,onauxclick,onbeforeinput,"
+ + "onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncopy,"
+ + "oncuechange,oncut,ondblclick,ondrag,ondragend,ondragenter,ondragexit,ondragleave,ondragover,"
+ + "ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,"
+ + "ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata,"
+ + "onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter,onmouseleave,"
+ + "onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange,onmozfullscreenerror,onpaste,"
+ + "onpause,onplay,onplaying,onpointercancel,onpointerdown,onpointerenter,onpointerleave,"
+ + "onpointermove,onpointerout,onpointerover,onpointerup,onprogress,onratechange,onreset,onresize,"
+ + "onscroll,onscrollend,onsecuritypolicyviolation,onseeked,onseeking,onselect,onselectionchange,"
+ + "onselectstart,onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,"
+ + "ontransitionend,ontransitionrun,ontransitionstart,onvolumechange,onwaiting,onwebkitanimationend,"
+ + "onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,outerText,"
+ + "spellcheck,style,tabIndex,title,"
+ + "translate",
+ FF_ESR = "accessKey,accessKeyLabel,attachInternals(),autocapitalize,autofocus,blur(),click(),"
+ "contentEditable,dataset,dir,draggable,enterKeyHint,focus(),hidden,inert,innerText,inputMode,"
+ "isContentEditable,lang,nonce,offsetHeight,offsetLeft,offsetParent,offsetTop,offsetWidth,onabort,"
+ "onanimationcancel,onanimationend,onanimationiteration,onanimationstart,onauxclick,onbeforeinput,"
@@ -520,23 +538,6 @@ public void unknown() throws Exception {
+ "onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,outerText,"
+ "spellcheck,style,tabIndex,title,"
+ "translate",
- FF_ESR = "accessKey,accessKeyLabel,attachInternals(),blur(),click(),contentEditable,dataset,dir,draggable,"
- + "enterKeyHint,focus(),hidden,innerText,inputMode,isContentEditable,lang,nonce,offsetHeight,"
- + "offsetLeft,offsetParent,offsetTop,offsetWidth,onabort,onanimationcancel,onanimationend,"
- + "onanimationiteration,onanimationstart,onauxclick,onbeforeinput,onblur,oncanplay,oncanplaythrough,"
- + "onchange,onclick,onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,ondrag,ondragend,"
- + "ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,"
- + "onended,onerror,onfocus,onformdata,ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,"
- + "onkeyup,onload,onloadeddata,onloadedmetadata,onloadend,onloadstart,onlostpointercapture,"
- + "onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,"
- + "onmozfullscreenchange,onmozfullscreenerror,onpaste,onpause,onplay,onplaying,onpointercancel,"
- + "onpointerdown,onpointerenter,onpointerleave,onpointermove,onpointerout,onpointerover,onpointerup,"
- + "onprogress,onratechange,onreset,onresize,onscroll,onsecuritypolicyviolation,onseeked,onseeking,"
- + "onselect,onselectionchange,onselectstart,onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,"
- + "ontoggle,ontransitioncancel,ontransitionend,ontransitionrun,ontransitionstart,onvolumechange,"
- + "onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,"
- + "onwebkittransitionend,onwheel,outerText,spellcheck,style,tabIndex,"
- + "title",
IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className,"
+ "clearAttributes(),click(),componentFromPoint(),contains(),contentEditable,createControlRange(),"
+ "currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),getAdjacentText(),"
@@ -702,37 +703,42 @@ public void htmlElement() throws Exception {
+ "setPointerCapture(),shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector(),"
+ "webkitRequestFullScreen(),"
+ "webkitRequestFullscreen()",
- FF = "animate(),append(),attachShadow(),attributes,checkVisibility(),"
- + "childElementCount,children,classList,className,"
- + "clientHeight,clientLeft,clientTop,clientWidth,closest(),firstElementChild,getAnimations(),"
- + "getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
- + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
- + "getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),hasPointerCapture(),"
- + "id,innerHTML,insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),lastElementChild,"
- + "localName,matches(),mozMatchesSelector(),mozRequestFullScreen(),namespaceURI,onfullscreenchange,"
- + "onfullscreenerror,outerHTML,part,prefix,prepend(),querySelector(),querySelectorAll(),"
- + "releaseCapture(),releasePointerCapture(),removeAttribute(),removeAttributeNode(),"
- + "removeAttributeNS(),replaceChildren(),requestFullscreen(),requestPointerLock(),"
- + "scroll(),scrollBy(),scrollHeight,"
- + "scrollIntoView(),scrollLeft,scrollLeftMax,scrollTo(),scrollTop,scrollTopMax,scrollWidth,"
- + "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setCapture(),"
- + "setPointerCapture(),shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector()",
- FF_ESR = "animate(),append(),attachShadow(),attributes,childElementCount,children,classList,className,"
- + "clientHeight,clientLeft,clientTop,clientWidth,closest(),firstElementChild,"
- + "getAnimations(),getAttribute(),"
- + "getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
- + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
- + "getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),hasPointerCapture(),"
- + "id,innerHTML,insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),lastElementChild,"
- + "localName,matches(),mozMatchesSelector(),mozRequestFullScreen(),namespaceURI,onfullscreenchange,"
- + "onfullscreenerror,outerHTML,part,prefix,prepend(),"
- + "querySelector(),querySelectorAll(),releaseCapture(),"
- + "releasePointerCapture(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
- + "replaceChildren(),"
+ FF = "animate(),append(),ariaAtomic,ariaAutoComplete,ariaBusy,ariaChecked,ariaColCount,ariaColIndex,"
+ + "ariaColIndexText,ariaColSpan,ariaCurrent,ariaDescription,ariaDisabled,ariaExpanded,ariaHasPopup,"
+ + "ariaHidden,ariaInvalid,ariaKeyShortcuts,ariaLabel,ariaLevel,ariaLive,ariaModal,ariaMultiLine,"
+ + "ariaMultiSelectable,ariaOrientation,ariaPlaceholder,ariaPosInSet,ariaPressed,ariaReadOnly,"
+ + "ariaRelevant,ariaRequired,ariaRoleDescription,ariaRowCount,ariaRowIndex,ariaRowIndexText,"
+ + "ariaRowSpan,ariaSelected,ariaSetSize,ariaSort,ariaValueMax,ariaValueMin,ariaValueNow,"
+ + "ariaValueText,attachShadow(),attributes,checkVisibility(),childElementCount,children,classList,"
+ + "className,clientHeight,clientLeft,clientTop,clientWidth,closest(),firstElementChild,"
+ + "getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),"
+ + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
+ + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
+ + "hasPointerCapture(),id,innerHTML,insertAdjacentElement(),insertAdjacentHTML(),"
+ + "insertAdjacentText(),lastElementChild,localName,matches(),mozMatchesSelector(),"
+ + "mozRequestFullScreen(),namespaceURI,onfullscreenchange,onfullscreenerror,outerHTML,part,prefix,"
+ + "prepend(),querySelector(),querySelectorAll(),releaseCapture(),releasePointerCapture(),"
+ + "removeAttribute(),removeAttributeNode(),removeAttributeNS(),replaceChildren(),"
+ + "requestFullscreen(),requestPointerLock(),role,scroll(),scrollBy(),scrollHeight,scrollIntoView(),"
+ + "scrollLeft,scrollLeftMax,scrollTo(),scrollTop,scrollTopMax,scrollWidth,setAttribute(),"
+ + "setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture(),"
+ + "shadowRoot,slot,tagName,toggleAttribute(),"
+ + "webkitMatchesSelector()",
+ FF_ESR = "animate(),append(),attachShadow(),attributes,checkVisibility(),childElementCount,children,"
+ + "classList,className,clientHeight,clientLeft,clientTop,clientWidth,closest(),firstElementChild,"
+ + "getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),"
+ + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
+ + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
+ + "hasPointerCapture(),id,innerHTML,insertAdjacentElement(),insertAdjacentHTML(),"
+ + "insertAdjacentText(),lastElementChild,localName,matches(),mozMatchesSelector(),"
+ + "mozRequestFullScreen(),namespaceURI,onfullscreenchange,onfullscreenerror,outerHTML,part,prefix,"
+ + "prepend(),querySelector(),querySelectorAll(),releaseCapture(),releasePointerCapture(),"
+ + "removeAttribute(),removeAttributeNode(),removeAttributeNS(),replaceChildren(),"
+ "requestFullscreen(),requestPointerLock(),scroll(),scrollBy(),scrollHeight,scrollIntoView(),"
+ "scrollLeft,scrollLeftMax,scrollTo(),scrollTop,scrollTopMax,scrollWidth,setAttribute(),"
+ "setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture(),"
- + "shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector()",
+ + "shadowRoot,slot,tagName,toggleAttribute(),"
+ + "webkitMatchesSelector()",
IE = "childElementCount,clientHeight,clientLeft,clientTop,clientWidth,firstElementChild,getAttribute(),"
+ "getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects(),"
+ "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),lastElementChild,"
@@ -869,35 +875,40 @@ public void element() throws Exception {
+ "setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setHTML(),setPointerCapture(),"
+ "shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector(),webkitRequestFullScreen(),"
+ "webkitRequestFullscreen()",
- FF = "after(),animate(),assignedSlot,attachShadow(),attributes,before(),"
- + "checkVisibility(),classList,className,clientHeight,"
- + "clientLeft,clientTop,clientWidth,closest(),getAnimations(),getAttribute(),getAttributeNames(),"
- + "getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects(),"
- + "getElementsByClassName(),getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),"
- + "hasAttributeNS(),hasAttributes(),hasPointerCapture(),id,innerHTML,insertAdjacentElement(),"
- + "insertAdjacentHTML(),insertAdjacentText(),localName,matches(),mozMatchesSelector(),"
- + "mozRequestFullScreen(),namespaceURI,nextElementSibling,onfullscreenchange,onfullscreenerror,"
- + "outerHTML,part,prefix,previousElementSibling,releaseCapture(),releasePointerCapture(),remove(),"
- + "removeAttribute(),removeAttributeNode(),removeAttributeNS(),replaceWith(),requestFullscreen(),"
- + "requestPointerLock(),scroll(),scrollBy(),scrollHeight,scrollIntoView(),scrollLeft,scrollLeftMax,"
- + "scrollTo(),scrollTop,scrollTopMax,scrollWidth,setAttribute(),setAttributeNode(),"
- + "setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture(),shadowRoot,slot,tagName,"
- + "toggleAttribute(),webkitMatchesSelector()",
- FF_ESR = "after(),animate(),assignedSlot,attachShadow(),attributes,"
- + "before(),classList,className,clientHeight,"
- + "clientLeft,clientTop,clientWidth,closest(),getAnimations(),"
- + "getAttribute(),getAttributeNames(),getAttributeNode(),"
- + "getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects(),"
- + "getElementsByClassName(),getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),"
- + "hasAttributeNS(),hasAttributes(),hasPointerCapture(),id,innerHTML,insertAdjacentElement(),"
- + "insertAdjacentHTML(),insertAdjacentText(),localName,matches(),mozMatchesSelector(),"
- + "mozRequestFullScreen(),namespaceURI,nextElementSibling,onfullscreenchange,onfullscreenerror,"
- + "outerHTML,part,prefix,previousElementSibling,releaseCapture(),"
+ FF = "after(),animate(),ariaAtomic,ariaAutoComplete,ariaBusy,ariaChecked,ariaColCount,ariaColIndex,"
+ + "ariaColIndexText,ariaColSpan,ariaCurrent,ariaDescription,ariaDisabled,ariaExpanded,ariaHasPopup,"
+ + "ariaHidden,ariaInvalid,ariaKeyShortcuts,ariaLabel,ariaLevel,ariaLive,ariaModal,ariaMultiLine,"
+ + "ariaMultiSelectable,ariaOrientation,ariaPlaceholder,ariaPosInSet,ariaPressed,ariaReadOnly,"
+ + "ariaRelevant,ariaRequired,ariaRoleDescription,ariaRowCount,ariaRowIndex,ariaRowIndexText,"
+ + "ariaRowSpan,ariaSelected,ariaSetSize,ariaSort,ariaValueMax,ariaValueMin,ariaValueNow,"
+ + "ariaValueText,assignedSlot,attachShadow(),attributes,before(),checkVisibility(),classList,"
+ + "className,clientHeight,clientLeft,clientTop,clientWidth,closest(),getAnimations(),getAttribute(),"
+ + "getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
+ + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
+ + "getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),hasPointerCapture(),id,"
+ + "innerHTML,insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),localName,matches(),"
+ + "mozMatchesSelector(),mozRequestFullScreen(),namespaceURI,nextElementSibling,onfullscreenchange,"
+ + "onfullscreenerror,outerHTML,part,prefix,previousElementSibling,releaseCapture(),"
+ + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
+ + "replaceWith(),requestFullscreen(),requestPointerLock(),role,scroll(),scrollBy(),scrollHeight,"
+ + "scrollIntoView(),scrollLeft,scrollLeftMax,scrollTo(),scrollTop,scrollTopMax,scrollWidth,"
+ + "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setCapture(),"
+ + "setPointerCapture(),shadowRoot,slot,tagName,toggleAttribute(),"
+ + "webkitMatchesSelector()",
+ FF_ESR = "after(),animate(),assignedSlot,attachShadow(),attributes,before(),checkVisibility(),classList,"
+ + "className,clientHeight,clientLeft,clientTop,clientWidth,closest(),getAnimations(),getAttribute(),"
+ + "getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
+ + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
+ + "getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),hasPointerCapture(),id,"
+ + "innerHTML,insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),localName,matches(),"
+ + "mozMatchesSelector(),mozRequestFullScreen(),namespaceURI,nextElementSibling,onfullscreenchange,"
+ + "onfullscreenerror,outerHTML,part,prefix,previousElementSibling,releaseCapture(),"
+ "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
+ "replaceWith(),requestFullscreen(),requestPointerLock(),scroll(),scrollBy(),scrollHeight,"
+ "scrollIntoView(),scrollLeft,scrollLeftMax,scrollTo(),scrollTop,scrollTopMax,scrollWidth,"
+ "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setCapture(),"
- + "setPointerCapture(),shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector()",
+ + "setPointerCapture(),shadowRoot,slot,tagName,toggleAttribute(),"
+ + "webkitMatchesSelector()",
IE = "childElementCount,clientHeight,clientLeft,clientTop,clientWidth,firstElementChild,getAttribute(),"
+ "getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects(),"
+ "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),lastElementChild,"
@@ -1133,8 +1144,8 @@ public void event() throws Exception {
+ "innerHeight,innerWidth,InstallTrigger,isSecureContext,length,localStorage,location,locationbar,"
+ "log(),matchMedia(),menubar,moveBy(),moveTo(),mozInnerScreenX,mozInnerScreenY,name,navigator,"
+ "onabort,onafterprint,onanimationcancel,onanimationend,onanimationiteration,onanimationstart,"
- + "onauxclick,onbeforeinput,onbeforeprint,onbeforeunload,onblur,oncanplay,oncanplaythrough,onchange,"
- + "onclick,onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,ondevicemotion,"
+ + "onauxclick,onbeforeinput,onbeforeprint,onbeforeunload,onblur,oncancel,oncanplay,oncanplaythrough,"
+ + "onchange,onclick,onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,ondevicemotion,"
+ "ondeviceorientation,ondeviceorientationabsolute,ondrag,ondragend,ondragenter,ondragexit,"
+ "ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,"
+ "onformdata,ongamepadconnected,ongamepaddisconnected,ongotpointercapture,onhashchange,oninput,"
@@ -1157,36 +1168,37 @@ public void event() throws Exception {
+ "sortFunction(),speechSynthesis,status,statusbar,stop(),structuredClone(),test(),toolbar,top,"
+ "updateCommands(),visualViewport,"
+ "window",
- FF_ESR = "addEventListener(),alert(),applicationCache,atob(),blur(),btoa(),caches,cancelAnimationFrame(),"
+ FF_ESR = "addEventListener(),alert(),atob(),blur(),btoa(),caches,cancelAnimationFrame(),"
+ "cancelIdleCallback(),captureEvents(),clearInterval(),clearTimeout(),clientInformation,close(),"
+ "closed,confirm(),createImageBitmap(),crossOriginIsolated,crypto,customElements,devicePixelRatio,"
+ "dispatchEvent(),document,dump(),event,external,fetch(),find(),focus(),frameElement,frames,"
+ "fullScreen,getComputedStyle(),getDefaultComputedStyle(),getSelection(),history,indexedDB,"
+ "innerHeight,innerWidth,InstallTrigger,isSecureContext,length,localStorage,location,locationbar,"
+ "log(),matchMedia(),menubar,moveBy(),moveTo(),mozInnerScreenX,mozInnerScreenY,name,navigator,"
- + "onabort,onabsolutedeviceorientation,onafterprint,onanimationcancel,onanimationend,"
- + "onanimationiteration,onanimationstart,onauxclick,onbeforeinput,onbeforeprint,onbeforeunload,"
- + "onblur,oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncuechange,ondblclick,"
- + "ondevicemotion,ondeviceorientation,ondrag,ondragend,ondragenter,ondragexit,ondragleave,"
- + "ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,"
- + "ongamepadconnected,ongamepaddisconnected,ongotpointercapture,onhashchange,oninput,oninvalid,"
- + "onkeydown,onkeypress,onkeyup,onlanguagechange,onload(),onloadeddata,onloadedmetadata,onloadend,"
+ + "onabort,onafterprint,onanimationcancel,onanimationend,onanimationiteration,onanimationstart,"
+ + "onauxclick,onbeforeinput,onbeforeprint,onbeforeunload,onblur,oncanplay,oncanplaythrough,onchange,"
+ + "onclick,onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,ondevicemotion,"
+ + "ondeviceorientation,ondeviceorientationabsolute,ondrag,ondragend,ondragenter,ondragexit,"
+ + "ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,"
+ + "onformdata,ongamepadconnected,ongamepaddisconnected,ongotpointercapture,onhashchange,oninput,"
+ + "oninvalid,onkeydown,onkeypress,onkeyup,onlanguagechange,onload(),onloadeddata,onloadedmetadata,"
+ "onloadstart,onlostpointercapture,onmessage,onmessageerror,onmousedown,onmouseenter,onmouseleave,"
+ "onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange,onmozfullscreenerror,"
- + "onoffline,ononline,onpagehide,onpageshow,onpause,onplay,onplaying,onpointercancel,onpointerdown,"
- + "onpointerenter,onpointerleave,onpointermove,onpointerout,onpointerover,onpointerup,onpopstate,"
- + "onprogress,onratechange,onrejectionhandled,onreset,onresize,onscroll,onsecuritypolicyviolation,"
- + "onseeked,onseeking,onselect,onselectionchange,onselectstart,onslotchange,onstalled,onstorage,"
- + "onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,ontransitionend,ontransitionrun,"
- + "ontransitionstart,onunhandledrejection,onunload,onvolumechange,onwaiting,onwebkitanimationend,"
- + "onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,open(),opener,"
- + "origin,outerHeight,outerWidth,pageXOffset,pageYOffset,parent,performance,personalbar,"
- + "postMessage(),print(),process(),prompt(),queueMicrotask(),releaseEvents(),removeEventListener(),"
- + "reportError(),requestAnimationFrame(),requestIdleCallback(),resizeBy(),resizeTo(),screen,"
- + "screenLeft,screenTop,screenX,screenY,scroll(),scrollbars,scrollBy(),scrollByLines(),"
- + "scrollByPages(),scrollMaxX,scrollMaxY,scrollTo(),scrollX,scrollY,self,sessionStorage,"
- + "setInterval(),setResizable(),setTimeout(),sizeToContent(),sortFunction(),speechSynthesis,status,"
- + "statusbar,stop(),structuredClone(),test(),toolbar,top,u2f,updateCommands(),visualViewport,"
+ + "onoffline,ononline,onpagehide,onpageshow,onpaste,onpause,onplay,onplaying,onpointercancel,"
+ + "onpointerdown,onpointerenter,onpointerleave,onpointermove,onpointerout,onpointerover,onpointerup,"
+ + "onpopstate,onprogress,onratechange,onrejectionhandled,onreset,onresize,onscroll,onscrollend,"
+ + "onsecuritypolicyviolation,onseeked,onseeking,onselect,onselectionchange,onselectstart,"
+ + "onslotchange,onstalled,onstorage,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,"
+ + "ontransitionend,ontransitionrun,ontransitionstart,onunhandledrejection,onunload,onvolumechange,"
+ + "onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,"
+ + "onwebkittransitionend,onwheel,open(),opener,origin,outerHeight,outerWidth,pageXOffset,"
+ + "pageYOffset,parent,performance,personalbar,postMessage(),print(),process(),prompt(),"
+ + "queueMicrotask(),releaseEvents(),removeEventListener(),reportError(),requestAnimationFrame(),"
+ + "requestIdleCallback(),resizeBy(),resizeTo(),screen,screenLeft,screenTop,screenX,screenY,scroll(),"
+ + "scrollbars,scrollBy(),scrollByLines(),scrollByPages(),scrollMaxX,scrollMaxY,scrollTo(),scrollX,"
+ + "scrollY,self,sessionStorage,setInterval(),setResizable(),setTimeout(),sizeToContent(),"
+ + "sortFunction(),speechSynthesis,status,statusbar,stop(),structuredClone(),test(),toolbar,top,"
+ + "updateCommands(),visualViewport,"
+ "window",
IE = "addEventListener(),alert(),animationStartTime,applicationCache,atob(),blur(),btoa(),"
+ "cancelAnimationFrame(),captureEvents(),clearImmediate(),clearInterval(),clearTimeout(),"
@@ -1493,10 +1505,9 @@ public void aside() throws Exception {
+ "defaultMuted,defaultPlaybackRate,duration,ended,error,fastSeek(),HAVE_CURRENT_DATA,"
+ "HAVE_ENOUGH_DATA,HAVE_FUTURE_DATA,HAVE_METADATA,HAVE_NOTHING,load(),loop,mediaKeys,"
+ "mozAudioCaptured,mozCaptureStream(),mozCaptureStreamUntilEnded(),mozFragmentEnd,mozGetMetadata(),"
- + "mozPreservesPitch,muted,NETWORK_EMPTY,NETWORK_IDLE,NETWORK_LOADING,NETWORK_NO_SOURCE,"
- + "networkState,onencrypted,onwaitingforkey,pause(),paused,play(),playbackRate,played,preload,"
- + "preservesPitch,readyState,seekable,seeking,seekToNextFrame(),setMediaKeys(),src,srcObject,"
- + "textTracks,"
+ + "muted,NETWORK_EMPTY,NETWORK_IDLE,NETWORK_LOADING,NETWORK_NO_SOURCE,networkState,onencrypted,"
+ + "onwaitingforkey,pause(),paused,play(),playbackRate,played,preload,preservesPitch,readyState,"
+ + "seekable,seeking,seekToNextFrame(),setMediaKeys(),src,srcObject,textTracks,"
+ "volume",
IE = "addTextTrack(),audioTracks,autobuffer,autoplay,buffered,canPlayType(),controls,currentSrc,"
+ "currentTime,defaultPlaybackRate,duration,ended,error,HAVE_CURRENT_DATA,HAVE_ENOUGH_DATA,"
@@ -1698,9 +1709,9 @@ public void br() throws Exception {
FF = "checkValidity(),disabled,form,formAction,formEnctype,formMethod,formNoValidate,formTarget,labels,"
+ "name,reportValidity(),setCustomValidity(),type,validationMessage,validity,value,"
+ "willValidate",
- FF_ESR = "autofocus,checkValidity(),disabled,form,formAction,formEnctype,formMethod,formNoValidate,"
- + "formTarget,labels,name,reportValidity(),setCustomValidity(),type,validationMessage,validity,"
- + "value,willValidate",
+ FF_ESR = "checkValidity(),disabled,form,formAction,formEnctype,formMethod,formNoValidate,formTarget,labels,"
+ + "name,reportValidity(),setCustomValidity(),type,validationMessage,validity,value,"
+ + "willValidate",
IE = "autofocus,checkValidity(),createTextRange(),form,formAction,formEnctype,formMethod,"
+ "formNoValidate,formTarget,name,setCustomValidity(),status,type,validationMessage,validity,value,"
+ "willValidate")
@@ -1731,8 +1742,9 @@ public void button() throws Exception {
FF = "captureStream(),getContext(),height,mozOpaque,mozPrintCallback,toBlob(),toDataURL(),"
+ "transferControlToOffscreen(),"
+ "width",
- FF_ESR = "captureStream(),getContext(),height,"
- + "mozOpaque,mozPrintCallback,toBlob(),toDataURL(),width",
+ FF_ESR = "captureStream(),getContext(),height,mozOpaque,mozPrintCallback,toBlob(),toDataURL(),"
+ + "transferControlToOffscreen(),"
+ + "width",
IE = "getContext(),height,msToBlob(),toDataURL(),width")
@HtmlUnitNYI(CHROME = "getContext(),height,toDataURL(),width",
EDGE = "getContext(),height,toDataURL(),width",
@@ -2018,7 +2030,7 @@ public void font() throws Exception {
+ "noValidate,rel,relList,reportValidity(),requestSubmit(),reset(),submit(),"
+ "target",
FF_ESR = "acceptCharset,action,autocomplete,checkValidity(),elements,encoding,enctype,length,method,name,"
- + "noValidate,reportValidity(),requestSubmit(),reset(),submit(),"
+ + "noValidate,rel,relList,reportValidity(),requestSubmit(),reset(),submit(),"
+ "target",
IE = "acceptCharset,action,autocomplete,checkValidity(),elements,encoding,enctype,item(),length,method,"
+ "name,namedItem(),noValidate,reset(),submit(),"
@@ -2567,7 +2579,6 @@ public void menuitem() throws Exception {
*/
@Test
@Alerts(DEFAULT = "content,httpEquiv,media,name,scheme",
- FF_ESR = "content,httpEquiv,name,scheme",
IE = "charset,content,httpEquiv,name,scheme,url")
public void meta() throws Exception {
test("meta");
@@ -3035,9 +3046,9 @@ public void section() throws Exception {
+ "options,reportValidity(),required,selectedIndex,selectedOptions,setCustomValidity(),size,type,"
+ "validationMessage,validity,value,"
+ "willValidate",
- FF_ESR = "add(),autocomplete,autofocus,checkValidity(),disabled,form,item(),labels,length,multiple,name,"
- + "namedItem(),options,reportValidity(),required,selectedIndex,selectedOptions,setCustomValidity(),"
- + "size,type,validationMessage,validity,value,"
+ FF_ESR = "add(),autocomplete,checkValidity(),disabled,form,item(),labels,length,multiple,name,namedItem(),"
+ + "options,reportValidity(),required,selectedIndex,selectedOptions,setCustomValidity(),size,type,"
+ + "validationMessage,validity,value,"
+ "willValidate",
IE = "add(),autofocus,checkValidity(),form,item(),length,multiple,name,namedItem(),options,remove(),"
+ "required,selectedIndex,setCustomValidity(),size,type,validationMessage,validity,value,"
@@ -3094,7 +3105,6 @@ public void small() throws Exception {
*/
@Test
@Alerts(DEFAULT = "height,media,sizes,src,srcset,type,width",
- FF_ESR = "media,sizes,src,srcset,type",
IE = "media,msKeySystem,src,type")
@HtmlUnitNYI(CHROME = "-",
EDGE = "-",
@@ -3343,11 +3353,11 @@ public void tr() throws Exception {
+ "selectionEnd,selectionStart,setCustomValidity(),setRangeText(),setSelectionRange(),textLength,"
+ "type,validationMessage,validity,value,willValidate,"
+ "wrap",
- FF_ESR = "autocomplete,autofocus,checkValidity(),cols,defaultValue,disabled,form,"
- + "labels,maxLength,minLength,name,placeholder,"
- + "readOnly,reportValidity(),required,rows,select(),selectionDirection,selectionEnd,"
- + "selectionStart,setCustomValidity(),setRangeText(),setSelectionRange(),"
- + "textLength,type,validationMessage,validity,value,willValidate,wrap",
+ FF_ESR = "autocomplete,checkValidity(),cols,defaultValue,disabled,form,labels,maxLength,minLength,name,"
+ + "placeholder,readOnly,reportValidity(),required,rows,select(),selectionDirection,selectionEnd,"
+ + "selectionStart,setCustomValidity(),setRangeText(),setSelectionRange(),textLength,type,"
+ + "validationMessage,validity,value,willValidate,"
+ + "wrap",
IE = "autofocus,checkValidity(),cols,createTextRange(),defaultValue,form,maxLength,name,placeholder,"
+ "readOnly,required,rows,select(),selectionEnd,selectionStart,setCustomValidity(),"
+ "setSelectionRange(),status,type,validationMessage,validity,value,willValidate,"
@@ -3533,10 +3543,10 @@ public void var() throws Exception {
+ "HAVE_CURRENT_DATA,HAVE_ENOUGH_DATA,HAVE_FUTURE_DATA,HAVE_METADATA,HAVE_NOTHING,height,load(),"
+ "loop,mediaKeys,mozAudioCaptured,mozCaptureStream(),mozCaptureStreamUntilEnded(),mozDecodedFrames,"
+ "mozFragmentEnd,mozFrameDelay,mozGetMetadata(),mozHasAudio,mozPaintedFrames,mozParsedFrames,"
- + "mozPresentedFrames,mozPreservesPitch,muted,NETWORK_EMPTY,NETWORK_IDLE,NETWORK_LOADING,"
- + "NETWORK_NO_SOURCE,networkState,onencrypted,onwaitingforkey,pause(),paused,play(),playbackRate,"
- + "played,poster,preload,preservesPitch,readyState,seekable,seeking,seekToNextFrame(),"
- + "setMediaKeys(),src,srcObject,textTracks,videoHeight,videoWidth,volume,"
+ + "mozPresentedFrames,muted,NETWORK_EMPTY,NETWORK_IDLE,NETWORK_LOADING,NETWORK_NO_SOURCE,"
+ + "networkState,onencrypted,onwaitingforkey,pause(),paused,play(),playbackRate,played,poster,"
+ + "preload,preservesPitch,readyState,seekable,seeking,seekToNextFrame(),setMediaKeys(),src,"
+ + "srcObject,textTracks,videoHeight,videoWidth,volume,"
+ "width",
IE = "addTextTrack(),audioTracks,autobuffer,autoplay,buffered,canPlayType(),controls,currentSrc,"
+ "currentTime,defaultPlaybackRate,duration,ended,error,getVideoPlaybackQuality(),"
@@ -3626,13 +3636,13 @@ public void xmp() throws Exception {
+ "stepDown(),stepUp(),textLength,type,useMap,validationMessage,validity,value,valueAsDate,"
+ "valueAsNumber,webkitdirectory,webkitEntries,width,"
+ "willValidate",
- FF_ESR = "accept,align,alt,autocomplete,autofocus,checked,checkValidity(),defaultChecked,defaultValue,"
- + "disabled,files,form,formAction,formEnctype,formMethod,formNoValidate,formTarget,height,"
- + "indeterminate,labels,list,max,maxLength,min,minLength,mozIsTextField(),multiple,name,pattern,"
- + "placeholder,readOnly,reportValidity(),required,select(),selectionDirection,selectionEnd,"
- + "selectionStart,setCustomValidity(),setRangeText(),setSelectionRange(),showPicker(),size,src,step,"
- + "stepDown(),stepUp(),textLength,type,useMap,validationMessage,validity,value,valueAsDate,"
- + "valueAsNumber,webkitdirectory,webkitEntries,width,"
+ FF_ESR = "accept,align,alt,autocomplete,checked,checkValidity(),defaultChecked,defaultValue,disabled,files,"
+ + "form,formAction,formEnctype,formMethod,formNoValidate,formTarget,height,indeterminate,labels,"
+ + "list,max,maxLength,min,minLength,mozIsTextField(),multiple,name,pattern,placeholder,readOnly,"
+ + "reportValidity(),required,select(),selectionDirection,selectionEnd,selectionStart,"
+ + "setCustomValidity(),setRangeText(),setSelectionRange(),showPicker(),size,src,step,stepDown(),"
+ + "stepUp(),textLength,type,useMap,validationMessage,validity,value,valueAsDate,valueAsNumber,"
+ + "webkitdirectory,webkitEntries,width,"
+ "willValidate",
IE = "accept,align,alt,autocomplete,autofocus,border,checked,checkValidity(),complete,"
+ "createTextRange(),defaultChecked,defaultValue,dynsrc,files,form,formAction,formEnctype,"
@@ -4115,13 +4125,14 @@ public void webkitURL() throws Exception {
FF_ESR = "ALT_MASK,altKey,AT_TARGET,bubbles,BUBBLING_PHASE,button,buttons,cancelable,cancelBubble,"
+ "CAPTURING_PHASE,clientX,clientY,composed,composedPath(),CONTROL_MASK,ctrlKey,currentTarget,"
+ "dataTransfer,defaultPrevented,detail,eventPhase,explicitOriginalTarget,getModifierState(),"
- + "initDragEvent(),initEvent(),initMouseEvent(),initNSMouseEvent(),initUIEvent(),isTrusted,"
- + "layerX,layerY,META_MASK,metaKey,movementX,movementY,MOZ_SOURCE_CURSOR,MOZ_SOURCE_ERASER,"
+ + "initDragEvent(),initEvent(),initMouseEvent(),initNSMouseEvent(),initUIEvent(),isTrusted,layerX,"
+ + "layerY,META_MASK,metaKey,movementX,movementY,MOZ_SOURCE_CURSOR,MOZ_SOURCE_ERASER,"
+ "MOZ_SOURCE_KEYBOARD,MOZ_SOURCE_MOUSE,MOZ_SOURCE_PEN,MOZ_SOURCE_TOUCH,MOZ_SOURCE_UNKNOWN,"
+ "mozInputSource,mozPressure,NONE,offsetX,offsetY,originalTarget,pageX,pageY,preventDefault(),"
- + "rangeOffset,rangeParent,region,relatedTarget,returnValue,screenX,screenY,SCROLL_PAGE_DOWN,"
+ + "rangeOffset,rangeParent,relatedTarget,returnValue,screenX,screenY,SCROLL_PAGE_DOWN,"
+ "SCROLL_PAGE_UP,SHIFT_MASK,shiftKey,srcElement,stopImmediatePropagation(),stopPropagation(),"
- + "target,timeStamp,type,view,which,x,y",
+ + "target,timeStamp,type,view,which,x,"
+ + "y",
IE = "altKey,AT_TARGET,bubbles,BUBBLING_PHASE,button,buttons,cancelable,cancelBubble,CAPTURING_PHASE,"
+ "clientX,clientY,ctrlKey,currentTarget,dataTransfer,defaultPrevented,detail,deviceSessionId,"
+ "eventPhase,fromElement,getModifierState(),initDragEvent(),initEvent(),initMouseEvent(),"
@@ -4259,9 +4270,10 @@ public void wheelEvent() throws Exception {
+ "initMouseEvent(),initNSMouseEvent(),initUIEvent(),isTrusted,layerX,layerY,META_MASK,metaKey,"
+ "movementX,movementY,MOZ_SOURCE_CURSOR,MOZ_SOURCE_ERASER,MOZ_SOURCE_KEYBOARD,MOZ_SOURCE_MOUSE,"
+ "MOZ_SOURCE_PEN,MOZ_SOURCE_TOUCH,MOZ_SOURCE_UNKNOWN,mozInputSource,mozPressure,NONE,offsetX,"
- + "offsetY,originalTarget,pageX,pageY,preventDefault(),rangeOffset,rangeParent,region,"
- + "relatedTarget,returnValue,screenX,screenY,SCROLL_PAGE_DOWN,SCROLL_PAGE_UP,SHIFT_MASK,shiftKey,"
- + "srcElement,stopImmediatePropagation(),stopPropagation(),target,timeStamp,type,view,which,x,y",
+ + "offsetY,originalTarget,pageX,pageY,preventDefault(),rangeOffset,rangeParent,relatedTarget,"
+ + "returnValue,screenX,screenY,SCROLL_PAGE_DOWN,SCROLL_PAGE_UP,SHIFT_MASK,shiftKey,srcElement,"
+ + "stopImmediatePropagation(),stopPropagation(),target,timeStamp,type,view,which,x,"
+ + "y",
IE = "altKey,AT_TARGET,bubbles,BUBBLING_PHASE,button,buttons,cancelable,cancelBubble,CAPTURING_PHASE,"
+ "clientX,clientY,ctrlKey,currentTarget,defaultPrevented,detail,deviceSessionId,eventPhase,"
+ "fromElement,getModifierState(),initEvent(),initMouseEvent(),initUIEvent(),isTrusted,layerX,"
@@ -4789,7 +4801,7 @@ public void slot() throws Exception {
+ "lookupNamespaceURI(),lookupPrefix(),mozCancelFullScreen(),mozFullScreen,mozFullScreenElement,"
+ "mozFullScreenEnabled,mozSetImageElement(),nextSibling,nodeName,nodeType,nodeValue,normalize(),"
+ "NOTATION_NODE,onabort,onafterscriptexecute,onanimationcancel,onanimationend,onanimationiteration,"
- + "onanimationstart,onauxclick,onbeforeinput,onbeforescriptexecute,onblur,oncanplay,"
+ + "onanimationstart,onauxclick,onbeforeinput,onbeforescriptexecute,onblur,oncancel,oncanplay,"
+ "oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,"
+ "ondrag,ondragend,ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop,"
+ "ondurationchange,onemptied,onended,onerror,onfocus,onformdata,onfullscreenchange,"
@@ -4838,13 +4850,13 @@ public void slot() throws Exception {
+ "ondrag,ondragend,ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop,"
+ "ondurationchange,onemptied,onended,onerror,onfocus,onformdata,onfullscreenchange,"
+ "onfullscreenerror,ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,"
- + "onloadeddata,onloadedmetadata,onloadend,onloadstart,onlostpointercapture,onmousedown,"
- + "onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange,"
+ + "onloadeddata,onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter,"
+ + "onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange,"
+ "onmozfullscreenerror,onpaste,onpause,onplay,onplaying,onpointercancel,onpointerdown,"
+ "onpointerenter,onpointerleave,onpointerlockchange,onpointerlockerror,onpointermove,onpointerout,"
+ "onpointerover,onpointerup,onprogress,onratechange,onreadystatechange,onreset,onresize,onscroll,"
- + "onsecuritypolicyviolation,onseeked,onseeking,onselect,onselectionchange,onselectstart,"
- + "onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,"
+ + "onscrollend,onsecuritypolicyviolation,onseeked,onseeking,onselect,onselectionchange,"
+ + "onselectstart,onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,"
+ "ontransitionend,ontransitionrun,ontransitionstart,onvisibilitychange,onvolumechange,onwaiting,"
+ "onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,"
+ "onwheel,open(),ownerDocument,parentElement,parentNode,plugins,pointerLockElement,"
@@ -4989,7 +5001,7 @@ public void document() throws Exception {
+ "lookupNamespaceURI(),lookupPrefix(),mozCancelFullScreen(),mozFullScreen,mozFullScreenElement,"
+ "mozFullScreenEnabled,mozSetImageElement(),nextSibling,nodeName,nodeType,nodeValue,normalize(),"
+ "NOTATION_NODE,onabort,onafterscriptexecute,onanimationcancel,onanimationend,onanimationiteration,"
- + "onanimationstart,onauxclick,onbeforeinput,onbeforescriptexecute,onblur,oncanplay,"
+ + "onanimationstart,onauxclick,onbeforeinput,onbeforescriptexecute,onblur,oncancel,oncanplay,"
+ "oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,"
+ "ondrag,ondragend,ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop,"
+ "ondurationchange,onemptied,onended,onerror,onfocus,onformdata,onfullscreenchange,"
@@ -5038,13 +5050,13 @@ public void document() throws Exception {
+ "ondrag,ondragend,ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop,"
+ "ondurationchange,onemptied,onended,onerror,onfocus,onformdata,onfullscreenchange,"
+ "onfullscreenerror,ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,"
- + "onloadeddata,onloadedmetadata,onloadend,onloadstart,onlostpointercapture,onmousedown,"
- + "onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange,"
+ + "onloadeddata,onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter,"
+ + "onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange,"
+ "onmozfullscreenerror,onpaste,onpause,onplay,onplaying,onpointercancel,onpointerdown,"
+ "onpointerenter,onpointerleave,onpointerlockchange,onpointerlockerror,onpointermove,onpointerout,"
+ "onpointerover,onpointerup,onprogress,onratechange,onreadystatechange,onreset,onresize,onscroll,"
- + "onsecuritypolicyviolation,onseeked,onseeking,onselect,onselectionchange,onselectstart,"
- + "onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,"
+ + "onscrollend,onsecuritypolicyviolation,onseeked,onseeking,onselect,onselectionchange,"
+ + "onselectstart,onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,"
+ "ontransitionend,ontransitionrun,ontransitionstart,onvisibilitychange,onvolumechange,onwaiting,"
+ "onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,"
+ "onwheel,open(),ownerDocument,parentElement,parentNode,plugins,pointerLockElement,"
@@ -5337,7 +5349,7 @@ public void htmlDocument() throws Exception {
+ "lookupNamespaceURI(),lookupPrefix(),mozCancelFullScreen(),mozFullScreen,mozFullScreenElement,"
+ "mozFullScreenEnabled,mozSetImageElement(),nextSibling,nodeName,nodeType,nodeValue,normalize(),"
+ "NOTATION_NODE,onabort,onafterscriptexecute,onanimationcancel,onanimationend,onanimationiteration,"
- + "onanimationstart,onauxclick,onbeforeinput,onbeforescriptexecute,onblur,oncanplay,"
+ + "onanimationstart,onauxclick,onbeforeinput,onbeforescriptexecute,onblur,oncancel,oncanplay,"
+ "oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,"
+ "ondrag,ondragend,ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop,"
+ "ondurationchange,onemptied,onended,onerror,onfocus,onformdata,onfullscreenchange,"
@@ -5386,13 +5398,13 @@ public void htmlDocument() throws Exception {
+ "ondrag,ondragend,ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop,"
+ "ondurationchange,onemptied,onended,onerror,onfocus,onformdata,onfullscreenchange,"
+ "onfullscreenerror,ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,"
- + "onloadeddata,onloadedmetadata,onloadend,onloadstart,onlostpointercapture,onmousedown,"
- + "onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange,"
+ + "onloadeddata,onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter,"
+ + "onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange,"
+ "onmozfullscreenerror,onpaste,onpause,onplay,onplaying,onpointercancel,onpointerdown,"
+ "onpointerenter,onpointerleave,onpointerlockchange,onpointerlockerror,onpointermove,onpointerout,"
+ "onpointerover,onpointerup,onprogress,onratechange,onreadystatechange,onreset,onresize,onscroll,"
- + "onsecuritypolicyviolation,onseeked,onseeking,onselect,onselectionchange,onselectstart,"
- + "onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,"
+ + "onscrollend,onsecuritypolicyviolation,onseeked,onseeking,onselect,onselectionchange,"
+ + "onselectstart,onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,"
+ "ontransitionend,ontransitionrun,ontransitionstart,onvisibilitychange,onvolumechange,onwaiting,"
+ "onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,"
+ "onwheel,open(),ownerDocument,parentElement,parentNode,plugins,pointerLockElement,"
@@ -5630,6 +5642,22 @@ public void xmlDocument() throws Exception {
+ "style,tabIndex,"
+ "viewportElement",
FF = "autofocus,blur(),dataset,focus(),nonce,onabort,onanimationcancel,onanimationend,"
+ + "onanimationiteration,onanimationstart,onauxclick,onbeforeinput,onblur,oncancel,oncanplay,"
+ + "oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,"
+ + "ondrag,ondragend,ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop,"
+ + "ondurationchange,onemptied,onended,onerror,onfocus,onformdata,ongotpointercapture,oninput,"
+ + "oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata,onloadedmetadata,onloadstart,"
+ + "onlostpointercapture,onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,"
+ + "onmouseup,onmozfullscreenchange,onmozfullscreenerror,onpaste,onpause,onplay,onplaying,"
+ + "onpointercancel,onpointerdown,onpointerenter,onpointerleave,onpointermove,onpointerout,"
+ + "onpointerover,onpointerup,onprogress,onratechange,onreset,onresize,onscroll,onscrollend,"
+ + "onsecuritypolicyviolation,onseeked,onseeking,onselect,onselectionchange,onselectstart,"
+ + "onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitioncancel,"
+ + "ontransitionend,ontransitionrun,ontransitionstart,onvolumechange,onwaiting,onwebkitanimationend,"
+ + "onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,ownerSVGElement,"
+ + "style,tabIndex,"
+ + "viewportElement",
+ FF_ESR = "autofocus,blur(),dataset,focus(),nonce,onabort,onanimationcancel,onanimationend,"
+ "onanimationiteration,onanimationstart,onauxclick,onbeforeinput,onblur,oncanplay,oncanplaythrough,"
+ "onchange,onclick,onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,ondrag,ondragend,"
+ "ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,"
@@ -5644,21 +5672,6 @@ public void xmlDocument() throws Exception {
+ "onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,"
+ "onwebkittransitionend,onwheel,ownerSVGElement,style,tabIndex,"
+ "viewportElement",
- FF_ESR = "blur(),dataset,focus(),nonce,onabort,onanimationcancel,onanimationend,onanimationiteration,"
- + "onanimationstart,onauxclick,onbeforeinput,onblur,oncanplay,oncanplaythrough,onchange,onclick,"
- + "onclose,oncontextmenu,oncopy,oncuechange,oncut,ondblclick,ondrag,ondragend,ondragenter,"
- + "ondragexit,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,"
- + "onfocus,onformdata,ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,"
- + "onloadeddata,onloadedmetadata,onloadend,onloadstart,onlostpointercapture,onmousedown,"
- + "onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange,"
- + "onmozfullscreenerror,onpaste,onpause,onplay,onplaying,onpointercancel,onpointerdown,"
- + "onpointerenter,onpointerleave,onpointermove,onpointerout,onpointerover,onpointerup,onprogress,"
- + "onratechange,onreset,onresize,onscroll,onsecuritypolicyviolation,onseeked,onseeking,onselect,"
- + "onselectionchange,onselectstart,onslotchange,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,"
- + "ontransitioncancel,ontransitionend,ontransitionrun,ontransitionstart,onvolumechange,onwaiting,"
- + "onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,"
- + "onwheel,ownerSVGElement,style,tabIndex,"
- + "viewportElement",
IE = "-")
@HtmlUnitNYI(CHROME = "onabort,onauxclick,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose,"
+ "oncontextmenu,oncopy,oncuechange,oncut,"
@@ -7031,10 +7044,10 @@ public void nodeListButtonLabels() throws Exception {
+ "284,285,286,287,288,289,29,290,291,292,293,294,295,296,297,298,299,3,30,300,301,302,303,304,305,"
+ "306,307,308,309,31,310,311,312,313,314,315,316,317,318,319,32,320,321,322,323,324,325,326,327,"
+ "328,329,33,330,331,332,333,334,335,336,337,338,339,34,340,341,342,343,344,345,346,347,348,349,35,"
- + "350,351,352,353,354,355,356,357,358,359,36,360,361,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,"
- + "51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,"
- + "81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99,accent-color,accentColor,"
- + "align-content,align-items,align-self,alignContent,alignItems,alignSelf,all,animation,"
+ + "350,351,352,353,354,355,356,357,358,359,36,360,361,362,363,364,37,38,39,4,40,41,42,43,44,45,46,"
+ + "47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,"
+ + "77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99,accent-color,"
+ + "accentColor,align-content,align-items,align-self,alignContent,alignItems,alignSelf,all,animation,"
+ "animation-composition,animation-delay,animation-direction,animation-duration,animation-fill-mode,"
+ "animation-iteration-count,animation-name,animation-play-state,animation-timing-function,"
+ "animationComposition,animationDelay,animationDirection,animationDuration,animationFillMode,"
@@ -7089,37 +7102,38 @@ public void nodeListButtonLabels() throws Exception {
+ "flexGrow,flexShrink,flexWrap,float,flood-color,flood-opacity,floodColor,floodOpacity,font,"
+ "font-family,font-feature-settings,font-kerning,font-language-override,font-optical-sizing,"
+ "font-palette,font-size,font-size-adjust,font-stretch,font-style,font-synthesis,"
- + "font-synthesis-small-caps,font-synthesis-style,font-synthesis-weight,font-variant,"
- + "font-variant-alternates,font-variant-caps,font-variant-east-asian,font-variant-ligatures,"
- + "font-variant-numeric,font-variant-position,font-variation-settings,font-weight,fontFamily,"
- + "fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,fontPalette,fontSize,"
- + "fontSizeAdjust,fontStretch,fontStyle,fontSynthesis,fontSynthesisSmallCaps,fontSynthesisStyle,"
- + "fontSynthesisWeight,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariantEastAsian,"
- + "fontVariantLigatures,fontVariantNumeric,fontVariantPosition,fontVariationSettings,fontWeight,"
- + "forced-color-adjust,forcedColorAdjust,gap,getPropertyPriority(),getPropertyValue(),grid,"
- + "grid-area,grid-auto-columns,grid-auto-flow,grid-auto-rows,grid-column,grid-column-end,"
- + "grid-column-gap,grid-column-start,grid-gap,grid-row,grid-row-end,grid-row-gap,grid-row-start,"
- + "grid-template,grid-template-areas,grid-template-columns,grid-template-rows,gridArea,"
- + "gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,"
- + "gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,"
- + "gridTemplateColumns,gridTemplateRows,height,hyphenate-character,hyphenateCharacter,hyphens,"
- + "image-orientation,image-rendering,imageOrientation,imageRendering,ime-mode,imeMode,inline-size,"
- + "inlineSize,inset,inset-block,inset-block-end,inset-block-start,inset-inline,inset-inline-end,"
- + "inset-inline-start,insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,"
- + "insetInlineStart,isolation,item(),justify-content,justify-items,justify-self,justifyContent,"
- + "justifyItems,justifySelf,left,length,letter-spacing,letterSpacing,lighting-color,lightingColor,"
- + "line-break,line-height,lineBreak,lineHeight,list-style,list-style-image,list-style-position,"
- + "list-style-type,listStyle,listStyleImage,listStylePosition,listStyleType,margin,margin-block,"
- + "margin-block-end,margin-block-start,margin-bottom,margin-inline,margin-inline-end,"
- + "margin-inline-start,margin-left,margin-right,margin-top,marginBlock,marginBlockEnd,"
- + "marginBlockStart,marginBottom,marginInline,marginInlineEnd,marginInlineStart,marginLeft,"
- + "marginRight,marginTop,marker,marker-end,marker-mid,marker-start,markerEnd,markerMid,markerStart,"
- + "mask,mask-clip,mask-composite,mask-image,mask-mode,mask-origin,mask-position,mask-position-x,"
- + "mask-position-y,mask-repeat,mask-size,mask-type,maskClip,maskComposite,maskImage,maskMode,"
- + "maskOrigin,maskPosition,maskPositionX,maskPositionY,maskRepeat,maskSize,maskType,max-block-size,"
- + "max-height,max-inline-size,max-width,maxBlockSize,maxHeight,maxInlineSize,maxWidth,"
- + "min-block-size,min-height,min-inline-size,min-width,minBlockSize,minHeight,minInlineSize,"
- + "minWidth,mix-blend-mode,mixBlendMode,MozAnimation,MozAnimationDelay,MozAnimationDirection,"
+ + "font-synthesis-position,font-synthesis-small-caps,font-synthesis-style,font-synthesis-weight,"
+ + "font-variant,font-variant-alternates,font-variant-caps,font-variant-east-asian,"
+ + "font-variant-ligatures,font-variant-numeric,font-variant-position,font-variation-settings,"
+ + "font-weight,fontFamily,fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,"
+ + "fontPalette,fontSize,fontSizeAdjust,fontStretch,fontStyle,fontSynthesis,fontSynthesisPosition,"
+ + "fontSynthesisSmallCaps,fontSynthesisStyle,fontSynthesisWeight,fontVariant,fontVariantAlternates,"
+ + "fontVariantCaps,fontVariantEastAsian,fontVariantLigatures,fontVariantNumeric,fontVariantPosition,"
+ + "fontVariationSettings,fontWeight,forced-color-adjust,forcedColorAdjust,gap,getPropertyPriority(),"
+ + "getPropertyValue(),grid,grid-area,grid-auto-columns,grid-auto-flow,grid-auto-rows,grid-column,"
+ + "grid-column-end,grid-column-gap,grid-column-start,grid-gap,grid-row,grid-row-end,grid-row-gap,"
+ + "grid-row-start,grid-template,grid-template-areas,grid-template-columns,grid-template-rows,"
+ + "gridArea,gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,"
+ + "gridColumnStart,gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,"
+ + "gridTemplateAreas,gridTemplateColumns,gridTemplateRows,height,hyphenate-character,"
+ + "hyphenateCharacter,hyphens,image-orientation,image-rendering,imageOrientation,imageRendering,"
+ + "ime-mode,imeMode,inline-size,inlineSize,inset,inset-block,inset-block-end,inset-block-start,"
+ + "inset-inline,inset-inline-end,inset-inline-start,insetBlock,insetBlockEnd,insetBlockStart,"
+ + "insetInline,insetInlineEnd,insetInlineStart,isolation,item(),justify-content,justify-items,"
+ + "justify-self,justifyContent,justifyItems,justifySelf,left,length,letter-spacing,letterSpacing,"
+ + "lighting-color,lightingColor,line-break,line-height,lineBreak,lineHeight,list-style,"
+ + "list-style-image,list-style-position,list-style-type,listStyle,listStyleImage,listStylePosition,"
+ + "listStyleType,margin,margin-block,margin-block-end,margin-block-start,margin-bottom,"
+ + "margin-inline,margin-inline-end,margin-inline-start,margin-left,margin-right,margin-top,"
+ + "marginBlock,marginBlockEnd,marginBlockStart,marginBottom,marginInline,marginInlineEnd,"
+ + "marginInlineStart,marginLeft,marginRight,marginTop,marker,marker-end,marker-mid,marker-start,"
+ + "markerEnd,markerMid,markerStart,mask,mask-clip,mask-composite,mask-image,mask-mode,mask-origin,"
+ + "mask-position,mask-position-x,mask-position-y,mask-repeat,mask-size,mask-type,maskClip,"
+ + "maskComposite,maskImage,maskMode,maskOrigin,maskPosition,maskPositionX,maskPositionY,maskRepeat,"
+ + "maskSize,maskType,math-depth,math-style,mathDepth,mathStyle,max-block-size,max-height,"
+ + "max-inline-size,max-width,maxBlockSize,maxHeight,maxInlineSize,maxWidth,min-block-size,"
+ + "min-height,min-inline-size,min-width,minBlockSize,minHeight,minInlineSize,minWidth,"
+ + "mix-blend-mode,mixBlendMode,MozAnimation,MozAnimationDelay,MozAnimationDirection,"
+ "MozAnimationDuration,MozAnimationFillMode,MozAnimationIterationCount,MozAnimationName,"
+ "MozAnimationPlayState,MozAnimationTimingFunction,MozAppearance,MozBackfaceVisibility,"
+ "MozBorderEnd,MozBorderEndColor,MozBorderEndStyle,MozBorderEndWidth,MozBorderImage,MozBorderStart,"
@@ -7221,9 +7235,9 @@ public void nodeListButtonLabels() throws Exception {
+ "-moz-border-start-style,-moz-border-start-width,-moz-box-align,-moz-box-direction,-moz-box-flex,"
+ "-moz-box-ordinal-group,-moz-box-orient,-moz-box-pack,-moz-box-sizing,-moz-float-edge,"
+ "-moz-font-feature-settings,-moz-font-language-override,-moz-force-broken-image-icon,-moz-hyphens,"
- + "-moz-image-region,-moz-margin-end,-moz-margin-start,-moz-orient,-moz-padding-end,"
- + "-moz-padding-start,-moz-perspective,-moz-perspective-origin,-moz-tab-size,-moz-text-size-adjust,"
- + "-moz-transform,-moz-transform-origin,-moz-transform-style,-moz-transition,-moz-transition-delay,"
+ + "-moz-margin-end,-moz-margin-start,-moz-orient,-moz-padding-end,-moz-padding-start,"
+ + "-moz-perspective,-moz-perspective-origin,-moz-tab-size,-moz-text-size-adjust,-moz-transform,"
+ + "-moz-transform-origin,-moz-transform-style,-moz-transition,-moz-transition-delay,"
+ "-moz-transition-duration,-moz-transition-property,-moz-transition-timing-function,"
+ "-moz-user-focus,-moz-user-input,-moz-user-modify,-moz-user-select,-moz-window-dragging,"
+ "-webkit-align-content,-webkit-align-items,-webkit-align-self,-webkit-animation,"
@@ -7235,152 +7249,161 @@ public void nodeListButtonLabels() throws Exception {
+ "-webkit-border-image,-webkit-border-radius,-webkit-border-top-left-radius,"
+ "-webkit-border-top-right-radius,-webkit-box-align,-webkit-box-direction,-webkit-box-flex,"
+ "-webkit-box-ordinal-group,-webkit-box-orient,-webkit-box-pack,-webkit-box-shadow,"
- + "-webkit-box-sizing,-webkit-filter,-webkit-flex,-webkit-flex-basis,-webkit-flex-direction,"
- + "-webkit-flex-flow,-webkit-flex-grow,-webkit-flex-shrink,-webkit-flex-wrap,"
+ + "-webkit-box-sizing,-webkit-clip-path,-webkit-filter,-webkit-flex,-webkit-flex-basis,"
+ + "-webkit-flex-direction,-webkit-flex-flow,-webkit-flex-grow,-webkit-flex-shrink,-webkit-flex-wrap,"
+ "-webkit-justify-content,-webkit-line-clamp,-webkit-mask,-webkit-mask-clip,-webkit-mask-composite,"
+ "-webkit-mask-image,-webkit-mask-origin,-webkit-mask-position,-webkit-mask-position-x,"
+ "-webkit-mask-position-y,-webkit-mask-repeat,-webkit-mask-size,-webkit-order,-webkit-perspective,"
- + "-webkit-perspective-origin,-webkit-text-fill-color,-webkit-text-size-adjust,-webkit-text-stroke,"
- + "-webkit-text-stroke-color,-webkit-text-stroke-width,-webkit-transform,-webkit-transform-origin,"
- + "-webkit-transform-style,-webkit-transition,-webkit-transition-delay,-webkit-transition-duration,"
- + "-webkit-transition-property,-webkit-transition-timing-function,-webkit-user-select,0,1,10,100,"
- + "101,102,103,104,105,106,107,108,109,11,110,111,112,113,114,115,116,117,118,119,12,120,121,122,"
- + "123,124,125,126,127,128,129,13,130,131,132,133,134,135,136,137,138,139,14,140,141,142,143,144,"
- + "145,146,147,148,149,15,150,151,152,153,154,155,156,157,158,159,16,160,161,162,163,164,165,166,"
- + "167,168,169,17,170,171,172,173,174,175,176,177,178,179,18,180,181,182,183,184,185,186,187,188,"
- + "189,19,190,191,192,193,194,195,196,197,198,199,2,20,200,201,202,203,204,205,206,207,208,209,21,"
- + "210,211,212,213,214,215,216,217,218,219,22,220,221,222,223,224,225,226,227,228,229,23,230,231,"
- + "232,233,234,235,236,237,238,239,24,240,241,242,243,244,245,246,247,248,249,25,250,251,252,253,"
- + "254,255,256,257,258,259,26,260,261,262,263,264,265,266,267,268,269,27,270,271,272,273,274,275,"
- + "276,277,278,279,28,280,281,282,283,284,285,286,287,288,289,29,290,291,292,293,294,295,296,297,"
- + "298,299,3,30,300,301,302,303,304,305,306,307,308,309,31,310,311,312,313,314,315,316,317,318,319,"
- + "32,320,321,322,323,324,325,326,327,328,329,33,330,331,332,333,334,335,336,337,338,339,34,340,341,"
- + "342,343,344,345,346,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,"
- + "59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,"
- + "89,9,90,91,92,93,94,95,96,97,98,99,accent-color,accentColor,align-content,align-items,align-self,"
- + "alignContent,alignItems,alignSelf,all,animation,animation-delay,animation-direction,"
- + "animation-duration,animation-fill-mode,animation-iteration-count,animation-name,"
- + "animation-play-state,animation-timing-function,animationDelay,animationDirection,"
- + "animationDuration,animationFillMode,animationIterationCount,animationName,animationPlayState,"
- + "animationTimingFunction,appearance,aspect-ratio,aspectRatio,backface-visibility,"
- + "backfaceVisibility,background,background-attachment,background-blend-mode,background-clip,"
- + "background-color,background-image,background-origin,background-position,background-position-x,"
+ + "-webkit-perspective-origin,-webkit-text-fill-color,-webkit-text-security,"
+ + "-webkit-text-size-adjust,-webkit-text-stroke,-webkit-text-stroke-color,-webkit-text-stroke-width,"
+ + "-webkit-transform,-webkit-transform-origin,-webkit-transform-style,-webkit-transition,"
+ + "-webkit-transition-delay,-webkit-transition-duration,-webkit-transition-property,"
+ + "-webkit-transition-timing-function,-webkit-user-select,0,1,10,100,101,102,103,104,105,106,107,"
+ + "108,109,11,110,111,112,113,114,115,116,117,118,119,12,120,121,122,123,124,125,126,127,128,129,13,"
+ + "130,131,132,133,134,135,136,137,138,139,14,140,141,142,143,144,145,146,147,148,149,15,150,151,"
+ + "152,153,154,155,156,157,158,159,16,160,161,162,163,164,165,166,167,168,169,17,170,171,172,173,"
+ + "174,175,176,177,178,179,18,180,181,182,183,184,185,186,187,188,189,19,190,191,192,193,194,195,"
+ + "196,197,198,199,2,20,200,201,202,203,204,205,206,207,208,209,21,210,211,212,213,214,215,216,217,"
+ + "218,219,22,220,221,222,223,224,225,226,227,228,229,23,230,231,232,233,234,235,236,237,238,239,24,"
+ + "240,241,242,243,244,245,246,247,248,249,25,250,251,252,253,254,255,256,257,258,259,26,260,261,"
+ + "262,263,264,265,266,267,268,269,27,270,271,272,273,274,275,276,277,278,279,28,280,281,282,283,"
+ + "284,285,286,287,288,289,29,290,291,292,293,294,295,296,297,298,299,3,30,300,301,302,303,304,305,"
+ + "306,307,308,309,31,310,311,312,313,314,315,316,317,318,319,32,320,321,322,323,324,325,326,327,"
+ + "328,329,33,330,331,332,333,334,335,336,337,338,339,34,340,341,342,343,344,345,346,347,348,349,35,"
+ + "350,351,352,353,354,355,356,357,358,359,36,360,361,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,"
+ + "51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,"
+ + "81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99,accent-color,accentColor,"
+ + "align-content,align-items,align-self,alignContent,alignItems,alignSelf,all,animation,"
+ + "animation-composition,animation-delay,animation-direction,animation-duration,animation-fill-mode,"
+ + "animation-iteration-count,animation-name,animation-play-state,animation-timing-function,"
+ + "animationComposition,animationDelay,animationDirection,animationDuration,animationFillMode,"
+ + "animationIterationCount,animationName,animationPlayState,animationTimingFunction,appearance,"
+ + "aspect-ratio,aspectRatio,backdrop-filter,backdropFilter,backface-visibility,backfaceVisibility,"
+ + "background,background-attachment,background-blend-mode,background-clip,background-color,"
+ + "background-image,background-origin,background-position,background-position-x,"
+ "background-position-y,background-repeat,background-size,backgroundAttachment,backgroundBlendMode,"
+ "backgroundClip,backgroundColor,backgroundImage,backgroundOrigin,backgroundPosition,"
- + "backgroundPositionX,backgroundPositionY,backgroundRepeat,backgroundSize,block-size,blockSize,"
- + "border,border-block,border-block-color,border-block-end,border-block-end-color,"
- + "border-block-end-style,border-block-end-width,border-block-start,border-block-start-color,"
- + "border-block-start-style,border-block-start-width,border-block-style,border-block-width,"
- + "border-bottom,border-bottom-color,border-bottom-left-radius,border-bottom-right-radius,"
- + "border-bottom-style,border-bottom-width,border-collapse,border-color,border-end-end-radius,"
- + "border-end-start-radius,border-image,border-image-outset,border-image-repeat,border-image-slice,"
- + "border-image-source,border-image-width,border-inline,border-inline-color,border-inline-end,"
- + "border-inline-end-color,border-inline-end-style,border-inline-end-width,border-inline-start,"
- + "border-inline-start-color,border-inline-start-style,border-inline-start-width,"
- + "border-inline-style,border-inline-width,border-left,border-left-color,border-left-style,"
- + "border-left-width,border-radius,border-right,border-right-color,border-right-style,"
- + "border-right-width,border-spacing,border-start-end-radius,border-start-start-radius,border-style,"
- + "border-top,border-top-color,border-top-left-radius,border-top-right-radius,border-top-style,"
- + "border-top-width,border-width,borderBlock,borderBlockColor,borderBlockEnd,borderBlockEndColor,"
- + "borderBlockEndStyle,borderBlockEndWidth,borderBlockStart,borderBlockStartColor,"
- + "borderBlockStartStyle,borderBlockStartWidth,borderBlockStyle,borderBlockWidth,borderBottom,"
- + "borderBottomColor,borderBottomLeftRadius,borderBottomRightRadius,borderBottomStyle,"
- + "borderBottomWidth,borderCollapse,borderColor,borderEndEndRadius,borderEndStartRadius,borderImage,"
- + "borderImageOutset,borderImageRepeat,borderImageSlice,borderImageSource,borderImageWidth,"
- + "borderInline,borderInlineColor,borderInlineEnd,borderInlineEndColor,borderInlineEndStyle,"
- + "borderInlineEndWidth,borderInlineStart,borderInlineStartColor,borderInlineStartStyle,"
- + "borderInlineStartWidth,borderInlineStyle,borderInlineWidth,borderLeft,borderLeftColor,"
- + "borderLeftStyle,borderLeftWidth,borderRadius,borderRight,borderRightColor,borderRightStyle,"
- + "borderRightWidth,borderSpacing,borderStartEndRadius,borderStartStartRadius,borderStyle,borderTop,"
- + "borderTopColor,borderTopLeftRadius,borderTopRightRadius,borderTopStyle,borderTopWidth,"
- + "borderWidth,bottom,box-decoration-break,box-shadow,box-sizing,boxDecorationBreak,boxShadow,"
- + "boxSizing,break-after,break-before,break-inside,breakAfter,breakBefore,breakInside,caption-side,"
- + "captionSide,caret-color,caretColor,clear,clip,clip-path,clip-rule,clipPath,clipRule,color,"
- + "color-adjust,color-interpolation,color-interpolation-filters,color-scheme,colorAdjust,"
- + "colorInterpolation,colorInterpolationFilters,colorScheme,column-count,column-fill,column-gap,"
- + "column-rule,column-rule-color,column-rule-style,column-rule-width,column-span,column-width,"
- + "columnCount,columnFill,columnGap,columnRule,columnRuleColor,columnRuleStyle,columnRuleWidth,"
- + "columns,columnSpan,columnWidth,contain,content,counter-increment,counter-reset,counter-set,"
- + "counterIncrement,counterReset,counterSet,cssFloat,cssText,cursor,cx,cy,d,direction,display,"
- + "dominant-baseline,dominantBaseline,empty-cells,emptyCells,fill,fill-opacity,fill-rule,"
- + "fillOpacity,fillRule,filter,flex,flex-basis,flex-direction,flex-flow,flex-grow,flex-shrink,"
- + "flex-wrap,flexBasis,flexDirection,flexFlow,flexGrow,flexShrink,flexWrap,float,flood-color,"
- + "flood-opacity,floodColor,floodOpacity,font,font-family,font-feature-settings,font-kerning,"
- + "font-language-override,font-optical-sizing,font-size,font-size-adjust,font-stretch,font-style,"
- + "font-synthesis,font-variant,font-variant-alternates,font-variant-caps,font-variant-east-asian,"
- + "font-variant-ligatures,font-variant-numeric,font-variant-position,font-variation-settings,"
- + "font-weight,fontFamily,fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,"
- + "fontSize,fontSizeAdjust,fontStretch,fontStyle,fontSynthesis,fontVariant,fontVariantAlternates,"
- + "fontVariantCaps,fontVariantEastAsian,fontVariantLigatures,fontVariantNumeric,fontVariantPosition,"
- + "fontVariationSettings,fontWeight,gap,getPropertyPriority(),getPropertyValue(),grid,grid-area,"
- + "grid-auto-columns,grid-auto-flow,grid-auto-rows,grid-column,grid-column-end,grid-column-gap,"
- + "grid-column-start,grid-gap,grid-row,grid-row-end,grid-row-gap,grid-row-start,grid-template,"
- + "grid-template-areas,grid-template-columns,grid-template-rows,gridArea,gridAutoColumns,"
- + "gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,gridGap,gridRow,"
- + "gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,gridTemplateColumns,"
- + "gridTemplateRows,height,hyphenate-character,hyphenateCharacter,hyphens,image-orientation,"
- + "image-rendering,imageOrientation,imageRendering,ime-mode,imeMode,inline-size,inlineSize,inset,"
- + "inset-block,inset-block-end,inset-block-start,inset-inline,inset-inline-end,inset-inline-start,"
- + "insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,insetInlineStart,isolation,"
- + "item(),justify-content,justify-items,justify-self,justifyContent,justifyItems,justifySelf,left,"
- + "length,letter-spacing,letterSpacing,lighting-color,lightingColor,line-break,line-height,"
- + "lineBreak,lineHeight,list-style,list-style-image,list-style-position,list-style-type,listStyle,"
- + "listStyleImage,listStylePosition,listStyleType,margin,margin-block,margin-block-end,"
- + "margin-block-start,margin-bottom,margin-inline,margin-inline-end,margin-inline-start,margin-left,"
- + "margin-right,margin-top,marginBlock,marginBlockEnd,marginBlockStart,marginBottom,marginInline,"
- + "marginInlineEnd,marginInlineStart,marginLeft,marginRight,marginTop,marker,marker-end,marker-mid,"
- + "marker-start,markerEnd,markerMid,markerStart,mask,mask-clip,mask-composite,mask-image,mask-mode,"
- + "mask-origin,mask-position,mask-position-x,mask-position-y,mask-repeat,mask-size,mask-type,"
- + "maskClip,maskComposite,maskImage,maskMode,maskOrigin,maskPosition,maskPositionX,maskPositionY,"
- + "maskRepeat,maskSize,maskType,max-block-size,max-height,max-inline-size,max-width,maxBlockSize,"
- + "maxHeight,maxInlineSize,maxWidth,min-block-size,min-height,min-inline-size,min-width,"
- + "minBlockSize,minHeight,minInlineSize,minWidth,mix-blend-mode,mixBlendMode,MozAnimation,"
- + "MozAnimationDelay,MozAnimationDirection,MozAnimationDuration,MozAnimationFillMode,"
- + "MozAnimationIterationCount,MozAnimationName,MozAnimationPlayState,MozAnimationTimingFunction,"
- + "MozAppearance,MozBackfaceVisibility,MozBorderEnd,MozBorderEndColor,MozBorderEndStyle,"
- + "MozBorderEndWidth,MozBorderImage,MozBorderStart,MozBorderStartColor,MozBorderStartStyle,"
- + "MozBorderStartWidth,MozBoxAlign,MozBoxDirection,MozBoxFlex,MozBoxOrdinalGroup,MozBoxOrient,"
- + "MozBoxPack,MozBoxSizing,MozFloatEdge,MozFontFeatureSettings,MozFontLanguageOverride,"
- + "MozForceBrokenImageIcon,MozHyphens,MozImageRegion,MozMarginEnd,MozMarginStart,MozOrient,"
- + "MozPaddingEnd,MozPaddingStart,MozPerspective,MozPerspectiveOrigin,MozTabSize,MozTextSizeAdjust,"
- + "MozTransform,MozTransformOrigin,MozTransformStyle,MozTransition,MozTransitionDelay,"
- + "MozTransitionDuration,MozTransitionProperty,MozTransitionTimingFunction,MozUserFocus,"
- + "MozUserInput,MozUserModify,MozUserSelect,MozWindowDragging,object-fit,object-position,objectFit,"
- + "objectPosition,offset,offset-anchor,offset-distance,offset-path,offset-rotate,offsetAnchor,"
- + "offsetDistance,offsetPath,offsetRotate,opacity,order,outline,outline-color,outline-offset,"
- + "outline-style,outline-width,outlineColor,outlineOffset,outlineStyle,outlineWidth,overflow,"
- + "overflow-anchor,overflow-block,overflow-clip-margin,overflow-inline,overflow-wrap,overflow-x,"
- + "overflow-y,overflowAnchor,overflowBlock,overflowClipMargin,overflowInline,overflowWrap,overflowX,"
- + "overflowY,overscroll-behavior,overscroll-behavior-block,overscroll-behavior-inline,"
- + "overscroll-behavior-x,overscroll-behavior-y,overscrollBehavior,overscrollBehaviorBlock,"
- + "overscrollBehaviorInline,overscrollBehaviorX,overscrollBehaviorY,padding,padding-block,"
- + "padding-block-end,padding-block-start,padding-bottom,padding-inline,padding-inline-end,"
- + "padding-inline-start,padding-left,padding-right,padding-top,paddingBlock,paddingBlockEnd,"
- + "paddingBlockStart,paddingBottom,paddingInline,paddingInlineEnd,paddingInlineStart,paddingLeft,"
- + "paddingRight,paddingTop,page-break-after,page-break-before,page-break-inside,pageBreakAfter,"
- + "pageBreakBefore,pageBreakInside,paint-order,paintOrder,parentRule,perspective,perspective-origin,"
- + "perspectiveOrigin,place-content,place-items,place-self,placeContent,placeItems,placeSelf,"
- + "pointer-events,pointerEvents,position,print-color-adjust,printColorAdjust,quotes,r,"
- + "removeProperty(),resize,right,rotate,row-gap,rowGap,ruby-align,ruby-position,rubyAlign,"
- + "rubyPosition,rx,ry,scale,scroll-behavior,scroll-margin,scroll-margin-block,"
- + "scroll-margin-block-end,scroll-margin-block-start,scroll-margin-bottom,scroll-margin-inline,"
- + "scroll-margin-inline-end,scroll-margin-inline-start,scroll-margin-left,scroll-margin-right,"
- + "scroll-margin-top,scroll-padding,scroll-padding-block,scroll-padding-block-end,"
- + "scroll-padding-block-start,scroll-padding-bottom,scroll-padding-inline,scroll-padding-inline-end,"
- + "scroll-padding-inline-start,scroll-padding-left,scroll-padding-right,scroll-padding-top,"
- + "scroll-snap-align,scroll-snap-type,scrollbar-color,scrollbar-gutter,scrollbar-width,"
- + "scrollbarColor,scrollbarGutter,scrollbarWidth,scrollBehavior,scrollMargin,scrollMarginBlock,"
- + "scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginBottom,scrollMarginInline,"
- + "scrollMarginInlineEnd,scrollMarginInlineStart,scrollMarginLeft,scrollMarginRight,scrollMarginTop,"
- + "scrollPadding,scrollPaddingBlock,scrollPaddingBlockEnd,scrollPaddingBlockStart,"
- + "scrollPaddingBottom,scrollPaddingInline,scrollPaddingInlineEnd,scrollPaddingInlineStart,"
- + "scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollSnapAlign,scrollSnapType,"
- + "setProperty(),shape-image-threshold,shape-margin,shape-outside,shape-rendering,"
- + "shapeImageThreshold,shapeMargin,shapeOutside,shapeRendering,stop-color,stop-opacity,stopColor,"
- + "stopOpacity,stroke,stroke-dasharray,stroke-dashoffset,stroke-linecap,stroke-linejoin,"
- + "stroke-miterlimit,stroke-opacity,stroke-width,strokeDasharray,strokeDashoffset,strokeLinecap,"
- + "strokeLinejoin,strokeMiterlimit,strokeOpacity,strokeWidth,tab-size,table-layout,tableLayout,"
- + "tabSize,text-align,text-align-last,text-anchor,text-combine-upright,text-decoration,"
+ + "backgroundPositionX,backgroundPositionY,backgroundRepeat,backgroundSize,baseline-source,"
+ + "baselineSource,block-size,blockSize,border,border-block,border-block-color,border-block-end,"
+ + "border-block-end-color,border-block-end-style,border-block-end-width,border-block-start,"
+ + "border-block-start-color,border-block-start-style,border-block-start-width,border-block-style,"
+ + "border-block-width,border-bottom,border-bottom-color,border-bottom-left-radius,"
+ + "border-bottom-right-radius,border-bottom-style,border-bottom-width,border-collapse,border-color,"
+ + "border-end-end-radius,border-end-start-radius,border-image,border-image-outset,"
+ + "border-image-repeat,border-image-slice,border-image-source,border-image-width,border-inline,"
+ + "border-inline-color,border-inline-end,border-inline-end-color,border-inline-end-style,"
+ + "border-inline-end-width,border-inline-start,border-inline-start-color,border-inline-start-style,"
+ + "border-inline-start-width,border-inline-style,border-inline-width,border-left,border-left-color,"
+ + "border-left-style,border-left-width,border-radius,border-right,border-right-color,"
+ + "border-right-style,border-right-width,border-spacing,border-start-end-radius,"
+ + "border-start-start-radius,border-style,border-top,border-top-color,border-top-left-radius,"
+ + "border-top-right-radius,border-top-style,border-top-width,border-width,borderBlock,"
+ + "borderBlockColor,borderBlockEnd,borderBlockEndColor,borderBlockEndStyle,borderBlockEndWidth,"
+ + "borderBlockStart,borderBlockStartColor,borderBlockStartStyle,borderBlockStartWidth,"
+ + "borderBlockStyle,borderBlockWidth,borderBottom,borderBottomColor,borderBottomLeftRadius,"
+ + "borderBottomRightRadius,borderBottomStyle,borderBottomWidth,borderCollapse,borderColor,"
+ + "borderEndEndRadius,borderEndStartRadius,borderImage,borderImageOutset,borderImageRepeat,"
+ + "borderImageSlice,borderImageSource,borderImageWidth,borderInline,borderInlineColor,"
+ + "borderInlineEnd,borderInlineEndColor,borderInlineEndStyle,borderInlineEndWidth,borderInlineStart,"
+ + "borderInlineStartColor,borderInlineStartStyle,borderInlineStartWidth,borderInlineStyle,"
+ + "borderInlineWidth,borderLeft,borderLeftColor,borderLeftStyle,borderLeftWidth,borderRadius,"
+ + "borderRight,borderRightColor,borderRightStyle,borderRightWidth,borderSpacing,"
+ + "borderStartEndRadius,borderStartStartRadius,borderStyle,borderTop,borderTopColor,"
+ + "borderTopLeftRadius,borderTopRightRadius,borderTopStyle,borderTopWidth,borderWidth,bottom,"
+ + "box-decoration-break,box-shadow,box-sizing,boxDecorationBreak,boxShadow,boxSizing,break-after,"
+ + "break-before,break-inside,breakAfter,breakBefore,breakInside,caption-side,captionSide,"
+ + "caret-color,caretColor,clear,clip,clip-path,clip-rule,clipPath,clipRule,color,color-adjust,"
+ + "color-interpolation,color-interpolation-filters,color-scheme,colorAdjust,colorInterpolation,"
+ + "colorInterpolationFilters,colorScheme,column-count,column-fill,column-gap,column-rule,"
+ + "column-rule-color,column-rule-style,column-rule-width,column-span,column-width,columnCount,"
+ + "columnFill,columnGap,columnRule,columnRuleColor,columnRuleStyle,columnRuleWidth,columns,"
+ + "columnSpan,columnWidth,contain,contain-intrinsic-block-size,contain-intrinsic-height,"
+ + "contain-intrinsic-inline-size,contain-intrinsic-size,contain-intrinsic-width,container,"
+ + "container-name,container-type,containerName,containerType,containIntrinsicBlockSize,"
+ + "containIntrinsicHeight,containIntrinsicInlineSize,containIntrinsicSize,containIntrinsicWidth,"
+ + "content,counter-increment,counter-reset,counter-set,counterIncrement,counterReset,counterSet,"
+ + "cssFloat,cssText,cursor,cx,cy,d,direction,display,dominant-baseline,dominantBaseline,empty-cells,"
+ + "emptyCells,fill,fill-opacity,fill-rule,fillOpacity,fillRule,filter,flex,flex-basis,"
+ + "flex-direction,flex-flow,flex-grow,flex-shrink,flex-wrap,flexBasis,flexDirection,flexFlow,"
+ + "flexGrow,flexShrink,flexWrap,float,flood-color,flood-opacity,floodColor,floodOpacity,font,"
+ + "font-family,font-feature-settings,font-kerning,font-language-override,font-optical-sizing,"
+ + "font-palette,font-size,font-size-adjust,font-stretch,font-style,font-synthesis,"
+ + "font-synthesis-small-caps,font-synthesis-style,font-synthesis-weight,font-variant,"
+ + "font-variant-alternates,font-variant-caps,font-variant-east-asian,font-variant-ligatures,"
+ + "font-variant-numeric,font-variant-position,font-variation-settings,font-weight,fontFamily,"
+ + "fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,fontPalette,fontSize,"
+ + "fontSizeAdjust,fontStretch,fontStyle,fontSynthesis,fontSynthesisSmallCaps,fontSynthesisStyle,"
+ + "fontSynthesisWeight,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariantEastAsian,"
+ + "fontVariantLigatures,fontVariantNumeric,fontVariantPosition,fontVariationSettings,fontWeight,"
+ + "forced-color-adjust,forcedColorAdjust,gap,getPropertyPriority(),getPropertyValue(),grid,"
+ + "grid-area,grid-auto-columns,grid-auto-flow,grid-auto-rows,grid-column,grid-column-end,"
+ + "grid-column-gap,grid-column-start,grid-gap,grid-row,grid-row-end,grid-row-gap,grid-row-start,"
+ + "grid-template,grid-template-areas,grid-template-columns,grid-template-rows,gridArea,"
+ + "gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,"
+ + "gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,"
+ + "gridTemplateColumns,gridTemplateRows,height,hyphenate-character,hyphenateCharacter,hyphens,"
+ + "image-orientation,image-rendering,imageOrientation,imageRendering,ime-mode,imeMode,inline-size,"
+ + "inlineSize,inset,inset-block,inset-block-end,inset-block-start,inset-inline,inset-inline-end,"
+ + "inset-inline-start,insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,"
+ + "insetInlineStart,isolation,item(),justify-content,justify-items,justify-self,justifyContent,"
+ + "justifyItems,justifySelf,left,length,letter-spacing,letterSpacing,lighting-color,lightingColor,"
+ + "line-break,line-height,lineBreak,lineHeight,list-style,list-style-image,list-style-position,"
+ + "list-style-type,listStyle,listStyleImage,listStylePosition,listStyleType,margin,margin-block,"
+ + "margin-block-end,margin-block-start,margin-bottom,margin-inline,margin-inline-end,"
+ + "margin-inline-start,margin-left,margin-right,margin-top,marginBlock,marginBlockEnd,"
+ + "marginBlockStart,marginBottom,marginInline,marginInlineEnd,marginInlineStart,marginLeft,"
+ + "marginRight,marginTop,marker,marker-end,marker-mid,marker-start,markerEnd,markerMid,markerStart,"
+ + "mask,mask-clip,mask-composite,mask-image,mask-mode,mask-origin,mask-position,mask-position-x,"
+ + "mask-position-y,mask-repeat,mask-size,mask-type,maskClip,maskComposite,maskImage,maskMode,"
+ + "maskOrigin,maskPosition,maskPositionX,maskPositionY,maskRepeat,maskSize,maskType,max-block-size,"
+ + "max-height,max-inline-size,max-width,maxBlockSize,maxHeight,maxInlineSize,maxWidth,"
+ + "min-block-size,min-height,min-inline-size,min-width,minBlockSize,minHeight,minInlineSize,"
+ + "minWidth,mix-blend-mode,mixBlendMode,MozAnimation,MozAnimationDelay,MozAnimationDirection,"
+ + "MozAnimationDuration,MozAnimationFillMode,MozAnimationIterationCount,MozAnimationName,"
+ + "MozAnimationPlayState,MozAnimationTimingFunction,MozAppearance,MozBackfaceVisibility,"
+ + "MozBorderEnd,MozBorderEndColor,MozBorderEndStyle,MozBorderEndWidth,MozBorderImage,MozBorderStart,"
+ + "MozBorderStartColor,MozBorderStartStyle,MozBorderStartWidth,MozBoxAlign,MozBoxDirection,"
+ + "MozBoxFlex,MozBoxOrdinalGroup,MozBoxOrient,MozBoxPack,MozBoxSizing,MozFloatEdge,"
+ + "MozFontFeatureSettings,MozFontLanguageOverride,MozForceBrokenImageIcon,MozHyphens,MozMarginEnd,"
+ + "MozMarginStart,MozOrient,MozPaddingEnd,MozPaddingStart,MozPerspective,MozPerspectiveOrigin,"
+ + "MozTabSize,MozTextSizeAdjust,MozTransform,MozTransformOrigin,MozTransformStyle,MozTransition,"
+ + "MozTransitionDelay,MozTransitionDuration,MozTransitionProperty,MozTransitionTimingFunction,"
+ + "MozUserFocus,MozUserInput,MozUserModify,MozUserSelect,MozWindowDragging,object-fit,"
+ + "object-position,objectFit,objectPosition,offset,offset-anchor,offset-distance,offset-path,"
+ + "offset-rotate,offsetAnchor,offsetDistance,offsetPath,offsetRotate,opacity,order,outline,"
+ + "outline-color,outline-offset,outline-style,outline-width,outlineColor,outlineOffset,outlineStyle,"
+ + "outlineWidth,overflow,overflow-anchor,overflow-block,overflow-clip-margin,overflow-inline,"
+ + "overflow-wrap,overflow-x,overflow-y,overflowAnchor,overflowBlock,overflowClipMargin,"
+ + "overflowInline,overflowWrap,overflowX,overflowY,overscroll-behavior,overscroll-behavior-block,"
+ + "overscroll-behavior-inline,overscroll-behavior-x,overscroll-behavior-y,overscrollBehavior,"
+ + "overscrollBehaviorBlock,overscrollBehaviorInline,overscrollBehaviorX,overscrollBehaviorY,padding,"
+ + "padding-block,padding-block-end,padding-block-start,padding-bottom,padding-inline,"
+ + "padding-inline-end,padding-inline-start,padding-left,padding-right,padding-top,paddingBlock,"
+ + "paddingBlockEnd,paddingBlockStart,paddingBottom,paddingInline,paddingInlineEnd,"
+ + "paddingInlineStart,paddingLeft,paddingRight,paddingTop,page,page-break-after,page-break-before,"
+ + "page-break-inside,pageBreakAfter,pageBreakBefore,pageBreakInside,paint-order,paintOrder,"
+ + "parentRule,perspective,perspective-origin,perspectiveOrigin,place-content,place-items,place-self,"
+ + "placeContent,placeItems,placeSelf,pointer-events,pointerEvents,position,print-color-adjust,"
+ + "printColorAdjust,quotes,r,removeProperty(),resize,right,rotate,row-gap,rowGap,ruby-align,"
+ + "ruby-position,rubyAlign,rubyPosition,rx,ry,scale,scroll-behavior,scroll-margin,"
+ + "scroll-margin-block,scroll-margin-block-end,scroll-margin-block-start,scroll-margin-bottom,"
+ + "scroll-margin-inline,scroll-margin-inline-end,scroll-margin-inline-start,scroll-margin-left,"
+ + "scroll-margin-right,scroll-margin-top,scroll-padding,scroll-padding-block,"
+ + "scroll-padding-block-end,scroll-padding-block-start,scroll-padding-bottom,scroll-padding-inline,"
+ + "scroll-padding-inline-end,scroll-padding-inline-start,scroll-padding-left,scroll-padding-right,"
+ + "scroll-padding-top,scroll-snap-align,scroll-snap-stop,scroll-snap-type,scrollbar-color,"
+ + "scrollbar-gutter,scrollbar-width,scrollbarColor,scrollbarGutter,scrollbarWidth,scrollBehavior,"
+ + "scrollMargin,scrollMarginBlock,scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginBottom,"
+ + "scrollMarginInline,scrollMarginInlineEnd,scrollMarginInlineStart,scrollMarginLeft,"
+ + "scrollMarginRight,scrollMarginTop,scrollPadding,scrollPaddingBlock,scrollPaddingBlockEnd,"
+ + "scrollPaddingBlockStart,scrollPaddingBottom,scrollPaddingInline,scrollPaddingInlineEnd,"
+ + "scrollPaddingInlineStart,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollSnapAlign,"
+ + "scrollSnapStop,scrollSnapType,setProperty(),shape-image-threshold,shape-margin,shape-outside,"
+ + "shape-rendering,shapeImageThreshold,shapeMargin,shapeOutside,shapeRendering,stop-color,"
+ + "stop-opacity,stopColor,stopOpacity,stroke,stroke-dasharray,stroke-dashoffset,stroke-linecap,"
+ + "stroke-linejoin,stroke-miterlimit,stroke-opacity,stroke-width,strokeDasharray,strokeDashoffset,"
+ + "strokeLinecap,strokeLinejoin,strokeMiterlimit,strokeOpacity,strokeWidth,tab-size,table-layout,"
+ + "tableLayout,tabSize,text-align,text-align-last,text-anchor,text-combine-upright,text-decoration,"
+ "text-decoration-color,text-decoration-line,text-decoration-skip-ink,text-decoration-style,"
+ "text-decoration-thickness,text-emphasis,text-emphasis-color,text-emphasis-position,"
+ "text-emphasis-style,text-indent,text-justify,text-orientation,text-overflow,text-rendering,"
@@ -7409,19 +7432,20 @@ public void nodeListButtonLabels() throws Exception {
+ "WebkitBorderTopRightRadius,webkitBorderTopRightRadius,WebkitBoxAlign,webkitBoxAlign,"
+ "WebkitBoxDirection,webkitBoxDirection,WebkitBoxFlex,webkitBoxFlex,WebkitBoxOrdinalGroup,"
+ "webkitBoxOrdinalGroup,WebkitBoxOrient,webkitBoxOrient,WebkitBoxPack,webkitBoxPack,"
- + "WebkitBoxShadow,webkitBoxShadow,WebkitBoxSizing,webkitBoxSizing,WebkitFilter,webkitFilter,"
- + "WebkitFlex,webkitFlex,WebkitFlexBasis,webkitFlexBasis,WebkitFlexDirection,webkitFlexDirection,"
- + "WebkitFlexFlow,webkitFlexFlow,WebkitFlexGrow,webkitFlexGrow,WebkitFlexShrink,webkitFlexShrink,"
- + "WebkitFlexWrap,webkitFlexWrap,WebkitJustifyContent,webkitJustifyContent,WebkitLineClamp,"
- + "webkitLineClamp,WebkitMask,webkitMask,WebkitMaskClip,webkitMaskClip,WebkitMaskComposite,"
- + "webkitMaskComposite,WebkitMaskImage,webkitMaskImage,WebkitMaskOrigin,webkitMaskOrigin,"
- + "WebkitMaskPosition,webkitMaskPosition,WebkitMaskPositionX,webkitMaskPositionX,"
- + "WebkitMaskPositionY,webkitMaskPositionY,WebkitMaskRepeat,webkitMaskRepeat,WebkitMaskSize,"
- + "webkitMaskSize,WebkitOrder,webkitOrder,WebkitPerspective,webkitPerspective,"
- + "WebkitPerspectiveOrigin,webkitPerspectiveOrigin,WebkitTextFillColor,webkitTextFillColor,"
- + "WebkitTextSizeAdjust,webkitTextSizeAdjust,WebkitTextStroke,webkitTextStroke,"
- + "WebkitTextStrokeColor,webkitTextStrokeColor,WebkitTextStrokeWidth,webkitTextStrokeWidth,"
- + "WebkitTransform,webkitTransform,WebkitTransformOrigin,webkitTransformOrigin,WebkitTransformStyle,"
+ + "WebkitBoxShadow,webkitBoxShadow,WebkitBoxSizing,webkitBoxSizing,WebkitClipPath,webkitClipPath,"
+ + "WebkitFilter,webkitFilter,WebkitFlex,webkitFlex,WebkitFlexBasis,webkitFlexBasis,"
+ + "WebkitFlexDirection,webkitFlexDirection,WebkitFlexFlow,webkitFlexFlow,WebkitFlexGrow,"
+ + "webkitFlexGrow,WebkitFlexShrink,webkitFlexShrink,WebkitFlexWrap,webkitFlexWrap,"
+ + "WebkitJustifyContent,webkitJustifyContent,WebkitLineClamp,webkitLineClamp,WebkitMask,webkitMask,"
+ + "WebkitMaskClip,webkitMaskClip,WebkitMaskComposite,webkitMaskComposite,WebkitMaskImage,"
+ + "webkitMaskImage,WebkitMaskOrigin,webkitMaskOrigin,WebkitMaskPosition,webkitMaskPosition,"
+ + "WebkitMaskPositionX,webkitMaskPositionX,WebkitMaskPositionY,webkitMaskPositionY,WebkitMaskRepeat,"
+ + "webkitMaskRepeat,WebkitMaskSize,webkitMaskSize,WebkitOrder,webkitOrder,WebkitPerspective,"
+ + "webkitPerspective,WebkitPerspectiveOrigin,webkitPerspectiveOrigin,WebkitTextFillColor,"
+ + "webkitTextFillColor,WebkitTextSecurity,webkitTextSecurity,WebkitTextSizeAdjust,"
+ + "webkitTextSizeAdjust,WebkitTextStroke,webkitTextStroke,WebkitTextStrokeColor,"
+ + "webkitTextStrokeColor,WebkitTextStrokeWidth,webkitTextStrokeWidth,WebkitTransform,"
+ + "webkitTransform,WebkitTransformOrigin,webkitTransformOrigin,WebkitTransformStyle,"
+ "webkitTransformStyle,WebkitTransition,webkitTransition,WebkitTransitionDelay,"
+ "webkitTransitionDelay,WebkitTransitionDuration,webkitTransitionDuration,WebkitTransitionProperty,"
+ "webkitTransitionProperty,WebkitTransitionTimingFunction,webkitTransitionTimingFunction,"
@@ -8529,37 +8553,38 @@ public void computedStyle() throws Exception {
+ "flexGrow,flexShrink,flexWrap,float,flood-color,flood-opacity,floodColor,floodOpacity,font,"
+ "font-family,font-feature-settings,font-kerning,font-language-override,font-optical-sizing,"
+ "font-palette,font-size,font-size-adjust,font-stretch,font-style,font-synthesis,"
- + "font-synthesis-small-caps,font-synthesis-style,font-synthesis-weight,font-variant,"
- + "font-variant-alternates,font-variant-caps,font-variant-east-asian,font-variant-ligatures,"
- + "font-variant-numeric,font-variant-position,font-variation-settings,font-weight,fontFamily,"
- + "fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,fontPalette,fontSize,"
- + "fontSizeAdjust,fontStretch,fontStyle,fontSynthesis,fontSynthesisSmallCaps,fontSynthesisStyle,"
- + "fontSynthesisWeight,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariantEastAsian,"
- + "fontVariantLigatures,fontVariantNumeric,fontVariantPosition,fontVariationSettings,fontWeight,"
- + "forced-color-adjust,forcedColorAdjust,gap,getPropertyPriority(),getPropertyValue(),grid,"
- + "grid-area,grid-auto-columns,grid-auto-flow,grid-auto-rows,grid-column,grid-column-end,"
- + "grid-column-gap,grid-column-start,grid-gap,grid-row,grid-row-end,grid-row-gap,grid-row-start,"
- + "grid-template,grid-template-areas,grid-template-columns,grid-template-rows,gridArea,"
- + "gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,"
- + "gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,"
- + "gridTemplateColumns,gridTemplateRows,height,hyphenate-character,hyphenateCharacter,hyphens,"
- + "image-orientation,image-rendering,imageOrientation,imageRendering,ime-mode,imeMode,inline-size,"
- + "inlineSize,inset,inset-block,inset-block-end,inset-block-start,inset-inline,inset-inline-end,"
- + "inset-inline-start,insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,"
- + "insetInlineStart,isolation,item(),justify-content,justify-items,justify-self,justifyContent,"
- + "justifyItems,justifySelf,left,length,letter-spacing,letterSpacing,lighting-color,lightingColor,"
- + "line-break,line-height,lineBreak,lineHeight,list-style,list-style-image,list-style-position,"
- + "list-style-type,listStyle,listStyleImage,listStylePosition,listStyleType,margin,margin-block,"
- + "margin-block-end,margin-block-start,margin-bottom,margin-inline,margin-inline-end,"
- + "margin-inline-start,margin-left,margin-right,margin-top,marginBlock,marginBlockEnd,"
- + "marginBlockStart,marginBottom,marginInline,marginInlineEnd,marginInlineStart,marginLeft,"
- + "marginRight,marginTop,marker,marker-end,marker-mid,marker-start,markerEnd,markerMid,markerStart,"
- + "mask,mask-clip,mask-composite,mask-image,mask-mode,mask-origin,mask-position,mask-position-x,"
- + "mask-position-y,mask-repeat,mask-size,mask-type,maskClip,maskComposite,maskImage,maskMode,"
- + "maskOrigin,maskPosition,maskPositionX,maskPositionY,maskRepeat,maskSize,maskType,max-block-size,"
- + "max-height,max-inline-size,max-width,maxBlockSize,maxHeight,maxInlineSize,maxWidth,"
- + "min-block-size,min-height,min-inline-size,min-width,minBlockSize,minHeight,minInlineSize,"
- + "minWidth,mix-blend-mode,mixBlendMode,MozAnimation,MozAnimationDelay,MozAnimationDirection,"
+ + "font-synthesis-position,font-synthesis-small-caps,font-synthesis-style,font-synthesis-weight,"
+ + "font-variant,font-variant-alternates,font-variant-caps,font-variant-east-asian,"
+ + "font-variant-ligatures,font-variant-numeric,font-variant-position,font-variation-settings,"
+ + "font-weight,fontFamily,fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,"
+ + "fontPalette,fontSize,fontSizeAdjust,fontStretch,fontStyle,fontSynthesis,fontSynthesisPosition,"
+ + "fontSynthesisSmallCaps,fontSynthesisStyle,fontSynthesisWeight,fontVariant,fontVariantAlternates,"
+ + "fontVariantCaps,fontVariantEastAsian,fontVariantLigatures,fontVariantNumeric,fontVariantPosition,"
+ + "fontVariationSettings,fontWeight,forced-color-adjust,forcedColorAdjust,gap,getPropertyPriority(),"
+ + "getPropertyValue(),grid,grid-area,grid-auto-columns,grid-auto-flow,grid-auto-rows,grid-column,"
+ + "grid-column-end,grid-column-gap,grid-column-start,grid-gap,grid-row,grid-row-end,grid-row-gap,"
+ + "grid-row-start,grid-template,grid-template-areas,grid-template-columns,grid-template-rows,"
+ + "gridArea,gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,"
+ + "gridColumnStart,gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,"
+ + "gridTemplateAreas,gridTemplateColumns,gridTemplateRows,height,hyphenate-character,"
+ + "hyphenateCharacter,hyphens,image-orientation,image-rendering,imageOrientation,imageRendering,"
+ + "ime-mode,imeMode,inline-size,inlineSize,inset,inset-block,inset-block-end,inset-block-start,"
+ + "inset-inline,inset-inline-end,inset-inline-start,insetBlock,insetBlockEnd,insetBlockStart,"
+ + "insetInline,insetInlineEnd,insetInlineStart,isolation,item(),justify-content,justify-items,"
+ + "justify-self,justifyContent,justifyItems,justifySelf,left,length,letter-spacing,letterSpacing,"
+ + "lighting-color,lightingColor,line-break,line-height,lineBreak,lineHeight,list-style,"
+ + "list-style-image,list-style-position,list-style-type,listStyle,listStyleImage,listStylePosition,"
+ + "listStyleType,margin,margin-block,margin-block-end,margin-block-start,margin-bottom,"
+ + "margin-inline,margin-inline-end,margin-inline-start,margin-left,margin-right,margin-top,"
+ + "marginBlock,marginBlockEnd,marginBlockStart,marginBottom,marginInline,marginInlineEnd,"
+ + "marginInlineStart,marginLeft,marginRight,marginTop,marker,marker-end,marker-mid,marker-start,"
+ + "markerEnd,markerMid,markerStart,mask,mask-clip,mask-composite,mask-image,mask-mode,mask-origin,"
+ + "mask-position,mask-position-x,mask-position-y,mask-repeat,mask-size,mask-type,maskClip,"
+ + "maskComposite,maskImage,maskMode,maskOrigin,maskPosition,maskPositionX,maskPositionY,maskRepeat,"
+ + "maskSize,maskType,math-depth,math-style,mathDepth,mathStyle,max-block-size,max-height,"
+ + "max-inline-size,max-width,maxBlockSize,maxHeight,maxInlineSize,maxWidth,min-block-size,"
+ + "min-height,min-inline-size,min-width,minBlockSize,minHeight,minInlineSize,minWidth,"
+ + "mix-blend-mode,mixBlendMode,MozAnimation,MozAnimationDelay,MozAnimationDirection,"
+ "MozAnimationDuration,MozAnimationFillMode,MozAnimationIterationCount,MozAnimationName,"
+ "MozAnimationPlayState,MozAnimationTimingFunction,MozAppearance,MozBackfaceVisibility,"
+ "MozBorderEnd,MozBorderEndColor,MozBorderEndStyle,MozBorderEndWidth,MozBorderImage,MozBorderStart,"
@@ -8661,9 +8686,9 @@ public void computedStyle() throws Exception {
+ "-moz-border-start-style,-moz-border-start-width,-moz-box-align,-moz-box-direction,-moz-box-flex,"
+ "-moz-box-ordinal-group,-moz-box-orient,-moz-box-pack,-moz-box-sizing,-moz-float-edge,"
+ "-moz-font-feature-settings,-moz-font-language-override,-moz-force-broken-image-icon,-moz-hyphens,"
- + "-moz-image-region,-moz-margin-end,-moz-margin-start,-moz-orient,-moz-padding-end,"
- + "-moz-padding-start,-moz-perspective,-moz-perspective-origin,-moz-tab-size,-moz-text-size-adjust,"
- + "-moz-transform,-moz-transform-origin,-moz-transform-style,-moz-transition,-moz-transition-delay,"
+ + "-moz-margin-end,-moz-margin-start,-moz-orient,-moz-padding-end,-moz-padding-start,"
+ + "-moz-perspective,-moz-perspective-origin,-moz-tab-size,-moz-text-size-adjust,-moz-transform,"
+ + "-moz-transform-origin,-moz-transform-style,-moz-transition,-moz-transition-delay,"
+ "-moz-transition-duration,-moz-transition-property,-moz-transition-timing-function,"
+ "-moz-user-focus,-moz-user-input,-moz-user-modify,-moz-user-select,-moz-window-dragging,"
+ "-webkit-align-content,-webkit-align-items,-webkit-align-self,-webkit-animation,"
@@ -8675,26 +8700,28 @@ public void computedStyle() throws Exception {
+ "-webkit-border-image,-webkit-border-radius,-webkit-border-top-left-radius,"
+ "-webkit-border-top-right-radius,-webkit-box-align,-webkit-box-direction,-webkit-box-flex,"
+ "-webkit-box-ordinal-group,-webkit-box-orient,-webkit-box-pack,-webkit-box-shadow,"
- + "-webkit-box-sizing,-webkit-filter,-webkit-flex,-webkit-flex-basis,-webkit-flex-direction,"
- + "-webkit-flex-flow,-webkit-flex-grow,-webkit-flex-shrink,-webkit-flex-wrap,"
+ + "-webkit-box-sizing,-webkit-clip-path,-webkit-filter,-webkit-flex,-webkit-flex-basis,"
+ + "-webkit-flex-direction,-webkit-flex-flow,-webkit-flex-grow,-webkit-flex-shrink,-webkit-flex-wrap,"
+ "-webkit-justify-content,-webkit-line-clamp,-webkit-mask,-webkit-mask-clip,-webkit-mask-composite,"
+ "-webkit-mask-image,-webkit-mask-origin,-webkit-mask-position,-webkit-mask-position-x,"
+ "-webkit-mask-position-y,-webkit-mask-repeat,-webkit-mask-size,-webkit-order,-webkit-perspective,"
- + "-webkit-perspective-origin,-webkit-text-fill-color,-webkit-text-size-adjust,-webkit-text-stroke,"
- + "-webkit-text-stroke-color,-webkit-text-stroke-width,-webkit-transform,-webkit-transform-origin,"
- + "-webkit-transform-style,-webkit-transition,-webkit-transition-delay,-webkit-transition-duration,"
- + "-webkit-transition-property,-webkit-transition-timing-function,-webkit-user-select,accent-color,"
- + "accentColor,align-content,align-items,align-self,alignContent,alignItems,alignSelf,all,animation,"
+ + "-webkit-perspective-origin,-webkit-text-fill-color,-webkit-text-security,"
+ + "-webkit-text-size-adjust,-webkit-text-stroke,-webkit-text-stroke-color,-webkit-text-stroke-width,"
+ + "-webkit-transform,-webkit-transform-origin,-webkit-transform-style,-webkit-transition,"
+ + "-webkit-transition-delay,-webkit-transition-duration,-webkit-transition-property,"
+ + "-webkit-transition-timing-function,-webkit-user-select,accent-color,accentColor,align-content,"
+ + "align-items,align-self,alignContent,alignItems,alignSelf,all,animation,animation-composition,"
+ "animation-delay,animation-direction,animation-duration,animation-fill-mode,"
+ "animation-iteration-count,animation-name,animation-play-state,animation-timing-function,"
- + "animationDelay,animationDirection,animationDuration,animationFillMode,animationIterationCount,"
- + "animationName,animationPlayState,animationTimingFunction,appearance,aspect-ratio,aspectRatio,"
- + "backface-visibility,backfaceVisibility,background,background-attachment,background-blend-mode,"
- + "background-clip,background-color,background-image,background-origin,background-position,"
- + "background-position-x,background-position-y,background-repeat,background-size,"
- + "backgroundAttachment,backgroundBlendMode,backgroundClip,backgroundColor,backgroundImage,"
- + "backgroundOrigin,backgroundPosition,backgroundPositionX,backgroundPositionY,backgroundRepeat,"
- + "backgroundSize,block-size,blockSize,border,border-block,border-block-color,border-block-end,"
+ + "animationComposition,animationDelay,animationDirection,animationDuration,animationFillMode,"
+ + "animationIterationCount,animationName,animationPlayState,animationTimingFunction,appearance,"
+ + "aspect-ratio,aspectRatio,backdrop-filter,backdropFilter,backface-visibility,backfaceVisibility,"
+ + "background,background-attachment,background-blend-mode,background-clip,background-color,"
+ + "background-image,background-origin,background-position,background-position-x,"
+ + "background-position-y,background-repeat,background-size,backgroundAttachment,backgroundBlendMode,"
+ + "backgroundClip,backgroundColor,backgroundImage,backgroundOrigin,backgroundPosition,"
+ + "backgroundPositionX,backgroundPositionY,backgroundRepeat,backgroundSize,baseline-source,"
+ + "baselineSource,block-size,blockSize,border,border-block,border-block-color,border-block-end,"
+ "border-block-end-color,border-block-end-style,border-block-end-width,border-block-start,"
+ "border-block-start-color,border-block-start-style,border-block-start-width,border-block-style,"
+ "border-block-width,border-bottom,border-bottom-color,border-bottom-left-radius,"
@@ -8727,87 +8754,93 @@ public void computedStyle() throws Exception {
+ "colorInterpolationFilters,colorScheme,column-count,column-fill,column-gap,column-rule,"
+ "column-rule-color,column-rule-style,column-rule-width,column-span,column-width,columnCount,"
+ "columnFill,columnGap,columnRule,columnRuleColor,columnRuleStyle,columnRuleWidth,columns,"
- + "columnSpan,columnWidth,contain,content,counter-increment,counter-reset,counter-set,"
- + "counterIncrement,counterReset,counterSet,cssFloat,cssText,cursor,cx,cy,d,direction,display,"
- + "dominant-baseline,dominantBaseline,empty-cells,emptyCells,fill,fill-opacity,fill-rule,"
- + "fillOpacity,fillRule,filter,flex,flex-basis,flex-direction,flex-flow,flex-grow,flex-shrink,"
- + "flex-wrap,flexBasis,flexDirection,flexFlow,flexGrow,flexShrink,flexWrap,float,flood-color,"
- + "flood-opacity,floodColor,floodOpacity,font,font-family,font-feature-settings,font-kerning,"
- + "font-language-override,font-optical-sizing,font-size,font-size-adjust,font-stretch,font-style,"
- + "font-synthesis,font-variant,font-variant-alternates,font-variant-caps,font-variant-east-asian,"
- + "font-variant-ligatures,font-variant-numeric,font-variant-position,font-variation-settings,"
- + "font-weight,fontFamily,fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,"
- + "fontSize,fontSizeAdjust,fontStretch,fontStyle,fontSynthesis,fontVariant,fontVariantAlternates,"
- + "fontVariantCaps,fontVariantEastAsian,fontVariantLigatures,fontVariantNumeric,fontVariantPosition,"
- + "fontVariationSettings,fontWeight,gap,getPropertyPriority(),getPropertyValue(),grid,grid-area,"
- + "grid-auto-columns,grid-auto-flow,grid-auto-rows,grid-column,grid-column-end,grid-column-gap,"
- + "grid-column-start,grid-gap,grid-row,grid-row-end,grid-row-gap,grid-row-start,grid-template,"
- + "grid-template-areas,grid-template-columns,grid-template-rows,gridArea,gridAutoColumns,"
- + "gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,gridGap,gridRow,"
- + "gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,gridTemplateColumns,"
- + "gridTemplateRows,height,hyphenate-character,hyphenateCharacter,hyphens,image-orientation,"
- + "image-rendering,imageOrientation,imageRendering,ime-mode,imeMode,inline-size,inlineSize,inset,"
- + "inset-block,inset-block-end,inset-block-start,inset-inline,inset-inline-end,inset-inline-start,"
- + "insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,insetInlineStart,isolation,"
- + "item(),justify-content,justify-items,justify-self,justifyContent,justifyItems,justifySelf,left,"
- + "length,letter-spacing,letterSpacing,lighting-color,lightingColor,line-break,line-height,"
- + "lineBreak,lineHeight,list-style,list-style-image,list-style-position,list-style-type,listStyle,"
- + "listStyleImage,listStylePosition,listStyleType,margin,margin-block,margin-block-end,"
- + "margin-block-start,margin-bottom,margin-inline,margin-inline-end,margin-inline-start,margin-left,"
- + "margin-right,margin-top,marginBlock,marginBlockEnd,marginBlockStart,marginBottom,marginInline,"
- + "marginInlineEnd,marginInlineStart,marginLeft,marginRight,marginTop,marker,marker-end,marker-mid,"
- + "marker-start,markerEnd,markerMid,markerStart,mask,mask-clip,mask-composite,mask-image,mask-mode,"
- + "mask-origin,mask-position,mask-position-x,mask-position-y,mask-repeat,mask-size,mask-type,"
- + "maskClip,maskComposite,maskImage,maskMode,maskOrigin,maskPosition,maskPositionX,maskPositionY,"
- + "maskRepeat,maskSize,maskType,max-block-size,max-height,max-inline-size,max-width,maxBlockSize,"
- + "maxHeight,maxInlineSize,maxWidth,min-block-size,min-height,min-inline-size,min-width,"
- + "minBlockSize,minHeight,minInlineSize,minWidth,mix-blend-mode,mixBlendMode,MozAnimation,"
- + "MozAnimationDelay,MozAnimationDirection,MozAnimationDuration,MozAnimationFillMode,"
- + "MozAnimationIterationCount,MozAnimationName,MozAnimationPlayState,MozAnimationTimingFunction,"
- + "MozAppearance,MozBackfaceVisibility,MozBorderEnd,MozBorderEndColor,MozBorderEndStyle,"
- + "MozBorderEndWidth,MozBorderImage,MozBorderStart,MozBorderStartColor,MozBorderStartStyle,"
- + "MozBorderStartWidth,MozBoxAlign,MozBoxDirection,MozBoxFlex,MozBoxOrdinalGroup,MozBoxOrient,"
- + "MozBoxPack,MozBoxSizing,MozFloatEdge,MozFontFeatureSettings,MozFontLanguageOverride,"
- + "MozForceBrokenImageIcon,MozHyphens,MozImageRegion,MozMarginEnd,MozMarginStart,MozOrient,"
- + "MozPaddingEnd,MozPaddingStart,MozPerspective,MozPerspectiveOrigin,MozTabSize,MozTextSizeAdjust,"
- + "MozTransform,MozTransformOrigin,MozTransformStyle,MozTransition,MozTransitionDelay,"
- + "MozTransitionDuration,MozTransitionProperty,MozTransitionTimingFunction,MozUserFocus,"
- + "MozUserInput,MozUserModify,MozUserSelect,MozWindowDragging,object-fit,object-position,objectFit,"
- + "objectPosition,offset,offset-anchor,offset-distance,offset-path,offset-rotate,offsetAnchor,"
- + "offsetDistance,offsetPath,offsetRotate,opacity,order,outline,outline-color,outline-offset,"
- + "outline-style,outline-width,outlineColor,outlineOffset,outlineStyle,outlineWidth,overflow,"
- + "overflow-anchor,overflow-block,overflow-clip-margin,overflow-inline,overflow-wrap,overflow-x,"
- + "overflow-y,overflowAnchor,overflowBlock,overflowClipMargin,overflowInline,overflowWrap,overflowX,"
- + "overflowY,overscroll-behavior,overscroll-behavior-block,overscroll-behavior-inline,"
- + "overscroll-behavior-x,overscroll-behavior-y,overscrollBehavior,overscrollBehaviorBlock,"
- + "overscrollBehaviorInline,overscrollBehaviorX,overscrollBehaviorY,padding,padding-block,"
- + "padding-block-end,padding-block-start,padding-bottom,padding-inline,padding-inline-end,"
- + "padding-inline-start,padding-left,padding-right,padding-top,paddingBlock,paddingBlockEnd,"
- + "paddingBlockStart,paddingBottom,paddingInline,paddingInlineEnd,paddingInlineStart,paddingLeft,"
- + "paddingRight,paddingTop,page-break-after,page-break-before,page-break-inside,pageBreakAfter,"
- + "pageBreakBefore,pageBreakInside,paint-order,paintOrder,parentRule,perspective,perspective-origin,"
- + "perspectiveOrigin,place-content,place-items,place-self,placeContent,placeItems,placeSelf,"
- + "pointer-events,pointerEvents,position,print-color-adjust,printColorAdjust,quotes,r,"
- + "removeProperty(),resize,right,rotate,row-gap,rowGap,ruby-align,ruby-position,rubyAlign,"
- + "rubyPosition,rx,ry,scale,scroll-behavior,scroll-margin,scroll-margin-block,"
- + "scroll-margin-block-end,scroll-margin-block-start,scroll-margin-bottom,scroll-margin-inline,"
- + "scroll-margin-inline-end,scroll-margin-inline-start,scroll-margin-left,scroll-margin-right,"
- + "scroll-margin-top,scroll-padding,scroll-padding-block,scroll-padding-block-end,"
- + "scroll-padding-block-start,scroll-padding-bottom,scroll-padding-inline,scroll-padding-inline-end,"
- + "scroll-padding-inline-start,scroll-padding-left,scroll-padding-right,scroll-padding-top,"
- + "scroll-snap-align,scroll-snap-type,scrollbar-color,scrollbar-gutter,scrollbar-width,"
- + "scrollbarColor,scrollbarGutter,scrollbarWidth,scrollBehavior,scrollMargin,scrollMarginBlock,"
- + "scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginBottom,scrollMarginInline,"
- + "scrollMarginInlineEnd,scrollMarginInlineStart,scrollMarginLeft,scrollMarginRight,scrollMarginTop,"
- + "scrollPadding,scrollPaddingBlock,scrollPaddingBlockEnd,scrollPaddingBlockStart,"
- + "scrollPaddingBottom,scrollPaddingInline,scrollPaddingInlineEnd,scrollPaddingInlineStart,"
- + "scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollSnapAlign,scrollSnapType,"
- + "setProperty(),shape-image-threshold,shape-margin,shape-outside,shape-rendering,"
- + "shapeImageThreshold,shapeMargin,shapeOutside,shapeRendering,stop-color,stop-opacity,stopColor,"
- + "stopOpacity,stroke,stroke-dasharray,stroke-dashoffset,stroke-linecap,stroke-linejoin,"
- + "stroke-miterlimit,stroke-opacity,stroke-width,strokeDasharray,strokeDashoffset,strokeLinecap,"
- + "strokeLinejoin,strokeMiterlimit,strokeOpacity,strokeWidth,tab-size,table-layout,tableLayout,"
- + "tabSize,text-align,text-align-last,text-anchor,text-combine-upright,text-decoration,"
+ + "columnSpan,columnWidth,contain,contain-intrinsic-block-size,contain-intrinsic-height,"
+ + "contain-intrinsic-inline-size,contain-intrinsic-size,contain-intrinsic-width,container,"
+ + "container-name,container-type,containerName,containerType,containIntrinsicBlockSize,"
+ + "containIntrinsicHeight,containIntrinsicInlineSize,containIntrinsicSize,containIntrinsicWidth,"
+ + "content,counter-increment,counter-reset,counter-set,counterIncrement,counterReset,counterSet,"
+ + "cssFloat,cssText,cursor,cx,cy,d,direction,display,dominant-baseline,dominantBaseline,empty-cells,"
+ + "emptyCells,fill,fill-opacity,fill-rule,fillOpacity,fillRule,filter,flex,flex-basis,"
+ + "flex-direction,flex-flow,flex-grow,flex-shrink,flex-wrap,flexBasis,flexDirection,flexFlow,"
+ + "flexGrow,flexShrink,flexWrap,float,flood-color,flood-opacity,floodColor,floodOpacity,font,"
+ + "font-family,font-feature-settings,font-kerning,font-language-override,font-optical-sizing,"
+ + "font-palette,font-size,font-size-adjust,font-stretch,font-style,font-synthesis,"
+ + "font-synthesis-small-caps,font-synthesis-style,font-synthesis-weight,font-variant,"
+ + "font-variant-alternates,font-variant-caps,font-variant-east-asian,font-variant-ligatures,"
+ + "font-variant-numeric,font-variant-position,font-variation-settings,font-weight,fontFamily,"
+ + "fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,fontPalette,fontSize,"
+ + "fontSizeAdjust,fontStretch,fontStyle,fontSynthesis,fontSynthesisSmallCaps,fontSynthesisStyle,"
+ + "fontSynthesisWeight,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariantEastAsian,"
+ + "fontVariantLigatures,fontVariantNumeric,fontVariantPosition,fontVariationSettings,fontWeight,"
+ + "forced-color-adjust,forcedColorAdjust,gap,getPropertyPriority(),getPropertyValue(),grid,"
+ + "grid-area,grid-auto-columns,grid-auto-flow,grid-auto-rows,grid-column,grid-column-end,"
+ + "grid-column-gap,grid-column-start,grid-gap,grid-row,grid-row-end,grid-row-gap,grid-row-start,"
+ + "grid-template,grid-template-areas,grid-template-columns,grid-template-rows,gridArea,"
+ + "gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,"
+ + "gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,"
+ + "gridTemplateColumns,gridTemplateRows,height,hyphenate-character,hyphenateCharacter,hyphens,"
+ + "image-orientation,image-rendering,imageOrientation,imageRendering,ime-mode,imeMode,inline-size,"
+ + "inlineSize,inset,inset-block,inset-block-end,inset-block-start,inset-inline,inset-inline-end,"
+ + "inset-inline-start,insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,"
+ + "insetInlineStart,isolation,item(),justify-content,justify-items,justify-self,justifyContent,"
+ + "justifyItems,justifySelf,left,length,letter-spacing,letterSpacing,lighting-color,lightingColor,"
+ + "line-break,line-height,lineBreak,lineHeight,list-style,list-style-image,list-style-position,"
+ + "list-style-type,listStyle,listStyleImage,listStylePosition,listStyleType,margin,margin-block,"
+ + "margin-block-end,margin-block-start,margin-bottom,margin-inline,margin-inline-end,"
+ + "margin-inline-start,margin-left,margin-right,margin-top,marginBlock,marginBlockEnd,"
+ + "marginBlockStart,marginBottom,marginInline,marginInlineEnd,marginInlineStart,marginLeft,"
+ + "marginRight,marginTop,marker,marker-end,marker-mid,marker-start,markerEnd,markerMid,markerStart,"
+ + "mask,mask-clip,mask-composite,mask-image,mask-mode,mask-origin,mask-position,mask-position-x,"
+ + "mask-position-y,mask-repeat,mask-size,mask-type,maskClip,maskComposite,maskImage,maskMode,"
+ + "maskOrigin,maskPosition,maskPositionX,maskPositionY,maskRepeat,maskSize,maskType,max-block-size,"
+ + "max-height,max-inline-size,max-width,maxBlockSize,maxHeight,maxInlineSize,maxWidth,"
+ + "min-block-size,min-height,min-inline-size,min-width,minBlockSize,minHeight,minInlineSize,"
+ + "minWidth,mix-blend-mode,mixBlendMode,MozAnimation,MozAnimationDelay,MozAnimationDirection,"
+ + "MozAnimationDuration,MozAnimationFillMode,MozAnimationIterationCount,MozAnimationName,"
+ + "MozAnimationPlayState,MozAnimationTimingFunction,MozAppearance,MozBackfaceVisibility,"
+ + "MozBorderEnd,MozBorderEndColor,MozBorderEndStyle,MozBorderEndWidth,MozBorderImage,MozBorderStart,"
+ + "MozBorderStartColor,MozBorderStartStyle,MozBorderStartWidth,MozBoxAlign,MozBoxDirection,"
+ + "MozBoxFlex,MozBoxOrdinalGroup,MozBoxOrient,MozBoxPack,MozBoxSizing,MozFloatEdge,"
+ + "MozFontFeatureSettings,MozFontLanguageOverride,MozForceBrokenImageIcon,MozHyphens,MozMarginEnd,"
+ + "MozMarginStart,MozOrient,MozPaddingEnd,MozPaddingStart,MozPerspective,MozPerspectiveOrigin,"
+ + "MozTabSize,MozTextSizeAdjust,MozTransform,MozTransformOrigin,MozTransformStyle,MozTransition,"
+ + "MozTransitionDelay,MozTransitionDuration,MozTransitionProperty,MozTransitionTimingFunction,"
+ + "MozUserFocus,MozUserInput,MozUserModify,MozUserSelect,MozWindowDragging,object-fit,"
+ + "object-position,objectFit,objectPosition,offset,offset-anchor,offset-distance,offset-path,"
+ + "offset-rotate,offsetAnchor,offsetDistance,offsetPath,offsetRotate,opacity,order,outline,"
+ + "outline-color,outline-offset,outline-style,outline-width,outlineColor,outlineOffset,outlineStyle,"
+ + "outlineWidth,overflow,overflow-anchor,overflow-block,overflow-clip-margin,overflow-inline,"
+ + "overflow-wrap,overflow-x,overflow-y,overflowAnchor,overflowBlock,overflowClipMargin,"
+ + "overflowInline,overflowWrap,overflowX,overflowY,overscroll-behavior,overscroll-behavior-block,"
+ + "overscroll-behavior-inline,overscroll-behavior-x,overscroll-behavior-y,overscrollBehavior,"
+ + "overscrollBehaviorBlock,overscrollBehaviorInline,overscrollBehaviorX,overscrollBehaviorY,padding,"
+ + "padding-block,padding-block-end,padding-block-start,padding-bottom,padding-inline,"
+ + "padding-inline-end,padding-inline-start,padding-left,padding-right,padding-top,paddingBlock,"
+ + "paddingBlockEnd,paddingBlockStart,paddingBottom,paddingInline,paddingInlineEnd,"
+ + "paddingInlineStart,paddingLeft,paddingRight,paddingTop,page,page-break-after,page-break-before,"
+ + "page-break-inside,pageBreakAfter,pageBreakBefore,pageBreakInside,paint-order,paintOrder,"
+ + "parentRule,perspective,perspective-origin,perspectiveOrigin,place-content,place-items,place-self,"
+ + "placeContent,placeItems,placeSelf,pointer-events,pointerEvents,position,print-color-adjust,"
+ + "printColorAdjust,quotes,r,removeProperty(),resize,right,rotate,row-gap,rowGap,ruby-align,"
+ + "ruby-position,rubyAlign,rubyPosition,rx,ry,scale,scroll-behavior,scroll-margin,"
+ + "scroll-margin-block,scroll-margin-block-end,scroll-margin-block-start,scroll-margin-bottom,"
+ + "scroll-margin-inline,scroll-margin-inline-end,scroll-margin-inline-start,scroll-margin-left,"
+ + "scroll-margin-right,scroll-margin-top,scroll-padding,scroll-padding-block,"
+ + "scroll-padding-block-end,scroll-padding-block-start,scroll-padding-bottom,scroll-padding-inline,"
+ + "scroll-padding-inline-end,scroll-padding-inline-start,scroll-padding-left,scroll-padding-right,"
+ + "scroll-padding-top,scroll-snap-align,scroll-snap-stop,scroll-snap-type,scrollbar-color,"
+ + "scrollbar-gutter,scrollbar-width,scrollbarColor,scrollbarGutter,scrollbarWidth,scrollBehavior,"
+ + "scrollMargin,scrollMarginBlock,scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginBottom,"
+ + "scrollMarginInline,scrollMarginInlineEnd,scrollMarginInlineStart,scrollMarginLeft,"
+ + "scrollMarginRight,scrollMarginTop,scrollPadding,scrollPaddingBlock,scrollPaddingBlockEnd,"
+ + "scrollPaddingBlockStart,scrollPaddingBottom,scrollPaddingInline,scrollPaddingInlineEnd,"
+ + "scrollPaddingInlineStart,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollSnapAlign,"
+ + "scrollSnapStop,scrollSnapType,setProperty(),shape-image-threshold,shape-margin,shape-outside,"
+ + "shape-rendering,shapeImageThreshold,shapeMargin,shapeOutside,shapeRendering,stop-color,"
+ + "stop-opacity,stopColor,stopOpacity,stroke,stroke-dasharray,stroke-dashoffset,stroke-linecap,"
+ + "stroke-linejoin,stroke-miterlimit,stroke-opacity,stroke-width,strokeDasharray,strokeDashoffset,"
+ + "strokeLinecap,strokeLinejoin,strokeMiterlimit,strokeOpacity,strokeWidth,tab-size,table-layout,"
+ + "tableLayout,tabSize,text-align,text-align-last,text-anchor,text-combine-upright,text-decoration,"
+ "text-decoration-color,text-decoration-line,text-decoration-skip-ink,text-decoration-style,"
+ "text-decoration-thickness,text-emphasis,text-emphasis-color,text-emphasis-position,"
+ "text-emphasis-style,text-indent,text-justify,text-orientation,text-overflow,text-rendering,"
@@ -8836,19 +8869,20 @@ public void computedStyle() throws Exception {
+ "WebkitBorderTopRightRadius,webkitBorderTopRightRadius,WebkitBoxAlign,webkitBoxAlign,"
+ "WebkitBoxDirection,webkitBoxDirection,WebkitBoxFlex,webkitBoxFlex,WebkitBoxOrdinalGroup,"
+ "webkitBoxOrdinalGroup,WebkitBoxOrient,webkitBoxOrient,WebkitBoxPack,webkitBoxPack,"
- + "WebkitBoxShadow,webkitBoxShadow,WebkitBoxSizing,webkitBoxSizing,WebkitFilter,webkitFilter,"
- + "WebkitFlex,webkitFlex,WebkitFlexBasis,webkitFlexBasis,WebkitFlexDirection,webkitFlexDirection,"
- + "WebkitFlexFlow,webkitFlexFlow,WebkitFlexGrow,webkitFlexGrow,WebkitFlexShrink,webkitFlexShrink,"
- + "WebkitFlexWrap,webkitFlexWrap,WebkitJustifyContent,webkitJustifyContent,WebkitLineClamp,"
- + "webkitLineClamp,WebkitMask,webkitMask,WebkitMaskClip,webkitMaskClip,WebkitMaskComposite,"
- + "webkitMaskComposite,WebkitMaskImage,webkitMaskImage,WebkitMaskOrigin,webkitMaskOrigin,"
- + "WebkitMaskPosition,webkitMaskPosition,WebkitMaskPositionX,webkitMaskPositionX,"
- + "WebkitMaskPositionY,webkitMaskPositionY,WebkitMaskRepeat,webkitMaskRepeat,WebkitMaskSize,"
- + "webkitMaskSize,WebkitOrder,webkitOrder,WebkitPerspective,webkitPerspective,"
- + "WebkitPerspectiveOrigin,webkitPerspectiveOrigin,WebkitTextFillColor,webkitTextFillColor,"
- + "WebkitTextSizeAdjust,webkitTextSizeAdjust,WebkitTextStroke,webkitTextStroke,"
- + "WebkitTextStrokeColor,webkitTextStrokeColor,WebkitTextStrokeWidth,webkitTextStrokeWidth,"
- + "WebkitTransform,webkitTransform,WebkitTransformOrigin,webkitTransformOrigin,WebkitTransformStyle,"
+ + "WebkitBoxShadow,webkitBoxShadow,WebkitBoxSizing,webkitBoxSizing,WebkitClipPath,webkitClipPath,"
+ + "WebkitFilter,webkitFilter,WebkitFlex,webkitFlex,WebkitFlexBasis,webkitFlexBasis,"
+ + "WebkitFlexDirection,webkitFlexDirection,WebkitFlexFlow,webkitFlexFlow,WebkitFlexGrow,"
+ + "webkitFlexGrow,WebkitFlexShrink,webkitFlexShrink,WebkitFlexWrap,webkitFlexWrap,"
+ + "WebkitJustifyContent,webkitJustifyContent,WebkitLineClamp,webkitLineClamp,WebkitMask,webkitMask,"
+ + "WebkitMaskClip,webkitMaskClip,WebkitMaskComposite,webkitMaskComposite,WebkitMaskImage,"
+ + "webkitMaskImage,WebkitMaskOrigin,webkitMaskOrigin,WebkitMaskPosition,webkitMaskPosition,"
+ + "WebkitMaskPositionX,webkitMaskPositionX,WebkitMaskPositionY,webkitMaskPositionY,WebkitMaskRepeat,"
+ + "webkitMaskRepeat,WebkitMaskSize,webkitMaskSize,WebkitOrder,webkitOrder,WebkitPerspective,"
+ + "webkitPerspective,WebkitPerspectiveOrigin,webkitPerspectiveOrigin,WebkitTextFillColor,"
+ + "webkitTextFillColor,WebkitTextSecurity,webkitTextSecurity,WebkitTextSizeAdjust,"
+ + "webkitTextSizeAdjust,WebkitTextStroke,webkitTextStroke,WebkitTextStrokeColor,"
+ + "webkitTextStrokeColor,WebkitTextStrokeWidth,webkitTextStrokeWidth,WebkitTransform,"
+ + "webkitTransform,WebkitTransformOrigin,webkitTransformOrigin,WebkitTransformStyle,"
+ "webkitTransformStyle,WebkitTransition,webkitTransition,WebkitTransitionDelay,"
+ "webkitTransitionDelay,WebkitTransitionDuration,webkitTransitionDuration,WebkitTransitionProperty,"
+ "webkitTransitionProperty,WebkitTransitionTimingFunction,webkitTransitionTimingFunction,"
@@ -9326,8 +9360,8 @@ public void blob() throws Exception {
+ "has(),keys(),set(),size,sort(),toString(),values()",
FF = "append(),delete(),entries(),forEach(),get(),getAll(),"
+ "has(),keys(),set(),size,sort(),toString(),values()",
- FF_ESR = "append(),delete(),entries(),forEach(),get(),getAll(),"
- + "has(),keys(),set(),sort(),toString(),values()",
+ FF_ESR = "append(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),size,sort(),toString(),"
+ + "values()",
IE = "exception")
@HtmlUnitNYI(CHROME = "append(),delete(),entries(),forEach(),get(),getAll(),"
+ "has(),keys(),set(),size,toString(),values()",
diff --git a/src/test/java/org/htmlunit/general/HostClassNameTest.java b/src/test/java/org/htmlunit/general/HostClassNameTest.java
index 6307c7c1e57..f5c7eb1014e 100644
--- a/src/test/java/org/htmlunit/general/HostClassNameTest.java
+++ b/src/test/java/org/htmlunit/general/HostClassNameTest.java
@@ -55,7 +55,12 @@ private void test(final String className) throws Exception {
+ LOG_TEXTAREA_FUNCTION
+ " function test() {\n"
+ " try {\n"
- + " log(" + className + ");\n"
+ + " var clsName = '' + " + className + ";\n"
+ + " if (clsName.startsWith('function ')) {\n"
+ + " clsName = clsName.replace('\\n ', ' ');\n"
+ + " clsName = clsName.replace(']\\n}', '] }');\n"
+ + " }\n"
+ + " log(clsName);\n"
+ " } catch(e) {log('exception')}\n"
+ " }\n"
+ "\n"
@@ -80,8 +85,6 @@ public void abstractList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AbstractRange() { [native code] }",
- FF = "function AbstractRange() {\n [native code]\n}",
- FF_ESR = "function AbstractRange() {\n [native code]\n}",
IE = "exception")
@HtmlUnitNYI(IE = "function AbstractRange() {\n [native code]\n}\n")
public void abstractRange() throws Exception {
@@ -134,9 +137,7 @@ public void ambientLightSensorReading() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AnalyserNode() { [native code] }",
- FF = "function AnalyserNode() {\n [native code]\n}",
- IE = "exception",
- FF_ESR = "function AnalyserNode() {\n [native code]\n}")
+ IE = "exception")
public void analyserNode() throws Exception {
test("AnalyserNode");
}
@@ -155,9 +156,7 @@ public void angle_instanced_arrays() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "function Animation() {\n [native code]\n}",
- CHROME = "function Animation() { [native code] }",
- EDGE = "function Animation() { [native code] }",
+ @Alerts(DEFAULT = "function Animation() { [native code] }",
IE = "exception")
public void animation() throws Exception {
test("Animation");
@@ -206,9 +205,7 @@ public void animationEffectTimingReadOnly() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AnimationEvent() { [native code] }",
- FF = "function AnimationEvent() {\n [native code]\n}",
- IE = "[object AnimationEvent]",
- FF_ESR = "function AnimationEvent() {\n [native code]\n}")
+ IE = "[object AnimationEvent]")
public void animationEvent() throws Exception {
test("AnimationEvent");
}
@@ -218,8 +215,6 @@ public void animationEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AnimationPlaybackEvent() { [native code] }",
- FF = "function AnimationPlaybackEvent() {\n [native code]\n}",
- FF_ESR = "function AnimationPlaybackEvent() {\n [native code]\n}",
IE = "exception")
@HtmlUnitNYI(CHROME = "exception", EDGE = "exception", FF = "exception", FF_ESR = "exception")
public void animationPlaybackEvent() throws Exception {
@@ -239,11 +234,8 @@ public void animationPlayer() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function AnimationTimeline() { [native code] }",
- EDGE = "function AnimationTimeline() { [native code] }",
- FF = "function AnimationTimeline() {\n [native code]\n}",
- FF_ESR = "function AnimationTimeline() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function AnimationTimeline() { [native code] }",
+ IE = "exception")
@HtmlUnitNYI(CHROME = "exception", EDGE = "exception", FF = "exception", FF_ESR = "exception")
public void animationTimeline() throws Exception {
test("AnimationTimeline");
@@ -304,9 +296,7 @@ public void arguments() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Array() { [native code] }",
- FF = "function Array() {\n [native code]\n}",
- IE = "function Array() {\n [native code]\n}\n",
- FF_ESR = "function Array() {\n [native code]\n}")
+ IE = "function Array() {\n [native code]\n}\n")
public void array() throws Exception {
test("Array");
}
@@ -318,9 +308,7 @@ public void array() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ArrayBuffer() { [native code] }",
- FF = "function ArrayBuffer() {\n [native code]\n}",
- IE = "function ArrayBuffer() {\n [native code]\n}\n",
- FF_ESR = "function ArrayBuffer() {\n [native code]\n}")
+ IE = "function ArrayBuffer() {\n [native code]\n}\n")
public void arrayBuffer() throws Exception {
test("ArrayBuffer");
}
@@ -373,9 +361,7 @@ public void atomics() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Attr() { [native code] }",
- IE = "[object Attr]",
- FF = "function Attr() {\n [native code]\n}",
- FF_ESR = "function Attr() {\n [native code]\n}")
+ IE = "[object Attr]")
public void attr() throws Exception {
test("Attr");
}
@@ -386,10 +372,7 @@ public void attr() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(CHROME = "function Audio() { [native code] }",
- EDGE = "function Audio() { [native code] }",
- FF = "function Audio() {\n [native code]\n}",
- FF_ESR = "function Audio() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function Audio() { [native code] }",
IE = "function Audio() {\n [native code]\n}\n")
public void audio() throws Exception {
test("Audio");
@@ -400,9 +383,7 @@ public void audio() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AudioBuffer() { [native code] }",
- IE = "exception",
- FF = "function AudioBuffer() {\n [native code]\n}",
- FF_ESR = "function AudioBuffer() {\n [native code]\n}")
+ IE = "exception")
public void audioBuffer() throws Exception {
test("AudioBuffer");
}
@@ -412,9 +393,7 @@ public void audioBuffer() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AudioBufferSourceNode() { [native code] }",
- IE = "exception",
- FF = "function AudioBufferSourceNode() {\n [native code]\n}",
- FF_ESR = "function AudioBufferSourceNode() {\n [native code]\n}")
+ IE = "exception")
public void audioBufferSourceNode() throws Exception {
test("AudioBufferSourceNode");
}
@@ -433,9 +412,7 @@ public void audioChannelManager() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AudioContext() { [native code] }",
- IE = "exception",
- FF = "function AudioContext() {\n [native code]\n}",
- FF_ESR = "function AudioContext() {\n [native code]\n}")
+ IE = "exception")
public void audioContext() throws Exception {
test("AudioContext");
}
@@ -445,9 +422,7 @@ public void audioContext() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AudioDestinationNode() { [native code] }",
- IE = "exception",
- FF = "function AudioDestinationNode() {\n [native code]\n}",
- FF_ESR = "function AudioDestinationNode() {\n [native code]\n}")
+ IE = "exception")
public void audioDestinationNode() throws Exception {
test("AudioDestinationNode");
}
@@ -457,9 +432,7 @@ public void audioDestinationNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AudioListener() { [native code] }",
- IE = "exception",
- FF = "function AudioListener() {\n [native code]\n}",
- FF_ESR = "function AudioListener() {\n [native code]\n}")
+ IE = "exception")
public void audioListener() throws Exception {
test("AudioListener");
}
@@ -469,9 +442,7 @@ public void audioListener() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AudioNode() { [native code] }",
- IE = "exception",
- FF = "function AudioNode() {\n [native code]\n}",
- FF_ESR = "function AudioNode() {\n [native code]\n}")
+ IE = "exception")
public void audioNode() throws Exception {
test("AudioNode");
}
@@ -483,9 +454,7 @@ public void audioNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AudioParam() { [native code] }",
- IE = "exception",
- FF = "function AudioParam() {\n [native code]\n}",
- FF_ESR = "function AudioParam() {\n [native code]\n}")
+ IE = "exception")
public void audioParam() throws Exception {
test("AudioParam");
}
@@ -495,9 +464,7 @@ public void audioParam() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function AudioProcessingEvent() { [native code] }",
- IE = "exception",
- FF = "function AudioProcessingEvent() {\n [native code]\n}",
- FF_ESR = "function AudioProcessingEvent() {\n [native code]\n}")
+ IE = "exception")
public void audioProcessingEvent() throws Exception {
test("AudioProcessingEvent");
}
@@ -506,11 +473,8 @@ public void audioProcessingEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function AudioScheduledSourceNode() { [native code] }",
- EDGE = "function AudioScheduledSourceNode() { [native code] }",
- FF = "function AudioScheduledSourceNode() {\n [native code]\n}",
- FF_ESR = "function AudioScheduledSourceNode() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function AudioScheduledSourceNode() { [native code] }",
+ IE = "exception")
public void audioScheduledSourceNode() throws Exception {
test("AudioScheduledSourceNode");
}
@@ -529,9 +493,7 @@ public void autocompleteErrorEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function BarProp() { [native code] }",
- IE = "exception",
- FF = "function BarProp() {\n [native code]\n}",
- FF_ESR = "function BarProp() {\n [native code]\n}")
+ IE = "exception")
public void barProp() throws Exception {
test("BarProp");
}
@@ -540,11 +502,8 @@ public void barProp() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function BaseAudioContext() { [native code] }",
- EDGE = "function BaseAudioContext() { [native code] }",
- FF = "function BaseAudioContext() {\n [native code]\n}",
- FF_ESR = "function BaseAudioContext() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function BaseAudioContext() { [native code] }",
+ IE = "exception")
public void baseAudioContext() throws Exception {
test("BaseAudioContext");
}
@@ -587,9 +546,7 @@ public void beforeInstallPromptEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function BeforeUnloadEvent() { [native code] }",
- IE = "[object BeforeUnloadEvent]",
- FF = "function BeforeUnloadEvent() {\n [native code]\n}",
- FF_ESR = "function BeforeUnloadEvent() {\n [native code]\n}")
+ IE = "[object BeforeUnloadEvent]")
public void beforeUnloadEvent() throws Exception {
test("BeforeUnloadEvent");
}
@@ -599,9 +556,7 @@ public void beforeUnloadEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function BiquadFilterNode() { [native code] }",
- IE = "exception",
- FF = "function BiquadFilterNode() {\n [native code]\n}",
- FF_ESR = "function BiquadFilterNode() {\n [native code]\n}")
+ IE = "exception")
public void biquadFilterNode() throws Exception {
test("BiquadFilterNode");
}
@@ -611,9 +566,7 @@ public void biquadFilterNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Blob() { [native code] }",
- FF = "function Blob() {\n [native code]\n}",
- IE = "function Blob() {\n [native code]\n}\n",
- FF_ESR = "function Blob() {\n [native code]\n}")
+ IE = "function Blob() {\n [native code]\n}\n")
public void blob() throws Exception {
test("Blob");
}
@@ -632,9 +585,7 @@ public void blobBuilder() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function BlobEvent() { [native code] }",
- FF = "function BlobEvent() {\n [native code]\n}",
- IE = "exception",
- FF_ESR = "function BlobEvent() {\n [native code]\n}")
+ IE = "exception")
public void blobEvent() throws Exception {
test("BlobEvent");
}
@@ -784,11 +735,8 @@ public void boxObject() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function BroadcastChannel() { [native code] }",
- EDGE = "function BroadcastChannel() { [native code] }",
- FF = "function BroadcastChannel() {\n [native code]\n}",
- FF_ESR = "function BroadcastChannel() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function BroadcastChannel() { [native code] }",
+ IE = "exception")
public void broadcastChannel() throws Exception {
test("BroadcastChannel");
}
@@ -833,11 +781,8 @@ public void byteString() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function Cache() { [native code] }",
- EDGE = "function Cache() { [native code] }",
- FF = "function Cache() {\n [native code]\n}",
- FF_ESR = "function Cache() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function Cache() { [native code] }",
+ IE = "exception")
public void cache() throws Exception {
test("Cache");
}
@@ -846,11 +791,8 @@ public void cache() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function CacheStorage() { [native code] }",
- EDGE = "function CacheStorage() { [native code] }",
- FF = "function CacheStorage() {\n [native code]\n}",
- FF_ESR = "function CacheStorage() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CacheStorage() { [native code] }",
+ IE = "exception")
public void cacheStorage() throws Exception {
test("CacheStorage");
}
@@ -896,8 +838,8 @@ public void cameraManager() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function CanvasCaptureMediaStream() {\n [native code]\n}",
- FF_ESR = "function CanvasCaptureMediaStream() {\n [native code]\n}")
+ FF = "function CanvasCaptureMediaStream() { [native code] }",
+ FF_ESR = "function CanvasCaptureMediaStream() { [native code] }")
public void canvasCaptureMediaStream() throws Exception {
test("CanvasCaptureMediaStream");
}
@@ -918,9 +860,7 @@ public void canvasCaptureMediaStreamTrack() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CanvasGradient() { [native code] }",
- FF = "function CanvasGradient() {\n [native code]\n}",
- IE = "[object CanvasGradient]",
- FF_ESR = "function CanvasGradient() {\n [native code]\n}")
+ IE = "[object CanvasGradient]")
public void canvasGradient() throws Exception {
test("CanvasGradient");
}
@@ -939,9 +879,7 @@ public void canvasImageSource() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CanvasPattern() { [native code] }",
- FF = "function CanvasPattern() {\n [native code]\n}",
- IE = "[object CanvasPattern]",
- FF_ESR = "function CanvasPattern() {\n [native code]\n}")
+ IE = "[object CanvasPattern]")
public void canvasPattern() throws Exception {
test("CanvasPattern");
}
@@ -953,9 +891,7 @@ public void canvasPattern() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CanvasRenderingContext2D() { [native code] }",
- IE = "[object CanvasRenderingContext2D]",
- FF = "function CanvasRenderingContext2D() {\n [native code]\n}",
- FF_ESR = "function CanvasRenderingContext2D() {\n [native code]\n}")
+ IE = "[object CanvasRenderingContext2D]")
public void canvasRenderingContext2D() throws Exception {
test("CanvasRenderingContext2D");
}
@@ -965,8 +901,8 @@ public void canvasRenderingContext2D() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function CaretPosition() {\n [native code]\n}",
- FF_ESR = "function CaretPosition() {\n [native code]\n}")
+ FF = "function CaretPosition() { [native code] }",
+ FF_ESR = "function CaretPosition() { [native code] }")
public void caretPosition() throws Exception {
test("CaretPosition");
}
@@ -978,9 +914,7 @@ public void caretPosition() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CDATASection() { [native code] }",
- IE = "[object CDATASection]",
- FF = "function CDATASection() {\n [native code]\n}",
- FF_ESR = "function CDATASection() {\n [native code]\n}")
+ IE = "[object CDATASection]")
public void cdataSection() throws Exception {
test("CDATASection");
}
@@ -992,9 +926,7 @@ public void cdataSection() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ChannelMergerNode() { [native code] }",
- IE = "exception",
- FF = "function ChannelMergerNode() {\n [native code]\n}",
- FF_ESR = "function ChannelMergerNode() {\n [native code]\n}")
+ IE = "exception")
public void channelMergerNode() throws Exception {
test("ChannelMergerNode");
}
@@ -1004,9 +936,7 @@ public void channelMergerNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ChannelSplitterNode() { [native code] }",
- IE = "exception",
- FF = "function ChannelSplitterNode() {\n [native code]\n}",
- FF_ESR = "function ChannelSplitterNode() {\n [native code]\n}")
+ IE = "exception")
public void channelSplitterNode() throws Exception {
test("ChannelSplitterNode");
}
@@ -1018,9 +948,7 @@ public void channelSplitterNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CharacterData() { [native code] }",
- FF = "function CharacterData() {\n [native code]\n}",
- IE = "[object CharacterData]",
- FF_ESR = "function CharacterData() {\n [native code]\n}")
+ IE = "[object CharacterData]")
public void characterData() throws Exception {
test("CharacterData");
}
@@ -1110,9 +1038,7 @@ public void clipboardData() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ClipboardEvent() { [native code] }",
- IE = "exception",
- FF = "function ClipboardEvent() {\n [native code]\n}",
- FF_ESR = "function ClipboardEvent() {\n [native code]\n}")
+ IE = "exception")
public void clipboardEvent() throws Exception {
test("ClipboardEvent");
}
@@ -1122,9 +1048,7 @@ public void clipboardEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CloseEvent() { [native code] }",
- FF = "function CloseEvent() {\n [native code]\n}",
- IE = "[object CloseEvent]",
- FF_ESR = "function CloseEvent() {\n [native code]\n}")
+ IE = "[object CloseEvent]")
public void closeEvent() throws Exception {
test("CloseEvent");
}
@@ -1136,9 +1060,7 @@ public void closeEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Comment() { [native code] }",
- IE = "[object Comment]",
- FF = "function Comment() {\n [native code]\n}",
- FF_ESR = "function Comment() {\n [native code]\n}")
+ IE = "[object Comment]")
public void comment() throws Exception {
test("Comment");
}
@@ -1148,9 +1070,7 @@ public void comment() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CompositionEvent() { [native code] }",
- FF = "function CompositionEvent() {\n [native code]\n}",
- IE = "[object CompositionEvent]",
- FF_ESR = "function CompositionEvent() {\n [native code]\n}")
+ IE = "[object CompositionEvent]")
public void compositionEvent() throws Exception {
test("CompositionEvent");
}
@@ -1191,11 +1111,8 @@ public void console() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function ConstantSourceNode() { [native code] }",
- EDGE = "function ConstantSourceNode() { [native code] }",
- FF = "function ConstantSourceNode() {\n [native code]\n}",
- FF_ESR = "function ConstantSourceNode() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function ConstantSourceNode() { [native code] }",
+ IE = "exception")
public void constantSourceNode() throws Exception {
test("ConstantSourceNode");
}
@@ -1250,9 +1167,7 @@ public void contactManager() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ConvolverNode() { [native code] }",
- IE = "exception",
- FF = "function ConvolverNode() {\n [native code]\n}",
- FF_ESR = "function ConvolverNode() {\n [native code]\n}")
+ IE = "exception")
public void convolverNode() throws Exception {
test("ConvolverNode");
}
@@ -1273,11 +1188,8 @@ public void coordinates() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function Credential() { [native code] }",
- EDGE = "function Credential() { [native code] }",
- FF = "function Credential() {\n [native code]\n}",
- FF_ESR = "function Credential() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function Credential() { [native code] }",
+ IE = "exception")
public void credential() throws Exception {
test("Credential");
}
@@ -1286,11 +1198,8 @@ public void credential() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function CredentialsContainer() { [native code] }",
- EDGE = "function CredentialsContainer() { [native code] }",
- FF = "function CredentialsContainer() {\n [native code]\n}",
- FF_ESR = "function CredentialsContainer() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CredentialsContainer() { [native code] }",
+ IE = "exception")
public void credentialsContainer() throws Exception {
test("CredentialsContainer");
}
@@ -1300,9 +1209,7 @@ public void credentialsContainer() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Crypto() { [native code] }",
- FF = "function Crypto() {\n [native code]\n}",
- IE = "[object Crypto]",
- FF_ESR = "function Crypto() {\n [native code]\n}")
+ IE = "[object Crypto]")
public void crypto() throws Exception {
test("Crypto");
}
@@ -1312,9 +1219,7 @@ public void crypto() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CryptoKey() { [native code] }",
- IE = "exception",
- FF = "function CryptoKey() {\n [native code]\n}",
- FF_ESR = "function CryptoKey() {\n [native code]\n}")
+ IE = "exception")
public void cryptoKey() throws Exception {
test("CryptoKey");
}
@@ -1324,8 +1229,7 @@ public void cryptoKey() throws Exception {
*/
@Test
@Alerts(DEFAULT = "[object CSS]",
- IE = "exception",
- FF_ESR = "[object Object]")
+ IE = "exception")
public void css() throws Exception {
test("CSS");
}
@@ -1337,8 +1241,8 @@ public void css() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function CSS2Properties() {\n [native code]\n}",
- FF_ESR = "function CSS2Properties() {\n [native code]\n}")
+ FF = "function CSS2Properties() { [native code] }",
+ FF_ESR = "function CSS2Properties() { [native code] }")
public void css2Properties() throws Exception {
test("CSS2Properties");
}
@@ -1356,11 +1260,8 @@ public void cssCharsetRule() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function CSSConditionRule() { [native code] }",
- EDGE = "function CSSConditionRule() { [native code] }",
- FF = "function CSSConditionRule() {\n [native code]\n}",
- FF_ESR = "function CSSConditionRule() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CSSConditionRule() { [native code] }",
+ IE = "exception")
public void cssConditionRule() throws Exception {
test("CSSConditionRule");
}
@@ -1369,11 +1270,8 @@ public void cssConditionRule() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function CSSCounterStyleRule() { [native code] }",
- EDGE = "function CSSCounterStyleRule() { [native code] }",
- FF = "function CSSCounterStyleRule() {\n [native code]\n}",
- FF_ESR = "function CSSCounterStyleRule() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CSSCounterStyleRule() { [native code] }",
+ IE = "exception")
public void cssCounterStyleRule() throws Exception {
test("CSSCounterStyleRule");
}
@@ -1384,11 +1282,8 @@ public void cssCounterStyleRule() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "[object CSSFontFaceRule]",
- CHROME = "function CSSFontFaceRule() { [native code] }",
- EDGE = "function CSSFontFaceRule() { [native code] }",
- FF = "function CSSFontFaceRule() {\n [native code]\n}",
- FF_ESR = "function CSSFontFaceRule() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CSSFontFaceRule() { [native code] }",
+ IE = "[object CSSFontFaceRule]")
public void cssFontFaceRule() throws Exception {
test("CSSFontFaceRule");
}
@@ -1398,9 +1293,7 @@ public void cssFontFaceRule() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CSSGroupingRule() { [native code] }",
- IE = "exception",
- FF = "function CSSGroupingRule() {\n [native code]\n}",
- FF_ESR = "function CSSGroupingRule() {\n [native code]\n}")
+ IE = "exception")
public void cssGroupingRule() throws Exception {
test("CSSGroupingRule");
}
@@ -1411,11 +1304,8 @@ public void cssGroupingRule() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "[object CSSImportRule]",
- CHROME = "function CSSImportRule() { [native code] }",
- EDGE = "function CSSImportRule() { [native code] }",
- FF = "function CSSImportRule() {\n [native code]\n}",
- FF_ESR = "function CSSImportRule() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CSSImportRule() { [native code] }",
+ IE = "[object CSSImportRule]")
public void cssImportRule() throws Exception {
test("CSSImportRule");
}
@@ -1424,11 +1314,8 @@ public void cssImportRule() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "[object CSSKeyframeRule]",
- CHROME = "function CSSKeyframeRule() { [native code] }",
- EDGE = "function CSSKeyframeRule() { [native code] }",
- FF = "function CSSKeyframeRule() {\n [native code]\n}",
- FF_ESR = "function CSSKeyframeRule() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CSSKeyframeRule() { [native code] }",
+ IE = "[object CSSKeyframeRule]")
public void cssKeyframeRule() throws Exception {
test("CSSKeyframeRule");
}
@@ -1438,9 +1325,7 @@ public void cssKeyframeRule() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CSSKeyframesRule() { [native code] }",
- FF = "function CSSKeyframesRule() {\n [native code]\n}",
- IE = "[object CSSKeyframesRule]",
- FF_ESR = "function CSSKeyframesRule() {\n [native code]\n}")
+ IE = "[object CSSKeyframesRule]")
public void cssKeyframesRule() throws Exception {
test("CSSKeyframesRule");
}
@@ -1460,11 +1345,8 @@ public void cssMatrix() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "[object CSSMediaRule]",
- CHROME = "function CSSMediaRule() { [native code] }",
- EDGE = "function CSSMediaRule() { [native code] }",
- FF = "function CSSMediaRule() {\n [native code]\n}",
- FF_ESR = "function CSSMediaRule() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CSSMediaRule() { [native code] }",
+ IE = "[object CSSMediaRule]")
public void cssMediaRule() throws Exception {
test("CSSMediaRule");
}
@@ -1474,9 +1356,7 @@ public void cssMediaRule() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CSSNamespaceRule() { [native code] }",
- FF = "function CSSNamespaceRule() {\n [native code]\n}",
- IE = "[object CSSNamespaceRule]",
- FF_ESR = "function CSSNamespaceRule() {\n [native code]\n}")
+ IE = "[object CSSNamespaceRule]")
public void cssNamespaceRule() throws Exception {
test("CSSNamespaceRule");
}
@@ -1487,11 +1367,8 @@ public void cssNamespaceRule() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "[object CSSPageRule]",
- CHROME = "function CSSPageRule() { [native code] }",
- EDGE = "function CSSPageRule() { [native code] }",
- FF = "function CSSPageRule() {\n [native code]\n}",
- FF_ESR = "function CSSPageRule() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CSSPageRule() { [native code] }",
+ IE = "[object CSSPageRule]")
public void cssPageRule() throws Exception {
test("CSSPageRule");
}
@@ -1513,11 +1390,8 @@ public void cssPrimitiveValue() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "[object CSSRule]",
- CHROME = "function CSSRule() { [native code] }",
- EDGE = "function CSSRule() { [native code] }",
- FF = "function CSSRule() {\n [native code]\n}",
- FF_ESR = "function CSSRule() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CSSRule() { [native code] }",
+ IE = "[object CSSRule]")
public void cssRule() throws Exception {
test("CSSRule");
}
@@ -1529,9 +1403,7 @@ public void cssRule() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CSSRuleList() { [native code] }",
- IE = "[object CSSRuleList]",
- FF = "function CSSRuleList() {\n [native code]\n}",
- FF_ESR = "function CSSRuleList() {\n [native code]\n}")
+ IE = "[object CSSRuleList]")
public void cssRuleList() throws Exception {
test("CSSRuleList");
}
@@ -1543,9 +1415,7 @@ public void cssRuleList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CSSStyleDeclaration() { [native code] }",
- IE = "[object CSSStyleDeclaration]",
- FF = "function CSSStyleDeclaration() {\n [native code]\n}",
- FF_ESR = "function CSSStyleDeclaration() {\n [native code]\n}")
+ IE = "[object CSSStyleDeclaration]")
public void cssStyleDeclaration() throws Exception {
test("CSSStyleDeclaration");
}
@@ -1557,12 +1427,8 @@ public void cssStyleDeclaration() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CSSStyleRule() { [native code] }",
- FF = "function CSSStyleRule() {\n [native code]\n}",
- FF_ESR = "function CSSStyleRule() {\n [native code]\n}",
IE = "[object CSSStyleRule]")
@AlertsStandards(DEFAULT = "function CSSStyleRule() { [native code] }",
- FF = "function CSSStyleRule() {\n [native code]\n}",
- FF_ESR = "function CSSStyleRule() {\n [native code]\n}",
IE = "[object CSSStyleRule]")
public void cssStyleRule() throws Exception {
test("CSSStyleRule");
@@ -1575,9 +1441,7 @@ public void cssStyleRule() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CSSStyleSheet() { [native code] }",
- IE = "[object CSSStyleSheet]",
- FF = "function CSSStyleSheet() {\n [native code]\n}",
- FF_ESR = "function CSSStyleSheet() {\n [native code]\n}")
+ IE = "[object CSSStyleSheet]")
public void cssStyleSheet() throws Exception {
test("CSSStyleSheet");
}
@@ -1587,9 +1451,7 @@ public void cssStyleSheet() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CSSSupportsRule() { [native code] }",
- IE = "exception",
- FF = "function CSSSupportsRule() {\n [native code]\n}",
- FF_ESR = "function CSSSupportsRule() {\n [native code]\n}")
+ IE = "exception")
public void cssSupportsRule() throws Exception {
test("CSSSupportsRule");
}
@@ -1636,11 +1498,8 @@ public void cssViewportRule() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function CustomElementRegistry() { [native code] }",
- EDGE = "function CustomElementRegistry() { [native code] }",
- FF = "function CustomElementRegistry() {\n [native code]\n}",
- FF_ESR = "function CustomElementRegistry() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function CustomElementRegistry() { [native code] }",
+ IE = "exception")
public void customElementRegistry() throws Exception {
test("CustomElementRegistry");
}
@@ -1650,9 +1509,7 @@ public void customElementRegistry() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function CustomEvent() { [native code] }",
- FF = "function CustomEvent() {\n [native code]\n}",
- IE = "[object CustomEvent]",
- FF_ESR = "function CustomEvent() {\n [native code]\n}")
+ IE = "[object CustomEvent]")
public void customEvent() throws Exception {
test("CustomEvent");
}
@@ -1698,9 +1555,7 @@ public void dataStoreTask() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DataTransfer() { [native code] }",
- IE = "[object DataTransfer]",
- FF = "function DataTransfer() {\n [native code]\n}",
- FF_ESR = "function DataTransfer() {\n [native code]\n}")
+ IE = "[object DataTransfer]")
public void dataTransfer() throws Exception {
test("DataTransfer");
}
@@ -1709,11 +1564,8 @@ public void dataTransfer() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DataTransferItem() { [native code] }",
- EDGE = "function DataTransferItem() { [native code] }",
- FF = "function DataTransferItem() {\n [native code]\n}",
- FF_ESR = "function DataTransferItem() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DataTransferItem() { [native code] }",
+ IE = "exception")
public void dataTransferItem() throws Exception {
test("DataTransferItem");
}
@@ -1722,11 +1574,8 @@ public void dataTransferItem() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DataTransferItemList() { [native code] }",
- EDGE = "function DataTransferItemList() { [native code] }",
- FF = "function DataTransferItemList() {\n [native code]\n}",
- FF_ESR = "function DataTransferItemList() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DataTransferItemList() { [native code] }",
+ IE = "exception")
public void dataTransferItemList() throws Exception {
test("DataTransferItemList");
}
@@ -1738,9 +1587,7 @@ public void dataTransferItemList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DataView() { [native code] }",
- FF = "function DataView() {\n [native code]\n}",
- IE = "function DataView() {\n [native code]\n}\n",
- FF_ESR = "function DataView() {\n [native code]\n}")
+ IE = "function DataView() {\n [native code]\n}\n")
public void dataView() throws Exception {
test("DataView");
}
@@ -1750,9 +1597,7 @@ public void dataView() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Date() { [native code] }",
- FF = "function Date() {\n [native code]\n}",
- IE = "function Date() {\n [native code]\n}\n",
- FF_ESR = "function Date() {\n [native code]\n}")
+ IE = "function Date() {\n [native code]\n}\n")
public void date() throws Exception {
test("Date");
}
@@ -1762,9 +1607,7 @@ public void date() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function decodeURI() { [native code] }",
- FF = "function decodeURI() {\n [native code]\n}",
- IE = "function decodeURI() {\n [native code]\n}\n",
- FF_ESR = "function decodeURI() {\n [native code]\n}")
+ IE = "function decodeURI() {\n [native code]\n}\n")
public void decodeURI() throws Exception {
test("decodeURI");
}
@@ -1774,9 +1617,7 @@ public void decodeURI() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function decodeURIComponent() { [native code] }",
- FF = "function decodeURIComponent() {\n [native code]\n}",
- IE = "function decodeURIComponent() {\n [native code]\n}\n",
- FF_ESR = "function decodeURIComponent() {\n [native code]\n}")
+ IE = "function decodeURIComponent() {\n [native code]\n}\n")
public void decodeURIComponent() throws Exception {
test("decodeURIComponent");
}
@@ -1795,9 +1636,7 @@ public void dedicatedWorkerGlobalScope() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DelayNode() { [native code] }",
- IE = "exception",
- FF = "function DelayNode() {\n [native code]\n}",
- FF_ESR = "function DelayNode() {\n [native code]\n}")
+ IE = "exception")
public void delayNode() throws Exception {
test("DelayNode");
}
@@ -1827,9 +1666,7 @@ public void deviceLightEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DeviceMotionEvent() { [native code] }",
- IE = "[object DeviceMotionEvent]",
- FF = "function DeviceMotionEvent() {\n [native code]\n}",
- FF_ESR = "function DeviceMotionEvent() {\n [native code]\n}")
+ IE = "[object DeviceMotionEvent]")
public void deviceMotionEvent() throws Exception {
test("DeviceMotionEvent");
}
@@ -1839,9 +1676,7 @@ public void deviceMotionEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DeviceOrientationEvent() { [native code] }",
- IE = "[object DeviceOrientationEvent]",
- FF = "function DeviceOrientationEvent() {\n [native code]\n}",
- FF_ESR = "function DeviceOrientationEvent() {\n [native code]\n}")
+ IE = "[object DeviceOrientationEvent]")
public void deviceOrientationEvent() throws Exception {
test("DeviceOrientationEvent");
}
@@ -1927,9 +1762,7 @@ public void directoryReaderSync() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Document() { [native code] }",
- IE = "[object Document]",
- FF = "function Document() {\n [native code]\n}",
- FF_ESR = "function Document() {\n [native code]\n}")
+ IE = "[object Document]")
public void document() throws Exception {
test("Document");
}
@@ -1941,9 +1774,7 @@ public void document() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DocumentFragment() { [native code] }",
- IE = "[object DocumentFragment]",
- FF = "function DocumentFragment() {\n [native code]\n}",
- FF_ESR = "function DocumentFragment() {\n [native code]\n}")
+ IE = "[object DocumentFragment]")
public void documentFragment() throws Exception {
test("DocumentFragment");
}
@@ -1961,11 +1792,8 @@ public void documentOrShadowRoot() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DocumentTimeline() { [native code] }",
- EDGE = "function DocumentTimeline() { [native code] }",
- FF = "function DocumentTimeline() {\n [native code]\n}",
- FF_ESR = "function DocumentTimeline() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DocumentTimeline() { [native code] }",
+ IE = "exception")
@HtmlUnitNYI(CHROME = "exception", EDGE = "exception", FF = "exception", FF_ESR = "exception")
public void documentTimeline() throws Exception {
test("DocumentTimeline");
@@ -1987,9 +1815,7 @@ public void documentTouch() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DocumentType() { [native code] }",
- IE = "[object DocumentType]",
- FF = "function DocumentType() {\n [native code]\n}",
- FF_ESR = "function DocumentType() {\n [native code]\n}")
+ IE = "[object DocumentType]")
public void documentType() throws Exception {
test("DocumentType");
}
@@ -2069,9 +1895,7 @@ public void domErrorHandler() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DOMException() { [native code] }",
- IE = "[object DOMException]",
- FF = "function DOMException() {\n [native code]\n}",
- FF_ESR = "function DOMException() {\n [native code]\n}")
+ IE = "[object DOMException]")
public void domException() throws Exception {
test("DOMException");
}
@@ -2092,9 +1916,7 @@ public void domHighResTimeStamp() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DOMImplementation() { [native code] }",
- IE = "[object DOMImplementation]",
- FF = "function DOMImplementation() {\n [native code]\n}",
- FF_ESR = "function DOMImplementation() {\n [native code]\n}")
+ IE = "[object DOMImplementation]")
public void domImplementation() throws Exception {
test("DOMImplementation");
}
@@ -2139,11 +1961,8 @@ public void domLocator() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DOMMatrix() { [native code] }",
- EDGE = "function DOMMatrix() { [native code] }",
- FF = "function DOMMatrix() {\n [native code]\n}",
- FF_ESR = "function DOMMatrix() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DOMMatrix() { [native code] }",
+ IE = "exception")
public void domMatrix() throws Exception {
test("DOMMatrix");
}
@@ -2152,11 +1971,8 @@ public void domMatrix() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DOMMatrixReadOnly() { [native code] }",
- EDGE = "function DOMMatrixReadOnly() { [native code] }",
- FF = "function DOMMatrixReadOnly() {\n [native code]\n}",
- FF_ESR = "function DOMMatrixReadOnly() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DOMMatrixReadOnly() { [native code] }",
+ IE = "exception")
public void domMatrixReadOnly() throws Exception {
test("DOMMatrixReadOnly");
}
@@ -2177,9 +1993,7 @@ public void domObject() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DOMParser() { [native code] }",
- FF = "function DOMParser() {\n [native code]\n}",
- IE = "function DOMParser() {\n [native code]\n}\n",
- FF_ESR = "function DOMParser() {\n [native code]\n}")
+ IE = "function DOMParser() {\n [native code]\n}\n")
public void domParser() throws Exception {
test("DOMParser");
}
@@ -2188,11 +2002,8 @@ public void domParser() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DOMPoint() { [native code] }",
- EDGE = "function DOMPoint() { [native code] }",
- FF = "function DOMPoint() {\n [native code]\n}",
- FF_ESR = "function DOMPoint() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DOMPoint() { [native code] }",
+ IE = "exception")
public void domPoint() throws Exception {
test("DOMPoint");
}
@@ -2201,11 +2012,8 @@ public void domPoint() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DOMPointReadOnly() { [native code] }",
- EDGE = "function DOMPointReadOnly() { [native code] }",
- FF = "function DOMPointReadOnly() {\n [native code]\n}",
- FF_ESR = "function DOMPointReadOnly() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DOMPointReadOnly() { [native code] }",
+ IE = "exception")
public void domPointReadOnly() throws Exception {
test("DOMPointReadOnly");
}
@@ -2216,11 +2024,8 @@ public void domPointReadOnly() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DOMRect() { [native code] }",
- EDGE = "function DOMRect() { [native code] }",
- FF = "function DOMRect() {\n [native code]\n}",
- FF_ESR = "function DOMRect() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DOMRect() { [native code] }",
+ IE = "exception")
public void domRect() throws Exception {
test("DOMRect");
}
@@ -2229,9 +2034,7 @@ public void domRect() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "function DOMRectList() {\n [native code]\n}",
- CHROME = "function DOMRectList() { [native code] }",
- EDGE = "function DOMRectList() { [native code] }",
+ @Alerts(DEFAULT = "function DOMRectList() { [native code] }",
IE = "exception")
public void domRectList() throws Exception {
test("DOMRectList");
@@ -2241,11 +2044,8 @@ public void domRectList() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DOMRectReadOnly() { [native code] }",
- EDGE = "function DOMRectReadOnly() { [native code] }",
- FF = "function DOMRectReadOnly() {\n [native code]\n}",
- FF_ESR = "function DOMRectReadOnly() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DOMRectReadOnly() { [native code] }",
+ IE = "exception")
public void domRectReadOnly() throws Exception {
test("DOMRectReadOnly");
}
@@ -2255,8 +2055,8 @@ public void domRectReadOnly() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function DOMRequest() {\n [native code]\n}",
- FF_ESR = "function DOMRequest() {\n [native code]\n}")
+ FF = "function DOMRequest() { [native code] }",
+ FF_ESR = "function DOMRequest() { [native code] }")
public void domRequest() throws Exception {
test("DOMRequest");
}
@@ -2285,9 +2085,7 @@ public void domString() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DOMStringList() { [native code] }",
- FF = "function DOMStringList() {\n [native code]\n}",
- IE = "[object DOMStringList]",
- FF_ESR = "function DOMStringList() {\n [native code]\n}")
+ IE = "[object DOMStringList]")
public void domStringList() throws Exception {
test("DOMStringList");
}
@@ -2299,9 +2097,7 @@ public void domStringList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DOMStringMap() { [native code] }",
- IE = "[object DOMStringMap]",
- FF = "function DOMStringMap() {\n [native code]\n}",
- FF_ESR = "function DOMStringMap() {\n [native code]\n}")
+ IE = "[object DOMStringMap]")
public void domStringMap() throws Exception {
test("DOMStringMap");
}
@@ -2322,9 +2118,7 @@ public void domTimeStamp() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DOMTokenList() { [native code] }",
- IE = "[object DOMTokenList]",
- FF = "function DOMTokenList() {\n [native code]\n}",
- FF_ESR = "function DOMTokenList() {\n [native code]\n}")
+ IE = "[object DOMTokenList]")
public void domTokenList() throws Exception {
test("DOMTokenList");
}
@@ -2351,10 +2145,7 @@ public void doubleRange() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(CHROME = "function DragEvent() { [native code] }",
- EDGE = "function DragEvent() { [native code] }",
- FF = "function DragEvent() {\n [native code]\n}",
- FF_ESR = "function DragEvent() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function DragEvent() { [native code] }",
IE = "[object DragEvent]")
public void dragEvent() throws Exception {
test("DragEvent");
@@ -2365,9 +2156,7 @@ public void dragEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DynamicsCompressorNode() { [native code] }",
- IE = "exception",
- FF = "function DynamicsCompressorNode() {\n [native code]\n}",
- FF_ESR = "function DynamicsCompressorNode() {\n [native code]\n}")
+ IE = "exception")
public void dynamicsCompressorNode() throws Exception {
test("DynamicsCompressorNode");
}
@@ -2379,9 +2168,7 @@ public void dynamicsCompressorNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Element() { [native code] }",
- IE = "[object Element]",
- FF = "function Element() {\n [native code]\n}",
- FF_ESR = "function Element() {\n [native code]\n}")
+ IE = "[object Element]")
public void element() throws Exception {
test("Element");
}
@@ -2400,9 +2187,7 @@ public void elementTraversal() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function encodeURI() { [native code] }",
- FF = "function encodeURI() {\n [native code]\n}",
- IE = "function encodeURI() {\n [native code]\n}\n",
- FF_ESR = "function encodeURI() {\n [native code]\n}")
+ IE = "function encodeURI() {\n [native code]\n}\n")
public void encodeURI() throws Exception {
test("encodeURI");
}
@@ -2412,9 +2197,7 @@ public void encodeURI() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function encodeURIComponent() { [native code] }",
- FF = "function encodeURIComponent() {\n [native code]\n}",
- IE = "function encodeURIComponent() {\n [native code]\n}\n",
- FF_ESR = "function encodeURIComponent() {\n [native code]\n}")
+ IE = "function encodeURIComponent() {\n [native code]\n}\n")
public void encodeURIComponent() throws Exception {
test("encodeURIComponent");
}
@@ -2472,9 +2255,7 @@ public void enumerator() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Error() { [native code] }",
- FF = "function Error() {\n [native code]\n}",
- IE = "function Error() {\n [native code]\n}\n",
- FF_ESR = "function Error() {\n [native code]\n}")
+ IE = "function Error() {\n [native code]\n}\n")
public void error() throws Exception {
test("Error");
}
@@ -2484,9 +2265,7 @@ public void error() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ErrorEvent() { [native code] }",
- FF = "function ErrorEvent() {\n [native code]\n}",
- IE = "[object ErrorEvent]",
- FF_ESR = "function ErrorEvent() {\n [native code]\n}")
+ IE = "[object ErrorEvent]")
public void errorEvent() throws Exception {
test("ErrorEvent");
}
@@ -2496,9 +2275,7 @@ public void errorEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function escape() { [native code] }",
- FF = "function escape() {\n [native code]\n}",
- IE = "function escape() {\n [native code]\n}\n",
- FF_ESR = "function escape() {\n [native code]\n}")
+ IE = "function escape() {\n [native code]\n}\n")
public void escape() throws Exception {
test("escape");
}
@@ -2508,9 +2285,7 @@ public void escape() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function eval() { [native code] }",
- FF = "function eval() {\n [native code]\n}",
- IE = "function eval() {\n [native code]\n}\n",
- FF_ESR = "function eval() {\n [native code]\n}")
+ IE = "function eval() {\n [native code]\n}\n")
public void eval() throws Exception {
test("eval");
}
@@ -2520,9 +2295,7 @@ public void eval() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function EvalError() { [native code] }",
- FF = "function EvalError() {\n [native code]\n}",
- IE = "function EvalError() {\n [native code]\n}\n",
- FF_ESR = "function EvalError() {\n [native code]\n}")
+ IE = "function EvalError() {\n [native code]\n}\n")
public void evalError() throws Exception {
test("EvalError");
}
@@ -2534,9 +2307,7 @@ public void evalError() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Event() { [native code] }",
- IE = "[object Event]",
- FF = "function Event() {\n [native code]\n}",
- FF_ESR = "function Event() {\n [native code]\n}")
+ IE = "[object Event]")
public void event() throws Exception {
test("Event");
}
@@ -2563,11 +2334,8 @@ public void eventNode() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function EventSource() { [native code] }",
- EDGE = "function EventSource() { [native code] }",
- FF = "function EventSource() {\n [native code]\n}",
- FF_ESR = "function EventSource() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function EventSource() { [native code] }",
+ IE = "exception")
public void eventSource() throws Exception {
test("EventSource");
}
@@ -2577,9 +2345,7 @@ public void eventSource() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function EventTarget() { [native code] }",
- IE = "exception",
- FF = "function EventTarget() {\n [native code]\n}",
- FF_ESR = "function EventTarget() {\n [native code]\n}")
+ IE = "exception")
public void eventTarget() throws Exception {
test("EventTarget");
}
@@ -2713,9 +2479,7 @@ public void fetchEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function File() { [native code] }",
- FF = "function File() {\n [native code]\n}",
- IE = "[object File]",
- FF_ESR = "function File() {\n [native code]\n}")
+ IE = "[object File]")
public void file() throws Exception {
test("File");
}
@@ -2770,9 +2534,7 @@ public void fileHandle() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function FileList() { [native code] }",
- FF = "function FileList() {\n [native code]\n}",
- IE = "[object FileList]",
- FF_ESR = "function FileList() {\n [native code]\n}")
+ IE = "[object FileList]")
public void fileList() throws Exception {
test("FileList");
}
@@ -2782,9 +2544,7 @@ public void fileList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function FileReader() { [native code] }",
- FF = "function FileReader() {\n [native code]\n}",
- IE = "function FileReader() {\n [native code]\n}\n",
- FF_ESR = "function FileReader() {\n [native code]\n}")
+ IE = "function FileReader() {\n [native code]\n}\n")
public void fileReader() throws Exception {
test("FileReader");
}
@@ -2812,8 +2572,8 @@ public void fileRequest() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function FileSystem() {\n [native code]\n}",
- FF_ESR = "function FileSystem() {\n [native code]\n}")
+ FF = "function FileSystem() { [native code] }",
+ FF_ESR = "function FileSystem() { [native code] }")
public void fileSystem() throws Exception {
test("FileSystem");
}
@@ -2823,8 +2583,8 @@ public void fileSystem() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function FileSystemDirectoryEntry() {\n [native code]\n}",
- FF_ESR = "function FileSystemDirectoryEntry() {\n [native code]\n}")
+ FF = "function FileSystemDirectoryEntry() { [native code] }",
+ FF_ESR = "function FileSystemDirectoryEntry() { [native code] }")
public void fileSystemDirectoryEntry() throws Exception {
test("FileSystemDirectoryEntry");
}
@@ -2834,8 +2594,8 @@ public void fileSystemDirectoryEntry() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function FileSystemDirectoryReader() {\n [native code]\n}",
- FF_ESR = "function FileSystemDirectoryReader() {\n [native code]\n}")
+ FF = "function FileSystemDirectoryReader() { [native code] }",
+ FF_ESR = "function FileSystemDirectoryReader() { [native code] }")
public void fileSystemDirectoryReader() throws Exception {
test("FileSystemDirectoryReader");
}
@@ -2845,8 +2605,8 @@ public void fileSystemDirectoryReader() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function FileSystemEntry() {\n [native code]\n}",
- FF_ESR = "function FileSystemEntry() {\n [native code]\n}")
+ FF = "function FileSystemEntry() { [native code] }",
+ FF_ESR = "function FileSystemEntry() { [native code] }")
public void fileSystemEntry() throws Exception {
test("FileSystemEntry");
}
@@ -2856,8 +2616,8 @@ public void fileSystemEntry() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function FileSystemFileEntry() {\n [native code]\n}",
- FF_ESR = "function FileSystemFileEntry() {\n [native code]\n}")
+ FF = "function FileSystemFileEntry() { [native code] }",
+ FF_ESR = "function FileSystemFileEntry() { [native code] }")
public void fileSystemFileEntry() throws Exception {
test("FileSystemFileEntry");
}
@@ -2887,9 +2647,7 @@ public void fileSystemSync() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Float32Array() { [native code] }",
- FF = "function Float32Array() {\n [native code]\n}",
- IE = "function Float32Array() {\n [native code]\n}\n",
- FF_ESR = "function Float32Array() {\n [native code]\n}")
+ IE = "function Float32Array() {\n [native code]\n}\n")
public void float32Array() throws Exception {
test("Float32Array");
}
@@ -2901,9 +2659,7 @@ public void float32Array() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Float64Array() { [native code] }",
- FF = "function Float64Array() {\n [native code]\n}",
- IE = "function Float64Array() {\n [native code]\n}\n",
- FF_ESR = "function Float64Array() {\n [native code]\n}")
+ IE = "function Float64Array() {\n [native code]\n}\n")
public void float64Array() throws Exception {
test("Float64Array");
}
@@ -2922,9 +2678,7 @@ public void fMRadio() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function FocusEvent() { [native code] }",
- FF = "function FocusEvent() {\n [native code]\n}",
- IE = "[object FocusEvent]",
- FF_ESR = "function FocusEvent() {\n [native code]\n}")
+ IE = "[object FocusEvent]")
public void focusEvent() throws Exception {
test("FocusEvent");
}
@@ -2933,11 +2687,8 @@ public void focusEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function FontFace() { [native code] }",
- EDGE = "function FontFace() { [native code] }",
- FF = "function FontFace() {\n [native code]\n}",
- FF_ESR = "function FontFace() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function FontFace() { [native code] }",
+ IE = "exception")
public void fontFace() throws Exception {
test("FontFace");
}
@@ -2947,8 +2698,8 @@ public void fontFace() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function FontFaceSet() {\n [native code]\n}",
- FF_ESR = "function FontFaceSet() {\n [native code]\n}")
+ FF = "function FontFaceSet() { [native code] }",
+ FF_ESR = "function FontFaceSet() { [native code] }")
public void fontFaceSet() throws Exception {
test("FontFaceSet");
}
@@ -2969,9 +2720,7 @@ public void formChild() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function FormData() { [native code] }",
- FF = "function FormData() {\n [native code]\n}",
- IE = "function FormData() {\n [native code]\n}\n",
- FF_ESR = "function FormData() {\n [native code]\n}")
+ IE = "function FormData() {\n [native code]\n}\n")
public void formData() throws Exception {
test("FormData");
}
@@ -2990,9 +2739,7 @@ public void formField() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Function() { [native code] }",
- FF = "function Function() {\n [native code]\n}",
- IE = "function Function() {\n [native code]\n}\n",
- FF_ESR = "function Function() {\n [native code]\n}")
+ IE = "function Function() {\n [native code]\n}\n")
public void function() throws Exception {
test("Function");
}
@@ -3002,9 +2749,7 @@ public void function() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function GainNode() { [native code] }",
- IE = "exception",
- FF = "function GainNode() {\n [native code]\n}",
- FF_ESR = "function GainNode() {\n [native code]\n}")
+ IE = "exception")
public void gainNode() throws Exception {
test("GainNode");
}
@@ -3014,9 +2759,7 @@ public void gainNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Gamepad() { [native code] }",
- IE = "exception",
- FF = "function Gamepad() {\n [native code]\n}",
- FF_ESR = "function Gamepad() {\n [native code]\n}")
+ IE = "exception")
public void gamepad() throws Exception {
test("Gamepad");
}
@@ -3028,9 +2771,7 @@ public void gamepad() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function GamepadButton() { [native code] }",
- IE = "exception",
- FF = "function GamepadButton() {\n [native code]\n}",
- FF_ESR = "function GamepadButton() {\n [native code]\n}")
+ IE = "exception")
public void gamepadButton() throws Exception {
test("GamepadButton");
}
@@ -3040,9 +2781,7 @@ public void gamepadButton() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function GamepadEvent() { [native code] }",
- IE = "exception",
- FF = "function GamepadEvent() {\n [native code]\n}",
- FF_ESR = "function GamepadEvent() {\n [native code]\n}")
+ IE = "exception")
public void gamepadEvent() throws Exception {
test("GamepadEvent");
}
@@ -3071,10 +2810,7 @@ public void generatorFunction() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(CHROME = "function Geolocation() { [native code] }",
- EDGE = "function Geolocation() { [native code] }",
- FF = "function Geolocation() {\n [native code]\n}",
- FF_ESR = "function Geolocation() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function Geolocation() { [native code] }",
IE = "[object Geolocation]")
public void geolocation() throws Exception {
test("Geolocation");
@@ -3114,9 +2850,7 @@ public void globalFetch() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HashChangeEvent() { [native code] }",
- IE = "exception",
- FF = "function HashChangeEvent() {\n [native code]\n}",
- FF_ESR = "function HashChangeEvent() {\n [native code]\n}")
+ IE = "exception")
public void hashChangeEvent() throws Exception {
test("HashChangeEvent");
}
@@ -3125,11 +2859,8 @@ public void hashChangeEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function Headers() { [native code] }",
- EDGE = "function Headers() { [native code] }",
- FF = "function Headers() {\n [native code]\n}",
- FF_ESR = "function Headers() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function Headers() { [native code] }",
+ IE = "exception")
public void headers() throws Exception {
test("Headers");
}
@@ -3141,9 +2872,7 @@ public void headers() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function History() { [native code] }",
- IE = "[object History]",
- FF = "function History() {\n [native code]\n}",
- FF_ESR = "function History() {\n [native code]\n}")
+ IE = "[object History]")
public void history() throws Exception {
test("History");
}
@@ -3164,9 +2893,7 @@ public void hMDVRDevice() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLAllCollection() { [native code] }",
- IE = "[object HTMLAllCollection]",
- FF = "function HTMLAllCollection() {\n [native code]\n}",
- FF_ESR = "function HTMLAllCollection() {\n [native code]\n}")
+ IE = "[object HTMLAllCollection]")
public void htmlAllCollection() throws Exception {
test("HTMLAllCollection");
}
@@ -3178,9 +2905,7 @@ public void htmlAllCollection() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLAnchorElement() { [native code] }",
- IE = "[object HTMLAnchorElement]",
- FF = "function HTMLAnchorElement() {\n [native code]\n}",
- FF_ESR = "function HTMLAnchorElement() {\n [native code]\n}")
+ IE = "[object HTMLAnchorElement]")
public void htmlAnchorElement() throws Exception {
test("HTMLAnchorElement");
}
@@ -3204,9 +2929,7 @@ public void htmlAppletElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLAreaElement() { [native code] }",
- IE = "[object HTMLAreaElement]",
- FF = "function HTMLAreaElement() {\n [native code]\n}",
- FF_ESR = "function HTMLAreaElement() {\n [native code]\n}")
+ IE = "[object HTMLAreaElement]")
public void htmlAreaElement() throws Exception {
test("HTMLAreaElement");
}
@@ -3218,9 +2941,7 @@ public void htmlAreaElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLAudioElement() { [native code] }",
- IE = "[object HTMLAudioElement]",
- FF = "function HTMLAudioElement() {\n [native code]\n}",
- FF_ESR = "function HTMLAudioElement() {\n [native code]\n}")
+ IE = "[object HTMLAudioElement]")
public void htmlAudioElement() throws Exception {
test("HTMLAudioElement");
}
@@ -3232,9 +2953,7 @@ public void htmlAudioElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLBaseElement() { [native code] }",
- IE = "[object HTMLBaseElement]",
- FF = "function HTMLBaseElement() {\n [native code]\n}",
- FF_ESR = "function HTMLBaseElement() {\n [native code]\n}")
+ IE = "[object HTMLBaseElement]")
public void htmlBaseElement() throws Exception {
test("HTMLBaseElement");
}
@@ -3293,9 +3012,7 @@ public void htmlBlockQuoteElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLBodyElement() { [native code] }",
- IE = "[object HTMLBodyElement]",
- FF = "function HTMLBodyElement() {\n [native code]\n}",
- FF_ESR = "function HTMLBodyElement() {\n [native code]\n}")
+ IE = "[object HTMLBodyElement]")
public void htmlBodyElement() throws Exception {
test("HTMLBodyElement");
}
@@ -3307,9 +3024,7 @@ public void htmlBodyElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLBRElement() { [native code] }",
- IE = "[object HTMLBRElement]",
- FF = "function HTMLBRElement() {\n [native code]\n}",
- FF_ESR = "function HTMLBRElement() {\n [native code]\n}")
+ IE = "[object HTMLBRElement]")
public void htmlBRElement() throws Exception {
test("HTMLBRElement");
}
@@ -3321,9 +3036,7 @@ public void htmlBRElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLButtonElement() { [native code] }",
- IE = "[object HTMLButtonElement]",
- FF = "function HTMLButtonElement() {\n [native code]\n}",
- FF_ESR = "function HTMLButtonElement() {\n [native code]\n}")
+ IE = "[object HTMLButtonElement]")
public void htmlButtonElement() throws Exception {
test("HTMLButtonElement");
}
@@ -3335,9 +3048,7 @@ public void htmlButtonElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLCanvasElement() { [native code] }",
- IE = "[object HTMLCanvasElement]",
- FF = "function HTMLCanvasElement() {\n [native code]\n}",
- FF_ESR = "function HTMLCanvasElement() {\n [native code]\n}")
+ IE = "[object HTMLCanvasElement]")
public void htmlCanvasElement() throws Exception {
test("HTMLCanvasElement");
}
@@ -3349,9 +3060,7 @@ public void htmlCanvasElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLCollection() { [native code] }",
- IE = "[object HTMLCollection]",
- FF = "function HTMLCollection() {\n [native code]\n}",
- FF_ESR = "function HTMLCollection() {\n [native code]\n}")
+ IE = "[object HTMLCollection]")
public void htmlCollection() throws Exception {
test("HTMLCollection");
}
@@ -3380,11 +3089,8 @@ public void htmlContentElement() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLDataElement() { [native code] }",
- EDGE = "function HTMLDataElement() { [native code] }",
- FF = "function HTMLDataElement() {\n [native code]\n}",
- FF_ESR = "function HTMLDataElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLDataElement() { [native code] }",
+ IE = "exception")
public void htmlDataElement() throws Exception {
test("HTMLDataElement");
}
@@ -3396,9 +3102,7 @@ public void htmlDataElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLDataListElement() { [native code] }",
- IE = "[object HTMLDataListElement]",
- FF = "function HTMLDataListElement() {\n [native code]\n}",
- FF_ESR = "function HTMLDataListElement() {\n [native code]\n}")
+ IE = "[object HTMLDataListElement]")
public void htmlDataListElement() throws Exception {
test("HTMLDataListElement");
}
@@ -3443,11 +3147,8 @@ public void htmlDefinitionTermElement() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLDetailsElement() { [native code] }",
- EDGE = "function HTMLDetailsElement() { [native code] }",
- FF = "function HTMLDetailsElement() {\n [native code]\n}",
- FF_ESR = "function HTMLDetailsElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLDetailsElement() { [native code] }",
+ IE = "exception")
public void htmlDetailsElement() throws Exception {
test("HTMLDetailsElement");
}
@@ -3458,11 +3159,8 @@ public void htmlDetailsElement() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLDialogElement() { [native code] }",
- EDGE = "function HTMLDialogElement() { [native code] }",
- FF = "function HTMLDialogElement() {\n [native code]\n}",
- FF_ESR = "function HTMLDialogElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLDialogElement() { [native code] }",
+ IE = "exception")
public void htmlDialogElement() throws Exception {
test("HTMLDialogElement");
}
@@ -3474,9 +3172,7 @@ public void htmlDialogElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLDirectoryElement() { [native code] }",
- IE = "[object HTMLDirectoryElement]",
- FF = "function HTMLDirectoryElement() {\n [native code]\n}",
- FF_ESR = "function HTMLDirectoryElement() {\n [native code]\n}")
+ IE = "[object HTMLDirectoryElement]")
public void htmlDirectoryElement() throws Exception {
test("HTMLDirectoryElement");
}
@@ -3488,9 +3184,7 @@ public void htmlDirectoryElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLDivElement() { [native code] }",
- IE = "[object HTMLDivElement]",
- FF = "function HTMLDivElement() {\n [native code]\n}",
- FF_ESR = "function HTMLDivElement() {\n [native code]\n}")
+ IE = "[object HTMLDivElement]")
public void htmlDivElement() throws Exception {
test("HTMLDivElement");
}
@@ -3502,9 +3196,7 @@ public void htmlDivElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLDListElement() { [native code] }",
- IE = "[object HTMLDListElement]",
- FF = "function HTMLDListElement() {\n [native code]\n}",
- FF_ESR = "function HTMLDListElement() {\n [native code]\n}")
+ IE = "[object HTMLDListElement]")
public void htmlDListElement() throws Exception {
test("HTMLDListElement");
}
@@ -3516,9 +3208,7 @@ public void htmlDListElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLDocument() { [native code] }",
- IE = "[object HTMLDocument]",
- FF = "function HTMLDocument() {\n [native code]\n}",
- FF_ESR = "function HTMLDocument() {\n [native code]\n}")
+ IE = "[object HTMLDocument]")
public void htmlDocument() throws Exception {
test("HTMLDocument");
}
@@ -3542,9 +3232,7 @@ public void htmlDTElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLElement() { [native code] }",
- IE = "[object HTMLElement]",
- FF = "function HTMLElement() {\n [native code]\n}",
- FF_ESR = "function HTMLElement() {\n [native code]\n}")
+ IE = "[object HTMLElement]")
public void htmlElement() throws Exception {
test("HTMLElement");
}
@@ -3556,9 +3244,7 @@ public void htmlElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLEmbedElement() { [native code] }",
- IE = "[object HTMLEmbedElement]",
- FF = "function HTMLEmbedElement() {\n [native code]\n}",
- FF_ESR = "function HTMLEmbedElement() {\n [native code]\n}")
+ IE = "[object HTMLEmbedElement]")
public void htmlEmbedElement() throws Exception {
test("HTMLEmbedElement");
}
@@ -3570,9 +3256,7 @@ public void htmlEmbedElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLFieldSetElement() { [native code] }",
- IE = "[object HTMLFieldSetElement]",
- FF = "function HTMLFieldSetElement() {\n [native code]\n}",
- FF_ESR = "function HTMLFieldSetElement() {\n [native code]\n}")
+ IE = "[object HTMLFieldSetElement]")
public void htmlFieldSetElement() throws Exception {
test("HTMLFieldSetElement");
}
@@ -3584,9 +3268,7 @@ public void htmlFieldSetElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLFontElement() { [native code] }",
- IE = "[object HTMLFontElement]",
- FF = "function HTMLFontElement() {\n [native code]\n}",
- FF_ESR = "function HTMLFontElement() {\n [native code]\n}")
+ IE = "[object HTMLFontElement]")
public void htmlFontElement() throws Exception {
test("HTMLFontElement");
}
@@ -3595,11 +3277,8 @@ public void htmlFontElement() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLFormControlsCollection() { [native code] }",
- EDGE = "function HTMLFormControlsCollection() { [native code] }",
- FF = "function HTMLFormControlsCollection() {\n [native code]\n}",
- FF_ESR = "function HTMLFormControlsCollection() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLFormControlsCollection() { [native code] }",
+ IE = "exception")
public void htmlFormControlsCollection() throws Exception {
test("HTMLFormControlsCollection");
}
@@ -3611,9 +3290,7 @@ public void htmlFormControlsCollection() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLFormElement() { [native code] }",
- IE = "[object HTMLFormElement]",
- FF = "function HTMLFormElement() {\n [native code]\n}",
- FF_ESR = "function HTMLFormElement() {\n [native code]\n}")
+ IE = "[object HTMLFormElement]")
public void htmlFormElement() throws Exception {
test("HTMLFormElement");
}
@@ -3625,9 +3302,7 @@ public void htmlFormElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLFrameElement() { [native code] }",
- IE = "[object HTMLFrameElement]",
- FF = "function HTMLFrameElement() {\n [native code]\n}",
- FF_ESR = "function HTMLFrameElement() {\n [native code]\n}")
+ IE = "[object HTMLFrameElement]")
public void htmlFrameElement() throws Exception {
test("HTMLFrameElement");
}
@@ -3639,9 +3314,7 @@ public void htmlFrameElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLFrameSetElement() { [native code] }",
- IE = "[object HTMLFrameSetElement]",
- FF = "function HTMLFrameSetElement() {\n [native code]\n}",
- FF_ESR = "function HTMLFrameSetElement() {\n [native code]\n}")
+ IE = "[object HTMLFrameSetElement]")
public void htmlFrameSetElement() throws Exception {
test("HTMLFrameSetElement");
}
@@ -3664,9 +3337,7 @@ public void htmlGenericElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLHeadElement() { [native code] }",
- IE = "[object HTMLHeadElement]",
- FF = "function HTMLHeadElement() {\n [native code]\n}",
- FF_ESR = "function HTMLHeadElement() {\n [native code]\n}")
+ IE = "[object HTMLHeadElement]")
public void htmlHeadElement() throws Exception {
test("HTMLHeadElement");
}
@@ -3678,9 +3349,7 @@ public void htmlHeadElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLHeadingElement() { [native code] }",
- IE = "[object HTMLHeadingElement]",
- FF = "function HTMLHeadingElement() {\n [native code]\n}",
- FF_ESR = "function HTMLHeadingElement() {\n [native code]\n}")
+ IE = "[object HTMLHeadingElement]")
public void htmlHeadingElement() throws Exception {
test("HTMLHeadingElement");
}
@@ -3692,9 +3361,7 @@ public void htmlHeadingElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLHRElement() { [native code] }",
- IE = "[object HTMLHRElement]",
- FF = "function HTMLHRElement() {\n [native code]\n}",
- FF_ESR = "function HTMLHRElement() {\n [native code]\n}")
+ IE = "[object HTMLHRElement]")
public void htmlHRElement() throws Exception {
test("HTMLHRElement");
}
@@ -3706,9 +3373,7 @@ public void htmlHRElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLHtmlElement() { [native code] }",
- IE = "[object HTMLHtmlElement]",
- FF = "function HTMLHtmlElement() {\n [native code]\n}",
- FF_ESR = "function HTMLHtmlElement() {\n [native code]\n}")
+ IE = "[object HTMLHtmlElement]")
public void htmlHtmlElement() throws Exception {
test("HTMLHtmlElement");
}
@@ -3729,9 +3394,7 @@ public void htmlHyperlinkElementUtils() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLIFrameElement() { [native code] }",
- IE = "[object HTMLIFrameElement]",
- FF = "function HTMLIFrameElement() {\n [native code]\n}",
- FF_ESR = "function HTMLIFrameElement() {\n [native code]\n}")
+ IE = "[object HTMLIFrameElement]")
public void htmlIFrameElement() throws Exception {
test("HTMLIFrameElement");
}
@@ -3743,9 +3406,7 @@ public void htmlIFrameElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLImageElement() { [native code] }",
- IE = "[object HTMLImageElement]",
- FF = "function HTMLImageElement() {\n [native code]\n}",
- FF_ESR = "function HTMLImageElement() {\n [native code]\n}")
+ IE = "[object HTMLImageElement]")
public void htmlImageElement() throws Exception {
test("HTMLImageElement");
}
@@ -3768,9 +3429,7 @@ public void htmlInlineQuotationElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLInputElement() { [native code] }",
- IE = "[object HTMLInputElement]",
- FF = "function HTMLInputElement() {\n [native code]\n}",
- FF_ESR = "function HTMLInputElement() {\n [native code]\n}")
+ IE = "[object HTMLInputElement]")
public void htmlInputElement() throws Exception {
test("HTMLInputElement");
}
@@ -3803,9 +3462,7 @@ public void htmlKeygenElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLLabelElement() { [native code] }",
- IE = "[object HTMLLabelElement]",
- FF = "function HTMLLabelElement() {\n [native code]\n}",
- FF_ESR = "function HTMLLabelElement() {\n [native code]\n}")
+ IE = "[object HTMLLabelElement]")
public void htmlLabelElement() throws Exception {
test("HTMLLabelElement");
}
@@ -3817,9 +3474,7 @@ public void htmlLabelElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLLegendElement() { [native code] }",
- IE = "[object HTMLLegendElement]",
- FF = "function HTMLLegendElement() {\n [native code]\n}",
- FF_ESR = "function HTMLLegendElement() {\n [native code]\n}")
+ IE = "[object HTMLLegendElement]")
public void htmlLegendElement() throws Exception {
test("HTMLLegendElement");
}
@@ -3831,9 +3486,7 @@ public void htmlLegendElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLLIElement() { [native code] }",
- IE = "[object HTMLLIElement]",
- FF = "function HTMLLIElement() {\n [native code]\n}",
- FF_ESR = "function HTMLLIElement() {\n [native code]\n}")
+ IE = "[object HTMLLIElement]")
public void htmlLIElement() throws Exception {
test("HTMLLIElement");
}
@@ -3845,9 +3498,7 @@ public void htmlLIElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLLinkElement() { [native code] }",
- IE = "[object HTMLLinkElement]",
- FF = "function HTMLLinkElement() {\n [native code]\n}",
- FF_ESR = "function HTMLLinkElement() {\n [native code]\n}")
+ IE = "[object HTMLLinkElement]")
public void htmlLinkElement() throws Exception {
test("HTMLLinkElement");
}
@@ -3870,9 +3521,7 @@ public void htmlListElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLMapElement() { [native code] }",
- IE = "[object HTMLMapElement]",
- FF = "function HTMLMapElement() {\n [native code]\n}",
- FF_ESR = "function HTMLMapElement() {\n [native code]\n}")
+ IE = "[object HTMLMapElement]")
public void htmlMapElement() throws Exception {
test("HTMLMapElement");
}
@@ -3884,9 +3533,7 @@ public void htmlMapElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLMarqueeElement() { [native code] }",
- IE = "[object HTMLMarqueeElement]",
- FF = "function HTMLMarqueeElement() {\n [native code]\n}",
- FF_ESR = "function HTMLMarqueeElement() {\n [native code]\n}")
+ IE = "[object HTMLMarqueeElement]")
public void htmlMarqueeElement() throws Exception {
test("HTMLMarqueeElement");
}
@@ -3898,9 +3545,7 @@ public void htmlMarqueeElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLMediaElement() { [native code] }",
- IE = "[object HTMLMediaElement]",
- FF = "function HTMLMediaElement() {\n [native code]\n}",
- FF_ESR = "function HTMLMediaElement() {\n [native code]\n}")
+ IE = "[object HTMLMediaElement]")
public void htmlMediaElement() throws Exception {
test("HTMLMediaElement");
}
@@ -3912,9 +3557,7 @@ public void htmlMediaElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLMenuElement() { [native code] }",
- IE = "[object HTMLMenuElement]",
- FF = "function HTMLMenuElement() {\n [native code]\n}",
- FF_ESR = "function HTMLMenuElement() {\n [native code]\n}")
+ IE = "[object HTMLMenuElement]")
public void htmlMenuElement() throws Exception {
test("HTMLMenuElement");
}
@@ -3935,9 +3578,7 @@ public void htmlMenuItemElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLMetaElement() { [native code] }",
- IE = "[object HTMLMetaElement]",
- FF = "function HTMLMetaElement() {\n [native code]\n}",
- FF_ESR = "function HTMLMetaElement() {\n [native code]\n}")
+ IE = "[object HTMLMetaElement]")
public void htmlMetaElement() throws Exception {
test("HTMLMetaElement");
}
@@ -3948,11 +3589,8 @@ public void htmlMetaElement() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLMeterElement() { [native code] }",
- EDGE = "function HTMLMeterElement() { [native code] }",
- FF = "function HTMLMeterElement() {\n [native code]\n}",
- FF_ESR = "function HTMLMeterElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLMeterElement() { [native code] }",
+ IE = "exception")
public void htmlMeterElement() throws Exception {
test("HTMLMeterElement");
}
@@ -3964,9 +3602,7 @@ public void htmlMeterElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLModElement() { [native code] }",
- IE = "[object HTMLModElement]",
- FF = "function HTMLModElement() {\n [native code]\n}",
- FF_ESR = "function HTMLModElement() {\n [native code]\n}")
+ IE = "[object HTMLModElement]")
public void htmlModElement() throws Exception {
test("HTMLModElement");
}
@@ -3999,9 +3635,7 @@ public void htmlNoShowElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLObjectElement() { [native code] }",
- IE = "[object HTMLObjectElement]",
- FF = "function HTMLObjectElement() {\n [native code]\n}",
- FF_ESR = "function HTMLObjectElement() {\n [native code]\n}")
+ IE = "[object HTMLObjectElement]")
public void htmlObjectElement() throws Exception {
test("HTMLObjectElement");
}
@@ -4013,9 +3647,7 @@ public void htmlObjectElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLOListElement() { [native code] }",
- IE = "[object HTMLOListElement]",
- FF = "function HTMLOListElement() {\n [native code]\n}",
- FF_ESR = "function HTMLOListElement() {\n [native code]\n}")
+ IE = "[object HTMLOListElement]")
public void htmlOListElement() throws Exception {
test("HTMLOListElement");
}
@@ -4027,9 +3659,7 @@ public void htmlOListElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLOptGroupElement() { [native code] }",
- IE = "[object HTMLOptGroupElement]",
- FF = "function HTMLOptGroupElement() {\n [native code]\n}",
- FF_ESR = "function HTMLOptGroupElement() {\n [native code]\n}")
+ IE = "[object HTMLOptGroupElement]")
public void htmlOptGroupElement() throws Exception {
test("HTMLOptGroupElement");
}
@@ -4041,9 +3671,7 @@ public void htmlOptGroupElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLOptionElement() { [native code] }",
- IE = "[object HTMLOptionElement]",
- FF = "function HTMLOptionElement() {\n [native code]\n}",
- FF_ESR = "function HTMLOptionElement() {\n [native code]\n}")
+ IE = "[object HTMLOptionElement]")
public void htmlOptionElement() throws Exception {
test("HTMLOptionElement");
}
@@ -4054,11 +3682,8 @@ public void htmlOptionElement() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLOptionsCollection() { [native code] }",
- EDGE = "function HTMLOptionsCollection() { [native code] }",
- FF = "function HTMLOptionsCollection() {\n [native code]\n}",
- FF_ESR = "function HTMLOptionsCollection() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLOptionsCollection() { [native code] }",
+ IE = "exception")
public void htmlOptionsCollection() throws Exception {
test("HTMLOptionsCollection");
}
@@ -4069,11 +3694,8 @@ public void htmlOptionsCollection() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLOutputElement() { [native code] }",
- EDGE = "function HTMLOutputElement() { [native code] }",
- FF = "function HTMLOutputElement() {\n [native code]\n}",
- FF_ESR = "function HTMLOutputElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLOutputElement() { [native code] }",
+ IE = "exception")
public void htmlOutputElement() throws Exception {
test("HTMLOutputElement");
}
@@ -4085,9 +3707,7 @@ public void htmlOutputElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLParagraphElement() { [native code] }",
- IE = "[object HTMLParagraphElement]",
- FF = "function HTMLParagraphElement() {\n [native code]\n}",
- FF_ESR = "function HTMLParagraphElement() {\n [native code]\n}")
+ IE = "[object HTMLParagraphElement]")
public void htmlParagraphElement() throws Exception {
test("HTMLParagraphElement");
}
@@ -4099,9 +3719,7 @@ public void htmlParagraphElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLParamElement() { [native code] }",
- IE = "[object HTMLParamElement]",
- FF = "function HTMLParamElement() {\n [native code]\n}",
- FF_ESR = "function HTMLParamElement() {\n [native code]\n}")
+ IE = "[object HTMLParamElement]")
public void htmlParamElement() throws Exception {
test("HTMLParamElement");
}
@@ -4122,11 +3740,8 @@ public void htmlPhraseElement() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLPictureElement() { [native code] }",
- EDGE = "function HTMLPictureElement() { [native code] }",
- FF = "function HTMLPictureElement() {\n [native code]\n}",
- FF_ESR = "function HTMLPictureElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLPictureElement() { [native code] }",
+ IE = "exception")
public void htmlPictureElement() throws Exception {
test("HTMLPictureElement");
}
@@ -4138,9 +3753,7 @@ public void htmlPictureElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLPreElement() { [native code] }",
- IE = "[object HTMLPreElement]",
- FF = "function HTMLPreElement() {\n [native code]\n}",
- FF_ESR = "function HTMLPreElement() {\n [native code]\n}")
+ IE = "[object HTMLPreElement]")
public void htmlPreElement() throws Exception {
test("HTMLPreElement");
}
@@ -4152,9 +3765,7 @@ public void htmlPreElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLProgressElement() { [native code] }",
- IE = "[object HTMLProgressElement]",
- FF = "function HTMLProgressElement() {\n [native code]\n}",
- FF_ESR = "function HTMLProgressElement() {\n [native code]\n}")
+ IE = "[object HTMLProgressElement]")
public void htmlProgressElement() throws Exception {
test("HTMLProgressElement");
}
@@ -4166,9 +3777,7 @@ public void htmlProgressElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLQuoteElement() { [native code] }",
- FF = "function HTMLQuoteElement() {\n [native code]\n}",
- IE = "[object HTMLQuoteElement]",
- FF_ESR = "function HTMLQuoteElement() {\n [native code]\n}")
+ IE = "[object HTMLQuoteElement]")
public void htmlQuoteElement() throws Exception {
test("HTMLQuoteElement");
}
@@ -4180,9 +3789,7 @@ public void htmlQuoteElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLScriptElement() { [native code] }",
- IE = "[object HTMLScriptElement]",
- FF = "function HTMLScriptElement() {\n [native code]\n}",
- FF_ESR = "function HTMLScriptElement() {\n [native code]\n}")
+ IE = "[object HTMLScriptElement]")
public void htmlScriptElement() throws Exception {
test("HTMLScriptElement");
}
@@ -4194,9 +3801,7 @@ public void htmlScriptElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLSelectElement() { [native code] }",
- IE = "[object HTMLSelectElement]",
- FF = "function HTMLSelectElement() {\n [native code]\n}",
- FF_ESR = "function HTMLSelectElement() {\n [native code]\n}")
+ IE = "[object HTMLSelectElement]")
public void htmlSelectElement() throws Exception {
test("HTMLSelectElement");
}
@@ -4216,11 +3821,8 @@ public void htmlShadowElement() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLSlotElement() { [native code] }",
- EDGE = "function HTMLSlotElement() { [native code] }",
- FF = "function HTMLSlotElement() {\n [native code]\n}",
- FF_ESR = "function HTMLSlotElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLSlotElement() { [native code] }",
+ IE = "exception")
public void htmlSlotElement() throws Exception {
test("HTMLSlotElement");
}
@@ -4232,9 +3834,7 @@ public void htmlSlotElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLSourceElement() { [native code] }",
- IE = "[object HTMLSourceElement]",
- FF = "function HTMLSourceElement() {\n [native code]\n}",
- FF_ESR = "function HTMLSourceElement() {\n [native code]\n}")
+ IE = "[object HTMLSourceElement]")
public void htmlSourceElement() throws Exception {
test("HTMLSourceElement");
}
@@ -4246,9 +3846,7 @@ public void htmlSourceElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLSpanElement() { [native code] }",
- IE = "[object HTMLSpanElement]",
- FF = "function HTMLSpanElement() {\n [native code]\n}",
- FF_ESR = "function HTMLSpanElement() {\n [native code]\n}")
+ IE = "[object HTMLSpanElement]")
public void htmlSpanElement() throws Exception {
test("HTMLSpanElement");
}
@@ -4260,9 +3858,7 @@ public void htmlSpanElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLStyleElement() { [native code] }",
- IE = "[object HTMLStyleElement]",
- FF = "function HTMLStyleElement() {\n [native code]\n}",
- FF_ESR = "function HTMLStyleElement() {\n [native code]\n}")
+ IE = "[object HTMLStyleElement]")
public void htmlStyleElement() throws Exception {
test("HTMLStyleElement");
}
@@ -4274,9 +3870,7 @@ public void htmlStyleElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLTableCaptionElement() { [native code] }",
- IE = "[object HTMLTableCaptionElement]",
- FF = "function HTMLTableCaptionElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTableCaptionElement() {\n [native code]\n}")
+ IE = "[object HTMLTableCaptionElement]")
public void htmlTableCaptionElement() throws Exception {
test("HTMLTableCaptionElement");
}
@@ -4288,9 +3882,7 @@ public void htmlTableCaptionElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLTableCellElement() { [native code] }",
- IE = "[object HTMLTableCellElement]",
- FF = "function HTMLTableCellElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTableCellElement() {\n [native code]\n}")
+ IE = "[object HTMLTableCellElement]")
public void htmlTableCellElement() throws Exception {
test("HTMLTableCellElement");
}
@@ -4302,9 +3894,7 @@ public void htmlTableCellElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLTableColElement() { [native code] }",
- IE = "[object HTMLTableColElement]",
- FF = "function HTMLTableColElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTableColElement() {\n [native code]\n}")
+ IE = "[object HTMLTableColElement]")
public void htmlTableColElement() throws Exception {
test("HTMLTableColElement");
}
@@ -4339,9 +3929,7 @@ public void htmlTableDataCellElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLTableElement() { [native code] }",
- IE = "[object HTMLTableElement]",
- FF = "function HTMLTableElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTableElement() {\n [native code]\n}")
+ IE = "[object HTMLTableElement]")
public void htmlTableElement() throws Exception {
test("HTMLTableElement");
}
@@ -4365,9 +3953,7 @@ public void htmlTableHeaderCellElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLTableRowElement() { [native code] }",
- IE = "[object HTMLTableRowElement]",
- FF = "function HTMLTableRowElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTableRowElement() {\n [native code]\n}")
+ IE = "[object HTMLTableRowElement]")
public void htmlTableRowElement() throws Exception {
test("HTMLTableRowElement");
}
@@ -4379,9 +3965,7 @@ public void htmlTableRowElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLTableSectionElement() { [native code] }",
- IE = "[object HTMLTableSectionElement]",
- FF = "function HTMLTableSectionElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTableSectionElement() {\n [native code]\n}")
+ IE = "[object HTMLTableSectionElement]")
public void htmlTableSectionElement() throws Exception {
test("HTMLTableSectionElement");
}
@@ -4390,11 +3974,8 @@ public void htmlTableSectionElement() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLTemplateElement() { [native code] }",
- EDGE = "function HTMLTemplateElement() { [native code] }",
- FF = "function HTMLTemplateElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTemplateElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLTemplateElement() { [native code] }",
+ IE = "exception")
public void htmlTemplateElement() throws Exception {
test("HTMLTemplateElement");
}
@@ -4406,9 +3987,7 @@ public void htmlTemplateElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLTextAreaElement() { [native code] }",
- IE = "[object HTMLTextAreaElement]",
- FF = "function HTMLTextAreaElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTextAreaElement() {\n [native code]\n}")
+ IE = "[object HTMLTextAreaElement]")
public void htmlTextAreaElement() throws Exception {
test("HTMLTextAreaElement");
}
@@ -4428,11 +4007,8 @@ public void htmlTextElement() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function HTMLTimeElement() { [native code] }",
- EDGE = "function HTMLTimeElement() { [native code] }",
- FF = "function HTMLTimeElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTimeElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function HTMLTimeElement() { [native code] }",
+ IE = "exception")
public void htmlTimeElement() throws Exception {
test("HTMLTimeElement");
}
@@ -4444,9 +4020,7 @@ public void htmlTimeElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLTitleElement() { [native code] }",
- IE = "[object HTMLTitleElement]",
- FF = "function HTMLTitleElement() {\n [native code]\n}",
- FF_ESR = "function HTMLTitleElement() {\n [native code]\n}")
+ IE = "[object HTMLTitleElement]")
public void htmlTitleElement() throws Exception {
test("HTMLTitleElement");
}
@@ -4458,9 +4032,7 @@ public void htmlTitleElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLTrackElement() { [native code] }",
- FF = "function HTMLTrackElement() {\n [native code]\n}",
- IE = "[object HTMLTrackElement]",
- FF_ESR = "function HTMLTrackElement() {\n [native code]\n}")
+ IE = "[object HTMLTrackElement]")
public void htmlTrackElement() throws Exception {
test("HTMLTrackElement");
}
@@ -4472,9 +4044,7 @@ public void htmlTrackElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLUListElement() { [native code] }",
- IE = "[object HTMLUListElement]",
- FF = "function HTMLUListElement() {\n [native code]\n}",
- FF_ESR = "function HTMLUListElement() {\n [native code]\n}")
+ IE = "[object HTMLUListElement]")
public void htmlUListElement() throws Exception {
test("HTMLUListElement");
}
@@ -4486,9 +4056,7 @@ public void htmlUListElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLUnknownElement() { [native code] }",
- IE = "[object HTMLUnknownElement]",
- FF = "function HTMLUnknownElement() {\n [native code]\n}",
- FF_ESR = "function HTMLUnknownElement() {\n [native code]\n}")
+ IE = "[object HTMLUnknownElement]")
public void htmlUnknownElement() throws Exception {
test("HTMLUnknownElement");
}
@@ -4500,9 +4068,7 @@ public void htmlUnknownElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function HTMLVideoElement() { [native code] }",
- IE = "[object HTMLVideoElement]",
- FF = "function HTMLVideoElement() {\n [native code]\n}",
- FF_ESR = "function HTMLVideoElement() {\n [native code]\n}")
+ IE = "[object HTMLVideoElement]")
public void htmlVideoElement() throws Exception {
test("HTMLVideoElement");
}
@@ -4521,9 +4087,7 @@ public void htmlWBRElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBCursor() { [native code] }",
- FF = "function IDBCursor() {\n [native code]\n}",
- IE = "[object IDBCursor]",
- FF_ESR = "function IDBCursor() {\n [native code]\n}")
+ IE = "[object IDBCursor]")
public void idbCursor() throws Exception {
test("IDBCursor");
}
@@ -4542,9 +4106,7 @@ public void idbCursorSync() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBCursorWithValue() { [native code] }",
- FF = "function IDBCursorWithValue() {\n [native code]\n}",
- IE = "[object IDBCursorWithValue]",
- FF_ESR = "function IDBCursorWithValue() {\n [native code]\n}")
+ IE = "[object IDBCursorWithValue]")
public void idbCursorWithValue() throws Exception {
test("IDBCursorWithValue");
}
@@ -4554,9 +4116,7 @@ public void idbCursorWithValue() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBDatabase() { [native code] }",
- FF = "function IDBDatabase() {\n [native code]\n}",
- IE = "[object IDBDatabase]",
- FF_ESR = "function IDBDatabase() {\n [native code]\n}")
+ IE = "[object IDBDatabase]")
public void idbDatabase() throws Exception {
test("IDBDatabase");
}
@@ -4604,9 +4164,7 @@ public void idbEnvironmentSync() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBFactory() { [native code] }",
- FF = "function IDBFactory() {\n [native code]\n}",
- IE = "[object IDBFactory]",
- FF_ESR = "function IDBFactory() {\n [native code]\n}")
+ IE = "[object IDBFactory]")
public void idbFactory() throws Exception {
test("IDBFactory");
}
@@ -4625,9 +4183,7 @@ public void idbFactorySync() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBIndex() { [native code] }",
- FF = "function IDBIndex() {\n [native code]\n}",
- IE = "[object IDBIndex]",
- FF_ESR = "function IDBIndex() {\n [native code]\n}")
+ IE = "[object IDBIndex]")
public void idbIndex() throws Exception {
test("IDBIndex");
}
@@ -4646,9 +4202,7 @@ public void idbIndexSync() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBKeyRange() { [native code] }",
- FF = "function IDBKeyRange() {\n [native code]\n}",
- IE = "[object IDBKeyRange]",
- FF_ESR = "function IDBKeyRange() {\n [native code]\n}")
+ IE = "[object IDBKeyRange]")
public void idbKeyRange() throws Exception {
test("IDBKeyRange");
}
@@ -4666,8 +4220,7 @@ public void idbLocaleAwareKeyRange() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- FF_ESR = "function IDBMutableFile() {\n [native code]\n}")
+ @Alerts("exception")
public void idbMutableFile() throws Exception {
test("IDBMutableFile");
}
@@ -4677,9 +4230,7 @@ public void idbMutableFile() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBObjectStore() { [native code] }",
- FF = "function IDBObjectStore() {\n [native code]\n}",
- IE = "[object IDBObjectStore]",
- FF_ESR = "function IDBObjectStore() {\n [native code]\n}")
+ IE = "[object IDBObjectStore]")
public void idbObjectStore() throws Exception {
test("IDBObjectStore");
}
@@ -4698,9 +4249,7 @@ public void idbObjectStoreSync() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBOpenDBRequest() { [native code] }",
- FF = "function IDBOpenDBRequest() {\n [native code]\n}",
- IE = "[object IDBOpenDBRequest]",
- FF_ESR = "function IDBOpenDBRequest() {\n [native code]\n}")
+ IE = "[object IDBOpenDBRequest]")
public void idbOpenDBRequest() throws Exception {
test("IDBOpenDBRequest");
}
@@ -4710,9 +4259,7 @@ public void idbOpenDBRequest() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBRequest() { [native code] }",
- FF = "function IDBRequest() {\n [native code]\n}",
- IE = "[object IDBRequest]",
- FF_ESR = "function IDBRequest() {\n [native code]\n}")
+ IE = "[object IDBRequest]")
public void idbRequest() throws Exception {
test("IDBRequest");
}
@@ -4722,9 +4269,7 @@ public void idbRequest() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBTransaction() { [native code] }",
- FF = "function IDBTransaction() {\n [native code]\n}",
- IE = "[object IDBTransaction]",
- FF_ESR = "function IDBTransaction() {\n [native code]\n}")
+ IE = "[object IDBTransaction]")
public void idbTransaction() throws Exception {
test("IDBTransaction");
}
@@ -4743,9 +4288,7 @@ public void idbTransactionSync() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function IDBVersionChangeEvent() { [native code] }",
- FF = "function IDBVersionChangeEvent() {\n [native code]\n}",
- IE = "[object IDBVersionChangeEvent]",
- FF_ESR = "function IDBVersionChangeEvent() {\n [native code]\n}")
+ IE = "[object IDBVersionChangeEvent]")
public void idbVersionChangeEvent() throws Exception {
test("IDBVersionChangeEvent");
}
@@ -4772,11 +4315,8 @@ public void identityManager() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function IdleDeadline() { [native code] }",
- EDGE = "function IdleDeadline() { [native code] }",
- FF = "function IdleDeadline() {\n [native code]\n}",
- FF_ESR = "function IdleDeadline() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function IdleDeadline() { [native code] }",
+ IE = "exception")
public void idleDeadline() throws Exception {
test("IdleDeadline");
}
@@ -4785,11 +4325,8 @@ public void idleDeadline() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function IIRFilterNode() { [native code] }",
- EDGE = "function IIRFilterNode() { [native code] }",
- FF = "function IIRFilterNode() {\n [native code]\n}",
- FF_ESR = "function IIRFilterNode() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function IIRFilterNode() { [native code] }",
+ IE = "exception")
public void iirFilterNode() throws Exception {
test("IIRFilterNode");
}
@@ -4800,10 +4337,7 @@ public void iirFilterNode() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(CHROME = "function Image() { [native code] }",
- EDGE = "function Image() { [native code] }",
- FF = "function Image() {\n [native code]\n}",
- FF_ESR = "function Image() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function Image() { [native code] }",
IE = "function Image() {\n [native code]\n}\n")
public void image() throws Exception {
test("Image");
@@ -4813,11 +4347,8 @@ public void image() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function ImageBitmap() { [native code] }",
- EDGE = "function ImageBitmap() { [native code] }",
- FF = "function ImageBitmap() {\n [native code]\n}",
- FF_ESR = "function ImageBitmap() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function ImageBitmap() { [native code] }",
+ IE = "exception")
public void imageBitmap() throws Exception {
test("ImageBitmap");
}
@@ -4835,11 +4366,8 @@ public void imageBitmapFactories() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function ImageBitmapRenderingContext() { [native code] }",
- EDGE = "function ImageBitmapRenderingContext() { [native code] }",
- FF = "function ImageBitmapRenderingContext() {\n [native code]\n}",
- FF_ESR = "function ImageBitmapRenderingContext() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function ImageBitmapRenderingContext() { [native code] }",
+ IE = "exception")
public void imageBitmapRenderingContext() throws Exception {
test("ImageBitmapRenderingContext");
}
@@ -4849,9 +4377,7 @@ public void imageBitmapRenderingContext() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ImageData() { [native code] }",
- FF = "function ImageData() {\n [native code]\n}",
- IE = "[object ImageData]",
- FF_ESR = "function ImageData() {\n [native code]\n}")
+ IE = "[object ImageData]")
public void imageData() throws Exception {
test("ImageData");
}
@@ -4898,11 +4424,8 @@ public void inputDeviceCapabilities() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function InputEvent() { [native code] }",
- EDGE = "function InputEvent() { [native code] }",
- FF = "function InputEvent() {\n [native code]\n}",
- FF_ESR = "function InputEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function InputEvent() { [native code] }",
+ IE = "exception")
public void inputEvent() throws Exception {
test("InputEvent");
}
@@ -4931,7 +4454,7 @@ public void installEvent() throws Exception {
@Test
@Alerts(DEFAULT = "exception",
FF = "null",
- FF_ESR = "[object InstallTriggerImpl]")
+ FF_ESR = "null")
public void installTrigger() throws Exception {
test("InstallTrigger");
}
@@ -4952,9 +4475,7 @@ public void installTriggerImpl() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Int16Array() { [native code] }",
- FF = "function Int16Array() {\n [native code]\n}",
- IE = "function Int16Array() {\n [native code]\n}\n",
- FF_ESR = "function Int16Array() {\n [native code]\n}")
+ IE = "function Int16Array() {\n [native code]\n}\n")
public void int16Array() throws Exception {
test("Int16Array");
}
@@ -4966,9 +4487,7 @@ public void int16Array() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Int32Array() { [native code] }",
- FF = "function Int32Array() {\n [native code]\n}",
- IE = "function Int32Array() {\n [native code]\n}\n",
- FF_ESR = "function Int32Array() {\n [native code]\n}")
+ IE = "function Int32Array() {\n [native code]\n}\n")
public void int32Array() throws Exception {
test("Int32Array");
}
@@ -4980,9 +4499,7 @@ public void int32Array() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Int8Array() { [native code] }",
- FF = "function Int8Array() {\n [native code]\n}",
- IE = "function Int8Array() {\n [native code]\n}\n",
- FF_ESR = "function Int8Array() {\n [native code]\n}")
+ IE = "function Int8Array() {\n [native code]\n}\n")
public void int8Array() throws Exception {
test("Int8Array");
}
@@ -4992,8 +4509,8 @@ public void int8Array() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function InternalError() {\n [native code]\n}",
- FF_ESR = "function InternalError() {\n [native code]\n}")
+ FF = "function InternalError() { [native code] }",
+ FF_ESR = "function InternalError() { [native code] }")
@HtmlUnitNYI(CHROME = "function InternalError() { [native code] }",
EDGE = "function InternalError() { [native code] }",
IE = "function InternalError() {\n [native code]\n}\n")
@@ -5005,11 +4522,8 @@ public void internalError() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function IntersectionObserver() { [native code] }",
- EDGE = "function IntersectionObserver() { [native code] }",
- FF = "function IntersectionObserver() {\n [native code]\n}",
- FF_ESR = "function IntersectionObserver() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function IntersectionObserver() { [native code] }",
+ IE = "exception")
public void intersectionObserver() throws Exception {
test("IntersectionObserver");
}
@@ -5018,11 +4532,8 @@ public void intersectionObserver() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function IntersectionObserverEntry() { [native code] }",
- EDGE = "function IntersectionObserverEntry() { [native code] }",
- FF = "function IntersectionObserverEntry() {\n [native code]\n}",
- FF_ESR = "function IntersectionObserverEntry() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function IntersectionObserverEntry() { [native code] }",
+ IE = "exception")
public void intersectionObserverEntry() throws Exception {
test("IntersectionObserverEntry");
}
@@ -5044,9 +4555,7 @@ public void intl() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Collator() { [native code] }",
- FF = "function Collator() {\n [native code]\n}",
- IE = "function Collator() {\n [native code]\n}\n",
- FF_ESR = "function Collator() {\n [native code]\n}")
+ IE = "function Collator() {\n [native code]\n}\n")
public void intl_Collator() throws Exception {
test("Intl.Collator");
}
@@ -5056,9 +4565,7 @@ public void intl_Collator() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function DateTimeFormat() { [native code] }",
- FF = "function DateTimeFormat() {\n [native code]\n}",
- IE = "function DateTimeFormat() {\n [native code]\n}\n",
- FF_ESR = "function DateTimeFormat() {\n [native code]\n}")
+ IE = "function DateTimeFormat() {\n [native code]\n}\n")
public void intl_DateTimeFormat() throws Exception {
test("Intl.DateTimeFormat");
}
@@ -5068,9 +4575,7 @@ public void intl_DateTimeFormat() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function NumberFormat() { [native code] }",
- FF = "function NumberFormat() {\n [native code]\n}",
- IE = "function NumberFormat() {\n [native code]\n}\n",
- FF_ESR = "function NumberFormat() {\n [native code]\n}")
+ IE = "function NumberFormat() {\n [native code]\n}\n")
public void intl_NumberFormat() throws Exception {
test("Intl.NumberFormat");
}
@@ -5080,9 +4585,7 @@ public void intl_NumberFormat() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function isFinite() { [native code] }",
- FF = "function isFinite() {\n [native code]\n}",
- IE = "function isFinite() {\n [native code]\n}\n",
- FF_ESR = "function isFinite() {\n [native code]\n}")
+ IE = "function isFinite() {\n [native code]\n}\n")
public void isFinite() throws Exception {
test("isFinite");
}
@@ -5092,9 +4595,7 @@ public void isFinite() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function isNaN() { [native code] }",
- FF = "function isNaN() {\n [native code]\n}",
- IE = "function isNaN() {\n [native code]\n}\n",
- FF_ESR = "function isNaN() {\n [native code]\n}")
+ IE = "function isNaN() {\n [native code]\n}\n")
public void isNaN() throws Exception {
test("isNaN");
}
@@ -5128,9 +4629,7 @@ public void json() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function KeyboardEvent() { [native code] }",
- IE = "[object KeyboardEvent]",
- FF = "function KeyboardEvent() {\n [native code]\n}",
- FF_ESR = "function KeyboardEvent() {\n [native code]\n}")
+ IE = "[object KeyboardEvent]")
public void keyboardEvent() throws Exception {
test("KeyboardEvent");
}
@@ -5139,11 +4638,8 @@ public void keyboardEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function KeyframeEffect() { [native code] }",
- EDGE = "function KeyframeEffect() { [native code] }",
- FF = "function KeyframeEffect() {\n [native code]\n}",
- FF_ESR = "function KeyframeEffect() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function KeyframeEffect() { [native code] }",
+ IE = "exception")
public void keyframeEffect() throws Exception {
test("KeyframeEffect");
}
@@ -5283,12 +4779,8 @@ public void localMediaStream() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Location() { [native code] }",
- FF = "function Location() {\n [native code]\n}",
- FF_ESR = "function Location() {\n [native code]\n}",
IE = "[object Location]")
@AlertsStandards(DEFAULT = "function Location() { [native code] }",
- FF = "function Location() {\n [native code]\n}",
- FF_ESR = "function Location() {\n [native code]\n}",
IE = "[object Location]")
public void location() throws Exception {
test("Location");
@@ -5317,9 +4809,7 @@ public void longRange() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Map() { [native code] }",
- FF = "function Map() {\n [native code]\n}",
- IE = "function Map() {\n [native code]\n}\n",
- FF_ESR = "function Map() {\n [native code]\n}")
+ IE = "function Map() {\n [native code]\n}\n")
public void map() throws Exception {
test("Map");
}
@@ -5337,11 +4827,8 @@ public void math() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaDeviceInfo() { [native code] }",
- EDGE = "function MediaDeviceInfo() { [native code] }",
- FF = "function MediaDeviceInfo() {\n [native code]\n}",
- FF_ESR = "function MediaDeviceInfo() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaDeviceInfo() { [native code] }",
+ IE = "exception")
public void mediaDeviceInfo() throws Exception {
test("MediaDeviceInfo");
}
@@ -5351,9 +4838,7 @@ public void mediaDeviceInfo() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MediaDevices() { [native code] }",
- IE = "exception",
- FF = "function MediaDevices() {\n [native code]\n}",
- FF_ESR = "function MediaDevices() {\n [native code]\n}")
+ IE = "exception")
public void mediaDevices() throws Exception {
test("MediaDevices");
}
@@ -5363,9 +4848,7 @@ public void mediaDevices() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MediaElementAudioSourceNode() { [native code] }",
- IE = "exception",
- FF = "function MediaElementAudioSourceNode() {\n [native code]\n}",
- FF_ESR = "function MediaElementAudioSourceNode() {\n [native code]\n}")
+ IE = "exception")
public void mediaElementAudioSourceNode() throws Exception {
test("MediaElementAudioSourceNode");
}
@@ -5374,11 +4857,8 @@ public void mediaElementAudioSourceNode() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaEncryptedEvent() { [native code] }",
- EDGE = "function MediaEncryptedEvent() { [native code] }",
- FF = "function MediaEncryptedEvent() {\n [native code]\n}",
- FF_ESR = "function MediaEncryptedEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaEncryptedEvent() { [native code] }",
+ IE = "exception")
public void mediaEncryptedEvent() throws Exception {
test("MediaEncryptedEvent");
}
@@ -5388,9 +4868,7 @@ public void mediaEncryptedEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MediaError() { [native code] }",
- FF = "function MediaError() {\n [native code]\n}",
- IE = "[object MediaError]",
- FF_ESR = "function MediaError() {\n [native code]\n}")
+ IE = "[object MediaError]")
public void mediaError() throws Exception {
test("MediaError");
}
@@ -5400,8 +4878,8 @@ public void mediaError() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function MediaKeyError() {\n [native code]\n}",
- FF_ESR = "function MediaKeyError() {\n [native code]\n}")
+ FF = "function MediaKeyError() { [native code] }",
+ FF_ESR = "function MediaKeyError() { [native code] }")
public void mediaKeyError() throws Exception {
test("MediaKeyError");
}
@@ -5419,11 +4897,8 @@ public void mediaKeyEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaKeyMessageEvent() { [native code] }",
- EDGE = "function MediaKeyMessageEvent() { [native code] }",
- FF = "function MediaKeyMessageEvent() {\n [native code]\n}",
- FF_ESR = "function MediaKeyMessageEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaKeyMessageEvent() { [native code] }",
+ IE = "exception")
public void mediaKeyMessageEvent() throws Exception {
test("MediaKeyMessageEvent");
}
@@ -5432,11 +4907,8 @@ public void mediaKeyMessageEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaKeys() { [native code] }",
- EDGE = "function MediaKeys() { [native code] }",
- FF = "function MediaKeys() {\n [native code]\n}",
- FF_ESR = "function MediaKeys() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaKeys() { [native code] }",
+ IE = "exception")
public void mediaKeys() throws Exception {
test("MediaKeys");
}
@@ -5445,11 +4917,8 @@ public void mediaKeys() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaKeySession() { [native code] }",
- EDGE = "function MediaKeySession() { [native code] }",
- FF = "function MediaKeySession() {\n [native code]\n}",
- FF_ESR = "function MediaKeySession() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaKeySession() { [native code] }",
+ IE = "exception")
public void mediaKeySession() throws Exception {
test("MediaKeySession");
}
@@ -5458,11 +4927,8 @@ public void mediaKeySession() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaKeyStatusMap() { [native code] }",
- EDGE = "function MediaKeyStatusMap() { [native code] }",
- FF = "function MediaKeyStatusMap() {\n [native code]\n}",
- FF_ESR = "function MediaKeyStatusMap() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaKeyStatusMap() { [native code] }",
+ IE = "exception")
public void mediaKeyStatusMap() throws Exception {
test("MediaKeyStatusMap");
}
@@ -5471,11 +4937,8 @@ public void mediaKeyStatusMap() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaKeySystemAccess() { [native code] }",
- EDGE = "function MediaKeySystemAccess() { [native code] }",
- FF = "function MediaKeySystemAccess() {\n [native code]\n}",
- FF_ESR = "function MediaKeySystemAccess() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaKeySystemAccess() { [native code] }",
+ IE = "exception")
public void mediaKeySystemAccess() throws Exception {
test("MediaKeySystemAccess");
}
@@ -5496,9 +4959,7 @@ public void mediaKeySystemConfiguration() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MediaList() { [native code] }",
- IE = "[object MediaList]",
- FF = "function MediaList() {\n [native code]\n}",
- FF_ESR = "function MediaList() {\n [native code]\n}")
+ IE = "[object MediaList]")
public void mediaList() throws Exception {
test("MediaList");
}
@@ -5508,9 +4969,7 @@ public void mediaList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MediaQueryList() { [native code] }",
- FF = "function MediaQueryList() {\n [native code]\n}",
- IE = "[object MediaQueryList]",
- FF_ESR = "function MediaQueryList() {\n [native code]\n}")
+ IE = "[object MediaQueryList]")
public void mediaQueryList() throws Exception {
test("MediaQueryList");
}
@@ -5519,11 +4978,8 @@ public void mediaQueryList() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaQueryListEvent() { [native code] }",
- EDGE = "function MediaQueryListEvent() { [native code] }",
- FF = "function MediaQueryListEvent() {\n [native code]\n}",
- FF_ESR = "function MediaQueryListEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaQueryListEvent() { [native code] }",
+ IE = "exception")
public void mediaQueryListEvent() throws Exception {
test("MediaQueryListEvent");
}
@@ -5542,9 +4998,7 @@ public void mediaQueryListListener() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MediaRecorder() { [native code] }",
- FF = "function MediaRecorder() {\n [native code]\n}",
- IE = "exception",
- FF_ESR = "function MediaRecorder() {\n [native code]\n}")
+ IE = "exception")
public void mediaRecorder() throws Exception {
test("MediaRecorder");
}
@@ -5554,9 +5008,7 @@ public void mediaRecorder() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MediaSource() { [native code] }",
- IE = "function MediaSource() {\n [native code]\n}\n",
- FF = "function MediaSource() {\n [native code]\n}",
- FF_ESR = "function MediaSource() {\n [native code]\n}")
+ IE = "function MediaSource() {\n [native code]\n}\n")
public void mediaSource() throws Exception {
test("MediaSource");
}
@@ -5565,11 +5017,8 @@ public void mediaSource() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaStream() { [native code] }",
- EDGE = "function MediaStream() { [native code] }",
- FF = "function MediaStream() {\n [native code]\n}",
- FF_ESR = "function MediaStream() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaStream() { [native code] }",
+ IE = "exception")
public void mediaStream() throws Exception {
test("MediaStream");
}
@@ -5578,11 +5027,8 @@ public void mediaStream() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaStreamAudioDestinationNode() { [native code] }",
- EDGE = "function MediaStreamAudioDestinationNode() { [native code] }",
- FF = "function MediaStreamAudioDestinationNode() {\n [native code]\n}",
- FF_ESR = "function MediaStreamAudioDestinationNode() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaStreamAudioDestinationNode() { [native code] }",
+ IE = "exception")
public void mediaStreamAudioDestinationNode() throws Exception {
test("MediaStreamAudioDestinationNode");
}
@@ -5592,9 +5038,7 @@ public void mediaStreamAudioDestinationNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MediaStreamAudioSourceNode() { [native code] }",
- IE = "exception",
- FF = "function MediaStreamAudioSourceNode() {\n [native code]\n}",
- FF_ESR = "function MediaStreamAudioSourceNode() {\n [native code]\n}")
+ IE = "exception")
public void mediaStreamAudioSourceNode() throws Exception {
test("MediaStreamAudioSourceNode");
}
@@ -5612,11 +5056,8 @@ public void mediaStreamConstraints() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaStreamEvent() { [native code] }",
- EDGE = "function MediaStreamEvent() { [native code] }",
- FF = "function MediaStreamEvent() {\n [native code]\n}",
- FF_ESR = "function MediaStreamEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaStreamEvent() { [native code] }",
+ IE = "exception")
public void mediaStreamEvent() throws Exception {
test("MediaStreamEvent");
}
@@ -5626,9 +5067,7 @@ public void mediaStreamEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MediaStreamTrack() { [native code] }",
- FF = "function MediaStreamTrack() {\n [native code]\n}",
- IE = "exception",
- FF_ESR = "function MediaStreamTrack() {\n [native code]\n}")
+ IE = "exception")
public void mediaStreamTrack() throws Exception {
test("MediaStreamTrack");
}
@@ -5637,11 +5076,8 @@ public void mediaStreamTrack() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MediaStreamTrackEvent() { [native code] }",
- EDGE = "function MediaStreamTrackEvent() { [native code] }",
- FF = "function MediaStreamTrackEvent() {\n [native code]\n}",
- FF_ESR = "function MediaStreamTrackEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MediaStreamTrackEvent() { [native code] }",
+ IE = "exception")
public void mediaStreamTrackEvent() throws Exception {
test("MediaStreamTrackEvent");
}
@@ -5680,9 +5116,7 @@ public void mediaTrackSupportedConstraints() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MessageChannel() { [native code] }",
- FF = "function MessageChannel() {\n [native code]\n}",
- IE = "function MessageChannel() {\n [native code]\n}\n",
- FF_ESR = "function MessageChannel() {\n [native code]\n}")
+ IE = "function MessageChannel() {\n [native code]\n}\n")
public void messageChannel() throws Exception {
test("MessageChannel");
}
@@ -5694,9 +5128,7 @@ public void messageChannel() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MessageEvent() { [native code] }",
- IE = "[object MessageEvent]",
- FF = "function MessageEvent() {\n [native code]\n}",
- FF_ESR = "function MessageEvent() {\n [native code]\n}")
+ IE = "[object MessageEvent]")
public void messageEvent() throws Exception {
test("MessageEvent");
}
@@ -5708,9 +5140,7 @@ public void messageEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MessagePort() { [native code] }",
- FF = "function MessagePort() {\n [native code]\n}",
- IE = "[object MessagePort]",
- FF_ESR = "function MessagePort() {\n [native code]\n}")
+ IE = "[object MessagePort]")
public void messagePort() throws Exception {
test("MessagePort");
}
@@ -5728,10 +5158,8 @@ public void metadata() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MIDIAccess() { [native code] }",
- EDGE = "function MIDIAccess() { [native code] }",
- FF = "function MIDIAccess() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MIDIAccess() { [native code] }",
+ IE = "exception")
public void midiAccess() throws Exception {
test("MIDIAccess");
}
@@ -5740,10 +5168,8 @@ public void midiAccess() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MIDIConnectionEvent() { [native code] }",
- EDGE = "function MIDIConnectionEvent() { [native code] }",
- FF = "function MIDIConnectionEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MIDIConnectionEvent() { [native code] }",
+ IE = "exception")
public void midiConnectionEvent() throws Exception {
test("MIDIConnectionEvent");
}
@@ -5752,10 +5178,8 @@ public void midiConnectionEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MIDIInput() { [native code] }",
- EDGE = "function MIDIInput() { [native code] }",
- FF = "function MIDIInput() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MIDIInput() { [native code] }",
+ IE = "exception")
public void midiInput() throws Exception {
test("MIDIInput");
}
@@ -5764,10 +5188,8 @@ public void midiInput() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MIDIInputMap() { [native code] }",
- EDGE = "function MIDIInputMap() { [native code] }",
- FF = "function MIDIInputMap() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MIDIInputMap() { [native code] }",
+ IE = "exception")
public void midiInputMap() throws Exception {
test("MIDIInputMap");
}
@@ -5776,10 +5198,8 @@ public void midiInputMap() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MIDIMessageEvent() { [native code] }",
- EDGE = "function MIDIMessageEvent() { [native code] }",
- FF = "function MIDIMessageEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MIDIMessageEvent() { [native code] }",
+ IE = "exception")
public void midiMessageEvent() throws Exception {
test("MIDIMessageEvent");
}
@@ -5788,10 +5208,8 @@ public void midiMessageEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MIDIOutput() { [native code] }",
- EDGE = "function MIDIOutput() { [native code] }",
- FF = "function MIDIOutput() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MIDIOutput() { [native code] }",
+ IE = "exception")
public void midiOutput() throws Exception {
test("MIDIOutput");
}
@@ -5800,10 +5218,8 @@ public void midiOutput() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MIDIOutputMap() { [native code] }",
- EDGE = "function MIDIOutputMap() { [native code] }",
- FF = "function MIDIOutputMap() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MIDIOutputMap() { [native code] }",
+ IE = "exception")
public void midiOutputMap() throws Exception {
test("MIDIOutputMap");
}
@@ -5812,10 +5228,8 @@ public void midiOutputMap() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function MIDIPort() { [native code] }",
- EDGE = "function MIDIPort() { [native code] }",
- FF = "function MIDIPort() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function MIDIPort() { [native code] }",
+ IE = "exception")
public void midiPort() throws Exception {
test("MIDIPort");
}
@@ -5827,9 +5241,7 @@ public void midiPort() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MimeType() { [native code] }",
- IE = "[object MimeType]",
- FF = "function MimeType() {\n [native code]\n}",
- FF_ESR = "function MimeType() {\n [native code]\n}")
+ IE = "[object MimeType]")
public void mimeType() throws Exception {
test("MimeType");
}
@@ -5841,9 +5253,7 @@ public void mimeType() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MimeTypeArray() { [native code] }",
- IE = "[object MimeTypeArray]",
- FF = "function MimeTypeArray() {\n [native code]\n}",
- FF_ESR = "function MimeTypeArray() {\n [native code]\n}")
+ IE = "[object MimeTypeArray]")
public void mimeTypeArray() throws Exception {
test("MimeTypeArray");
}
@@ -5855,9 +5265,7 @@ public void mimeTypeArray() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MouseEvent() { [native code] }",
- IE = "[object MouseEvent]",
- FF = "function MouseEvent() {\n [native code]\n}",
- FF_ESR = "function MouseEvent() {\n [native code]\n}")
+ IE = "[object MouseEvent]")
public void mouseEvent() throws Exception {
test("MouseEvent");
}
@@ -5867,8 +5275,8 @@ public void mouseEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function MouseScrollEvent() {\n [native code]\n}",
- FF_ESR = "function MouseScrollEvent() {\n [native code]\n}")
+ FF = "function MouseScrollEvent() { [native code] }",
+ FF_ESR = "function MouseScrollEvent() { [native code] }")
public void mouseScrollEvent() throws Exception {
test("MouseScrollEvent");
}
@@ -6121,8 +5529,7 @@ public void mozPowerManager() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- FF_ESR = "function mozRTCIceCandidate() {\n [native code]\n}")
+ @Alerts("exception")
public void mozRTCIceCandidate() throws Exception {
test("mozRTCIceCandidate");
}
@@ -6131,8 +5538,7 @@ public void mozRTCIceCandidate() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- FF_ESR = "function mozRTCPeerConnection() {\n [native code]\n}")
+ @Alerts("exception")
public void mozRTCPeerConnection() throws Exception {
test("mozRTCPeerConnection");
}
@@ -6141,8 +5547,7 @@ public void mozRTCPeerConnection() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- FF_ESR = "function mozRTCSessionDescription() {\n [native code]\n}")
+ @Alerts("exception")
public void mozRTCSessionDescription() throws Exception {
test("mozRTCSessionDescription");
}
@@ -6321,9 +5726,7 @@ public void msStyleCSSProperties() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MutationEvent() { [native code] }",
- IE = "[object MutationEvent]",
- FF = "function MutationEvent() {\n [native code]\n}",
- FF_ESR = "function MutationEvent() {\n [native code]\n}")
+ IE = "[object MutationEvent]")
public void mutationEvent() throws Exception {
test("MutationEvent");
}
@@ -6333,9 +5736,7 @@ public void mutationEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MutationObserver() { [native code] }",
- FF = "function MutationObserver() {\n [native code]\n}",
- IE = "function MutationObserver() {\n [native code]\n}\n",
- FF_ESR = "function MutationObserver() {\n [native code]\n}")
+ IE = "function MutationObserver() {\n [native code]\n}\n")
public void mutationObserver() throws Exception {
test("MutationObserver");
}
@@ -6345,9 +5746,7 @@ public void mutationObserver() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function MutationRecord() { [native code] }",
- FF = "function MutationRecord() {\n [native code]\n}",
- IE = "[object MutationRecord]",
- FF_ESR = "function MutationRecord() {\n [native code]\n}")
+ IE = "[object MutationRecord]")
public void mutationRecord() throws Exception {
test("MutationRecord");
}
@@ -6359,9 +5758,7 @@ public void mutationRecord() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function NamedNodeMap() { [native code] }",
- IE = "[object NamedNodeMap]",
- FF = "function NamedNodeMap() {\n [native code]\n}",
- FF_ESR = "function NamedNodeMap() {\n [native code]\n}")
+ IE = "[object NamedNodeMap]")
public void namedNodeMap() throws Exception {
test("NamedNodeMap");
}
@@ -6424,9 +5821,7 @@ public void nativeXPathNSResolver() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Navigator() { [native code] }",
- IE = "[object Navigator]",
- FF = "function Navigator() {\n [native code]\n}",
- FF_ESR = "function Navigator() {\n [native code]\n}")
+ IE = "[object Navigator]")
public void navigator() throws Exception {
test("Navigator");
}
@@ -6512,9 +5907,7 @@ public void networkInformation() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Node() { [native code] }",
- IE = "[object Node]",
- FF = "function Node() {\n [native code]\n}",
- FF_ESR = "function Node() {\n [native code]\n}")
+ IE = "[object Node]")
public void node() throws Exception {
test("Node");
}
@@ -6526,9 +5919,7 @@ public void node() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function NodeFilter() { [native code] }",
- IE = "[object NodeFilter]",
- FF = "function NodeFilter() {\n [native code]\n}",
- FF_ESR = "function NodeFilter() {\n [native code]\n}")
+ IE = "[object NodeFilter]")
public void nodeFilter() throws Exception {
test("NodeFilter");
}
@@ -6538,9 +5929,7 @@ public void nodeFilter() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function NodeIterator() { [native code] }",
- FF = "function NodeIterator() {\n [native code]\n}",
- IE = "[object NodeIterator]",
- FF_ESR = "function NodeIterator() {\n [native code]\n}")
+ IE = "[object NodeIterator]")
public void nodeIterator() throws Exception {
test("NodeIterator");
}
@@ -6552,9 +5941,7 @@ public void nodeIterator() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function NodeList() { [native code] }",
- IE = "[object NodeList]",
- FF = "function NodeList() {\n [native code]\n}",
- FF_ESR = "function NodeList() {\n [native code]\n}")
+ IE = "[object NodeList]")
public void nodeList() throws Exception {
test("NodeList");
}
@@ -6583,11 +5970,8 @@ public void notation() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function Notification() { [native code] }",
- EDGE = "function Notification() { [native code] }",
- FF = "function Notification() {\n [native code]\n}",
- FF_ESR = "function Notification() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function Notification() { [native code] }",
+ IE = "exception")
public void notification() throws Exception {
test("Notification");
}
@@ -6615,9 +5999,7 @@ public void notifyAudioAvailableEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Number() { [native code] }",
- FF = "function Number() {\n [native code]\n}",
- IE = "function Number() {\n [native code]\n}\n",
- FF_ESR = "function Number() {\n [native code]\n}")
+ IE = "function Number() {\n [native code]\n}\n")
public void number() throws Exception {
test("Number");
}
@@ -6627,9 +6009,7 @@ public void number() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Object() { [native code] }",
- FF = "function Object() {\n [native code]\n}",
- IE = "function Object() {\n [native code]\n}\n",
- FF_ESR = "function Object() {\n [native code]\n}")
+ IE = "function Object() {\n [native code]\n}\n")
public void object() throws Exception {
test("Object");
}
@@ -6706,9 +6086,7 @@ public void oes_vertex_array_object() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function OfflineAudioCompletionEvent() { [native code] }",
- IE = "exception",
- FF = "function OfflineAudioCompletionEvent() {\n [native code]\n}",
- FF_ESR = "function OfflineAudioCompletionEvent() {\n [native code]\n}")
+ IE = "exception")
public void offlineAudioCompletionEvent() throws Exception {
test("OfflineAudioCompletionEvent");
}
@@ -6718,21 +6096,16 @@ public void offlineAudioCompletionEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function OfflineAudioContext() { [native code] }",
- IE = "exception",
- FF = "function OfflineAudioContext() {\n [native code]\n}",
- FF_ESR = "function OfflineAudioContext() {\n [native code]\n}")
+ IE = "exception")
public void offlineAudioContext() throws Exception {
test("OfflineAudioContext");
}
/**
- * Test {@link org.htmlunit.javascript.host.ApplicationCache}.
- *
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- FF_ESR = "function OfflineResourceList() {\n [native code]\n}")
+ @Alerts("exception")
public void offlineResourceList() throws Exception {
test("OfflineResourceList");
}
@@ -6741,10 +6114,8 @@ public void offlineResourceList() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function OffscreenCanvas() { [native code] }",
- EDGE = "function OffscreenCanvas() { [native code] }",
- FF = "function OffscreenCanvas() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function OffscreenCanvas() { [native code] }",
+ IE = "exception")
@HtmlUnitNYI(CHROME = "exception",
EDGE = "exception",
FF = "exception")
@@ -6758,10 +6129,7 @@ public void offscreenCanvas() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(CHROME = "function Option() { [native code] }",
- EDGE = "function Option() { [native code] }",
- FF = "function Option() {\n [native code]\n}",
- FF_ESR = "function Option() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function Option() { [native code] }",
IE = "function Option() {\n [native code]\n}\n")
public void option() throws Exception {
test("Option");
@@ -6772,9 +6140,7 @@ public void option() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function OscillatorNode() { [native code] }",
- IE = "exception",
- FF = "function OscillatorNode() {\n [native code]\n}",
- FF_ESR = "function OscillatorNode() {\n [native code]\n}")
+ IE = "exception")
public void oscillatorNode() throws Exception {
test("OscillatorNode");
}
@@ -6793,9 +6159,7 @@ public void overflowEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PageTransitionEvent() { [native code] }",
- FF = "function PageTransitionEvent() {\n [native code]\n}",
- IE = "[object PageTransitionEvent]",
- FF_ESR = "function PageTransitionEvent() {\n [native code]\n}")
+ IE = "[object PageTransitionEvent]")
public void pageTransitionEvent() throws Exception {
test("PageTransitionEvent");
}
@@ -6804,11 +6168,8 @@ public void pageTransitionEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function PannerNode() { [native code] }",
- EDGE = "function PannerNode() { [native code] }",
- FF = "function PannerNode() {\n [native code]\n}",
- FF_ESR = "function PannerNode() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function PannerNode() { [native code] }",
+ IE = "exception")
public void pannerNode() throws Exception {
test("PannerNode");
}
@@ -6836,9 +6197,7 @@ public void parentNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function parseFloat() { [native code] }",
- FF = "function parseFloat() {\n [native code]\n}",
- IE = "function parseFloat() {\n [native code]\n}\n",
- FF_ESR = "function parseFloat() {\n [native code]\n}")
+ IE = "function parseFloat() {\n [native code]\n}\n")
public void parseFloat() throws Exception {
test("parseFloat");
}
@@ -6848,9 +6207,7 @@ public void parseFloat() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function parseInt() { [native code] }",
- FF = "function parseInt() {\n [native code]\n}",
- IE = "function parseInt() {\n [native code]\n}\n",
- FF_ESR = "function parseInt() {\n [native code]\n}")
+ IE = "function parseInt() {\n [native code]\n}\n")
public void parseInt() throws Exception {
test("parseInt");
}
@@ -6872,11 +6229,8 @@ public void passwordCredential() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function Path2D() { [native code] }",
- EDGE = "function Path2D() { [native code] }",
- FF = "function Path2D() {\n [native code]\n}",
- FF_ESR = "function Path2D() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function Path2D() { [native code] }",
+ IE = "exception")
public void path2D() throws Exception {
test("Path2D");
}
@@ -6919,9 +6273,7 @@ public void paymentResponse() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Performance() { [native code] }",
- FF = "function Performance() {\n [native code]\n}",
- IE = "[object Performance]",
- FF_ESR = "function Performance() {\n [native code]\n}")
+ IE = "[object Performance]")
public void performance() throws Exception {
test("Performance");
}
@@ -6931,9 +6283,7 @@ public void performance() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PerformanceEntry() { [native code] }",
- FF = "function PerformanceEntry() {\n [native code]\n}",
- IE = "[object PerformanceEntry]",
- FF_ESR = "function PerformanceEntry() {\n [native code]\n}")
+ IE = "[object PerformanceEntry]")
public void performanceEntry() throws Exception {
test("PerformanceEntry");
}
@@ -6952,9 +6302,7 @@ public void performanceFrameTiming() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PerformanceMark() { [native code] }",
- FF = "function PerformanceMark() {\n [native code]\n}",
- IE = "[object PerformanceMark]",
- FF_ESR = "function PerformanceMark() {\n [native code]\n}")
+ IE = "[object PerformanceMark]")
public void performanceMark() throws Exception {
test("PerformanceMark");
}
@@ -6964,9 +6312,7 @@ public void performanceMark() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PerformanceMeasure() { [native code] }",
- FF = "function PerformanceMeasure() {\n [native code]\n}",
- IE = "[object PerformanceMeasure]",
- FF_ESR = "function PerformanceMeasure() {\n [native code]\n}")
+ IE = "[object PerformanceMeasure]")
public void performanceMeasure() throws Exception {
test("PerformanceMeasure");
}
@@ -6976,9 +6322,7 @@ public void performanceMeasure() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PerformanceNavigation() { [native code] }",
- FF = "function PerformanceNavigation() {\n [native code]\n}",
- IE = "[object PerformanceNavigation]",
- FF_ESR = "function PerformanceNavigation() {\n [native code]\n}")
+ IE = "[object PerformanceNavigation]")
public void performanceNavigation() throws Exception {
test("PerformanceNavigation");
}
@@ -6988,9 +6332,7 @@ public void performanceNavigation() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PerformanceNavigationTiming() { [native code] }",
- FF = "function PerformanceNavigationTiming() {\n [native code]\n}",
- IE = "[object PerformanceNavigationTiming]",
- FF_ESR = "function PerformanceNavigationTiming() {\n [native code]\n}")
+ IE = "[object PerformanceNavigationTiming]")
public void performanceNavigationTiming() throws Exception {
test("PerformanceNavigationTiming");
}
@@ -6999,11 +6341,8 @@ public void performanceNavigationTiming() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function PerformanceObserver() { [native code] }",
- EDGE = "function PerformanceObserver() { [native code] }",
- FF = "function PerformanceObserver() {\n [native code]\n}",
- FF_ESR = "function PerformanceObserver() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function PerformanceObserver() { [native code] }",
+ IE = "exception")
public void performanceObserver() throws Exception {
test("PerformanceObserver");
}
@@ -7012,11 +6351,8 @@ public void performanceObserver() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function PerformanceObserverEntryList() { [native code] }",
- EDGE = "function PerformanceObserverEntryList() { [native code] }",
- FF = "function PerformanceObserverEntryList() {\n [native code]\n}",
- FF_ESR = "function PerformanceObserverEntryList() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function PerformanceObserverEntryList() { [native code] }",
+ IE = "exception")
public void performanceObserverEntryList() throws Exception {
test("PerformanceObserverEntryList");
}
@@ -7026,9 +6362,7 @@ public void performanceObserverEntryList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PerformanceResourceTiming() { [native code] }",
- FF = "function PerformanceResourceTiming() {\n [native code]\n}",
- IE = "[object PerformanceResourceTiming]",
- FF_ESR = "function PerformanceResourceTiming() {\n [native code]\n}")
+ IE = "[object PerformanceResourceTiming]")
public void performanceResourceTiming() throws Exception {
test("PerformanceResourceTiming");
}
@@ -7038,9 +6372,7 @@ public void performanceResourceTiming() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PerformanceTiming() { [native code] }",
- FF = "function PerformanceTiming() {\n [native code]\n}",
- IE = "[object PerformanceTiming]",
- FF_ESR = "function PerformanceTiming() {\n [native code]\n}")
+ IE = "[object PerformanceTiming]")
public void performanceTiming() throws Exception {
test("PerformanceTiming");
}
@@ -7079,9 +6411,7 @@ public void periodicSyncRegistration() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PeriodicWave() { [native code] }",
- IE = "exception",
- FF = "function PeriodicWave() {\n [native code]\n}",
- FF_ESR = "function PeriodicWave() {\n [native code]\n}")
+ IE = "exception")
public void periodicWave() throws Exception {
test("PeriodicWave");
}
@@ -7090,11 +6420,8 @@ public void periodicWave() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function Permissions() { [native code] }",
- EDGE = "function Permissions() { [native code] }",
- FF = "function Permissions() {\n [native code]\n}",
- FF_ESR = "function Permissions() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function Permissions() { [native code] }",
+ IE = "exception")
public void permissions() throws Exception {
test("Permissions");
}
@@ -7112,11 +6439,8 @@ public void permissionSettings() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function PermissionStatus() { [native code] }",
- EDGE = "function PermissionStatus() { [native code] }",
- FF = "function PermissionStatus() {\n [native code]\n}",
- FF_ESR = "function PermissionStatus() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function PermissionStatus() { [native code] }",
+ IE = "exception")
public void permissionStatus() throws Exception {
test("PermissionStatus");
}
@@ -7128,9 +6452,7 @@ public void permissionStatus() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Plugin() { [native code] }",
- IE = "[object Plugin]",
- FF = "function Plugin() {\n [native code]\n}",
- FF_ESR = "function Plugin() {\n [native code]\n}")
+ IE = "[object Plugin]")
public void plugin() throws Exception {
test("Plugin");
}
@@ -7142,9 +6464,7 @@ public void plugin() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PluginArray() { [native code] }",
- IE = "[object PluginArray]",
- FF = "function PluginArray() {\n [native code]\n}",
- FF_ESR = "function PluginArray() {\n [native code]\n}")
+ IE = "[object PluginArray]")
public void pluginArray() throws Exception {
test("PluginArray");
}
@@ -7164,10 +6484,7 @@ public void point() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(CHROME = "function PointerEvent() { [native code] }",
- EDGE = "function PointerEvent() { [native code] }",
- FF = "function PointerEvent() {\n [native code]\n}",
- FF_ESR = "function PointerEvent() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function PointerEvent() { [native code] }",
IE = "[object PointerEvent]")
public void pointerEvent() throws Exception {
test("PointerEvent");
@@ -7178,9 +6495,7 @@ public void pointerEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function PopStateEvent() { [native code] }",
- FF = "function PopStateEvent() {\n [native code]\n}",
- IE = "[object PopStateEvent]",
- FF_ESR = "function PopStateEvent() {\n [native code]\n}")
+ IE = "[object PopStateEvent]")
public void popStateEvent() throws Exception {
test("PopStateEvent");
}
@@ -7360,9 +6675,7 @@ public void presentationRequest() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ProcessingInstruction() { [native code] }",
- IE = "[object ProcessingInstruction]",
- FF = "function ProcessingInstruction() {\n [native code]\n}",
- FF_ESR = "function ProcessingInstruction() {\n [native code]\n}")
+ IE = "[object ProcessingInstruction]")
public void processingInstruction() throws Exception {
test("ProcessingInstruction");
}
@@ -7372,9 +6685,7 @@ public void processingInstruction() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ProgressEvent() { [native code] }",
- FF = "function ProgressEvent() {\n [native code]\n}",
- IE = "[object ProgressEvent]",
- FF_ESR = "function ProgressEvent() {\n [native code]\n}")
+ IE = "[object ProgressEvent]")
public void progressEvent() throws Exception {
test("ProgressEvent");
}
@@ -7384,9 +6695,7 @@ public void progressEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Promise() { [native code] }",
- FF = "function Promise() {\n [native code]\n}",
- IE = "exception",
- FF_ESR = "function Promise() {\n [native code]\n}")
+ IE = "exception")
public void promise() throws Exception {
test("Promise");
}
@@ -7404,11 +6713,8 @@ public void promiseRejection() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function PromiseRejectionEvent() { [native code] }",
- EDGE = "function PromiseRejectionEvent() { [native code] }",
- FF = "function PromiseRejectionEvent() {\n [native code]\n}",
- FF_ESR = "function PromiseRejectionEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function PromiseRejectionEvent() { [native code] }",
+ IE = "exception")
public void promiseRejectionEvent() throws Exception {
test("PromiseRejectionEvent");
}
@@ -7427,9 +6733,7 @@ public void promiseResolver() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Proxy() { [native code] }",
- FF = "function Proxy() {\n [native code]\n}",
- IE = "exception",
- FF_ESR = "function Proxy() {\n [native code]\n}")
+ IE = "exception")
public void proxy() throws Exception {
test("Proxy");
}
@@ -7447,11 +6751,8 @@ public void pushEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function PushManager() { [native code] }",
- EDGE = "function PushManager() { [native code] }",
- FF = "function PushManager() {\n [native code]\n}",
- FF_ESR = "function PushManager() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function PushManager() { [native code] }",
+ IE = "exception")
public void pushManager() throws Exception {
test("PushManager");
}
@@ -7478,11 +6779,8 @@ public void pushRegistrationManager() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function PushSubscription() { [native code] }",
- EDGE = "function PushSubscription() { [native code] }",
- FF = "function PushSubscription() {\n [native code]\n}",
- FF_ESR = "function PushSubscription() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function PushSubscription() { [native code] }",
+ IE = "exception")
public void pushSubscription() throws Exception {
test("PushSubscription");
}
@@ -7491,11 +6789,8 @@ public void pushSubscription() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function PushSubscriptionOptions() { [native code] }",
- EDGE = "function PushSubscriptionOptions() { [native code] }",
- FF = "function PushSubscriptionOptions() {\n [native code]\n}",
- FF_ESR = "function PushSubscriptionOptions() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function PushSubscriptionOptions() { [native code] }",
+ IE = "exception")
public void pushSubscriptionOptions() throws Exception {
test("PushSubscriptionOptions");
}
@@ -7504,11 +6799,8 @@ public void pushSubscriptionOptions() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RadioNodeList() { [native code] }",
- EDGE = "function RadioNodeList() { [native code] }",
- FF = "function RadioNodeList() {\n [native code]\n}",
- FF_ESR = "function RadioNodeList() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RadioNodeList() { [native code] }",
+ IE = "exception")
public void radioNodeList() throws Exception {
test("RadioNodeList");
}
@@ -7529,9 +6821,7 @@ public void randomSource() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Range() { [native code] }",
- IE = "[object Range]",
- FF = "function Range() {\n [native code]\n}",
- FF_ESR = "function Range() {\n [native code]\n}")
+ IE = "[object Range]")
public void range() throws Exception {
test("Range");
}
@@ -7541,9 +6831,7 @@ public void range() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function RangeError() { [native code] }",
- FF = "function RangeError() {\n [native code]\n}",
- IE = "function RangeError() {\n [native code]\n}\n",
- FF_ESR = "function RangeError() {\n [native code]\n}")
+ IE = "function RangeError() {\n [native code]\n}\n")
public void rangeError() throws Exception {
test("RangeError");
}
@@ -7561,11 +6849,8 @@ public void readableByteStream() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function ReadableStream() { [native code] }",
- EDGE = "function ReadableStream() { [native code] }",
- FF = "function ReadableStream() {\n [native code]\n}",
- FF_ESR = "function ReadableStream() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function ReadableStream() { [native code] }",
+ IE = "exception")
public void readableStream() throws Exception {
test("ReadableStream");
}
@@ -7575,9 +6860,7 @@ public void readableStream() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ReferenceError() { [native code] }",
- FF = "function ReferenceError() {\n [native code]\n}",
- IE = "function ReferenceError() {\n [native code]\n}\n",
- FF_ESR = "function ReferenceError() {\n [native code]\n}")
+ IE = "function ReferenceError() {\n [native code]\n}\n")
public void referenceError() throws Exception {
test("ReferenceError");
}
@@ -7597,9 +6880,7 @@ public void reflect() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function RegExp() { [native code] }",
- FF = "function RegExp() {\n [native code]\n}",
- IE = "function RegExp() {\n [native code]\n}\n",
- FF_ESR = "function RegExp() {\n [native code]\n}")
+ IE = "function RegExp() {\n [native code]\n}\n")
public void regExp() throws Exception {
test("RegExp");
}
@@ -7628,11 +6909,8 @@ public void renderingContext() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function Request() { [native code] }",
- EDGE = "function Request() { [native code] }",
- FF = "function Request() {\n [native code]\n}",
- FF_ESR = "function Request() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function Request() { [native code] }",
+ IE = "exception")
public void request() throws Exception {
test("Request");
}
@@ -7641,11 +6919,8 @@ public void request() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function Response() { [native code] }",
- EDGE = "function Response() { [native code] }",
- FF = "function Response() {\n [native code]\n}",
- FF_ESR = "function Response() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function Response() { [native code] }",
+ IE = "exception")
public void response() throws Exception {
test("Response");
}
@@ -7665,11 +6940,8 @@ public void rowContainer() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RTCCertificate() { [native code] }",
- EDGE = "function RTCCertificate() { [native code] }",
- FF = "function RTCCertificate() {\n [native code]\n}",
- FF_ESR = "function RTCCertificate() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RTCCertificate() { [native code] }",
+ IE = "exception")
public void rtcCertificate() throws Exception {
test("RTCCertificate");
}
@@ -7687,11 +6959,8 @@ public void rtcConfiguration() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RTCDataChannel() { [native code] }",
- EDGE = "function RTCDataChannel() { [native code] }",
- FF = "function RTCDataChannel() {\n [native code]\n}",
- FF_ESR = "function RTCDataChannel() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RTCDataChannel() { [native code] }",
+ IE = "exception")
@HtmlUnitNYI(CHROME = "exception",
EDGE = "exception",
FF = "exception",
@@ -7704,11 +6973,8 @@ public void rtcDataChannel() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RTCDataChannelEvent() { [native code] }",
- EDGE = "function RTCDataChannelEvent() { [native code] }",
- FF = "function RTCDataChannelEvent() {\n [native code]\n}",
- FF_ESR = "function RTCDataChannelEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RTCDataChannelEvent() { [native code] }",
+ IE = "exception")
public void rtcDataChannelEvent() throws Exception {
test("RTCDataChannelEvent");
}
@@ -7717,11 +6983,8 @@ public void rtcDataChannelEvent() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RTCIceCandidate() { [native code] }",
- EDGE = "function RTCIceCandidate() { [native code] }",
- FF = "function RTCIceCandidate() {\n [native code]\n}",
- FF_ESR = "function RTCIceCandidate() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RTCIceCandidate() { [native code] }",
+ IE = "exception")
public void rtcIceCandidate() throws Exception {
test("RTCIceCandidate");
}
@@ -7766,11 +7029,8 @@ public void rtcIdentityEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RTCPeerConnection() { [native code] }",
- EDGE = "function RTCPeerConnection() { [native code] }",
- FF = "function RTCPeerConnection() {\n [native code]\n}",
- FF_ESR = "function RTCPeerConnection() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RTCPeerConnection() { [native code] }",
+ IE = "exception")
public void rtcPeerConnection() throws Exception {
test("RTCPeerConnection");
}
@@ -7779,11 +7039,8 @@ public void rtcPeerConnection() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RTCPeerConnectionIceEvent() { [native code] }",
- EDGE = "function RTCPeerConnectionIceEvent() { [native code] }",
- FF = "function RTCPeerConnectionIceEvent() {\n [native code]\n}",
- FF_ESR = "function RTCPeerConnectionIceEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RTCPeerConnectionIceEvent() { [native code] }",
+ IE = "exception")
public void rtcPeerConnectionIceEvent() throws Exception {
test("RTCPeerConnectionIceEvent");
}
@@ -7792,10 +7049,8 @@ public void rtcPeerConnectionIceEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RTCSctpTransport() { [native code] }",
- EDGE = "function RTCSctpTransport() { [native code] }",
- FF = "function RTCSctpTransport() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RTCSctpTransport() { [native code] }",
+ IE = "exception")
public void rtcSctpTransport() throws Exception {
test("RTCSctpTransport");
}
@@ -7804,11 +7059,8 @@ public void rtcSctpTransport() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RTCSessionDescription() { [native code] }",
- EDGE = "function RTCSessionDescription() { [native code] }",
- FF = "function RTCSessionDescription() {\n [native code]\n}",
- FF_ESR = "function RTCSessionDescription() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RTCSessionDescription() { [native code] }",
+ IE = "exception")
public void rtcSessionDescription() throws Exception {
test("RTCSessionDescription");
}
@@ -7826,11 +7078,8 @@ public void rtcSessionDescriptionCallback() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function RTCStatsReport() { [native code] }",
- EDGE = "function RTCStatsReport() { [native code] }",
- FF = "function RTCStatsReport() {\n [native code]\n}",
- FF_ESR = "function RTCStatsReport() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function RTCStatsReport() { [native code] }",
+ IE = "exception")
public void rtcStatsReport() throws Exception {
test("RTCStatsReport");
}
@@ -7842,9 +7091,7 @@ public void rtcStatsReport() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Screen() { [native code] }",
- IE = "[object Screen]",
- FF = "function Screen() {\n [native code]\n}",
- FF_ESR = "function Screen() {\n [native code]\n}")
+ IE = "[object Screen]")
public void screen() throws Exception {
test("Screen");
}
@@ -7853,11 +7100,8 @@ public void screen() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function ScreenOrientation() { [native code] }",
- EDGE = "function ScreenOrientation() { [native code] }",
- FF = "function ScreenOrientation() {\n [native code]\n}",
- FF_ESR = "function ScreenOrientation() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function ScreenOrientation() { [native code] }",
+ IE = "exception")
public void screenOrientation() throws Exception {
test("ScreenOrientation");
}
@@ -7867,9 +7111,7 @@ public void screenOrientation() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ScriptProcessorNode() { [native code] }",
- IE = "exception",
- FF = "function ScriptProcessorNode() {\n [native code]\n}",
- FF_ESR = "function ScriptProcessorNode() {\n [native code]\n}")
+ IE = "exception")
public void scriptProcessorNode() throws Exception {
test("ScriptProcessorNode");
}
@@ -7878,11 +7120,8 @@ public void scriptProcessorNode() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SecurityPolicyViolationEvent() { [native code] }",
- EDGE = "function SecurityPolicyViolationEvent() { [native code] }",
- FF = "function SecurityPolicyViolationEvent() {\n [native code]\n}",
- FF_ESR = "function SecurityPolicyViolationEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SecurityPolicyViolationEvent() { [native code] }",
+ IE = "exception")
public void securityPolicyViolationEvent() throws Exception {
test("SecurityPolicyViolationEvent");
}
@@ -7894,9 +7133,7 @@ public void securityPolicyViolationEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Selection() { [native code] }",
- IE = "[object Selection]",
- FF = "function Selection() {\n [native code]\n}",
- FF_ESR = "function Selection() {\n [native code]\n}")
+ IE = "[object Selection]")
public void selection() throws Exception {
test("Selection");
}
@@ -7905,11 +7142,8 @@ public void selection() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function ServiceWorker() { [native code] }",
- EDGE = "function ServiceWorker() { [native code] }",
- FF = "function ServiceWorker() {\n [native code]\n}",
- FF_ESR = "function ServiceWorker() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function ServiceWorker() { [native code] }",
+ IE = "exception")
public void serviceWorker() throws Exception {
test("ServiceWorker");
}
@@ -7918,11 +7152,8 @@ public void serviceWorker() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function ServiceWorkerContainer() { [native code] }",
- EDGE = "function ServiceWorkerContainer() { [native code] }",
- FF = "function ServiceWorkerContainer() {\n [native code]\n}",
- FF_ESR = "function ServiceWorkerContainer() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function ServiceWorkerContainer() { [native code] }",
+ IE = "exception")
public void serviceWorkerContainer() throws Exception {
test("ServiceWorkerContainer");
}
@@ -7949,11 +7180,8 @@ public void serviceWorkerMessageEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function ServiceWorkerRegistration() { [native code] }",
- EDGE = "function ServiceWorkerRegistration() { [native code] }",
- FF = "function ServiceWorkerRegistration() {\n [native code]\n}",
- FF_ESR = "function ServiceWorkerRegistration() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function ServiceWorkerRegistration() { [native code] }",
+ IE = "exception")
public void serviceWorkerRegistration() throws Exception {
test("ServiceWorkerRegistration");
}
@@ -7972,9 +7200,7 @@ public void serviceWorkerState() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Set() { [native code] }",
- FF = "function Set() {\n [native code]\n}",
- IE = "function Set() {\n [native code]\n}\n",
- FF_ESR = "function Set() {\n [native code]\n}")
+ IE = "function Set() {\n [native code]\n}\n")
public void set() throws Exception {
test("Set");
}
@@ -8003,11 +7229,8 @@ public void settingsManager() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function ShadowRoot() { [native code] }",
- EDGE = "function ShadowRoot() { [native code] }",
- FF = "function ShadowRoot() {\n [native code]\n}",
- FF_ESR = "function ShadowRoot() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function ShadowRoot() { [native code] }",
+ IE = "exception")
public void shadowRoot() throws Exception {
test("ShadowRoot");
}
@@ -8036,11 +7259,8 @@ public void sharedKeyframeList() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SharedWorker() { [native code] }",
- EDGE = "function SharedWorker() { [native code] }",
- FF = "function SharedWorker() {\n [native code]\n}",
- FF_ESR = "function SharedWorker() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SharedWorker() { [native code] }",
+ IE = "exception")
public void sharedWorker() throws Exception {
test("SharedWorker");
}
@@ -8240,10 +7460,7 @@ public void siteBoundCredential() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(CHROME = "function SourceBuffer() { [native code] }",
- EDGE = "function SourceBuffer() { [native code] }",
- FF = "function SourceBuffer() {\n [native code]\n}",
- FF_ESR = "function SourceBuffer() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function SourceBuffer() { [native code] }",
IE = "[object SourceBuffer]")
@HtmlUnitNYI(IE = "function SourceBuffer() {\n [native code]\n}\n")
public void sourceBuffer() throws Exception {
@@ -8254,10 +7471,7 @@ public void sourceBuffer() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(CHROME = "function SourceBufferList() { [native code] }",
- EDGE = "function SourceBufferList() { [native code] }",
- FF = "function SourceBufferList() {\n [native code]\n}",
- FF_ESR = "function SourceBufferList() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function SourceBufferList() { [native code] }",
IE = "[object SourceBufferList]")
@HtmlUnitNYI(IE = "function SourceBufferList() {\n [native code]\n}\n")
public void sourceBufferList() throws Exception {
@@ -8350,8 +7564,8 @@ public void speechRecognitionResultList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function SpeechSynthesis() {\n [native code]\n}",
- FF_ESR = "function SpeechSynthesis() {\n [native code]\n}")
+ FF = "function SpeechSynthesis() { [native code] }",
+ FF_ESR = "function SpeechSynthesis() { [native code] }")
public void speechSynthesis() throws Exception {
test("SpeechSynthesis");
}
@@ -8360,9 +7574,7 @@ public void speechSynthesis() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "function SpeechSynthesisErrorEvent() {\n [native code]\n}",
- CHROME = "function SpeechSynthesisErrorEvent() { [native code] }",
- EDGE = "function SpeechSynthesisErrorEvent() { [native code] }",
+ @Alerts(DEFAULT = "function SpeechSynthesisErrorEvent() { [native code] }",
IE = "exception")
public void speechSynthesisErrorEvent() throws Exception {
test("SpeechSynthesisErrorEvent");
@@ -8372,11 +7584,8 @@ public void speechSynthesisErrorEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SpeechSynthesisEvent() { [native code] }",
- EDGE = "function SpeechSynthesisEvent() { [native code] }",
- FF = "function SpeechSynthesisEvent() {\n [native code]\n}",
- FF_ESR = "function SpeechSynthesisEvent() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SpeechSynthesisEvent() { [native code] }",
+ IE = "exception")
public void speechSynthesisEvent() throws Exception {
test("SpeechSynthesisEvent");
}
@@ -8385,11 +7594,8 @@ public void speechSynthesisEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SpeechSynthesisUtterance() { [native code] }",
- EDGE = "function SpeechSynthesisUtterance() { [native code] }",
- FF = "function SpeechSynthesisUtterance() {\n [native code]\n}",
- FF_ESR = "function SpeechSynthesisUtterance() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SpeechSynthesisUtterance() { [native code] }",
+ IE = "exception")
public void speechSynthesisUtterance() throws Exception {
test("SpeechSynthesisUtterance");
}
@@ -8399,8 +7605,8 @@ public void speechSynthesisUtterance() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function SpeechSynthesisVoice() {\n [native code]\n}",
- FF_ESR = "function SpeechSynthesisVoice() {\n [native code]\n}")
+ FF = "function SpeechSynthesisVoice() { [native code] }",
+ FF_ESR = "function SpeechSynthesisVoice() { [native code] }")
public void speechSynthesisVoice() throws Exception {
test("SpeechSynthesisVoice");
}
@@ -8418,11 +7624,8 @@ public void staticNodeList() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function StereoPannerNode() { [native code] }",
- EDGE = "function StereoPannerNode() { [native code] }",
- FF = "function StereoPannerNode() {\n [native code]\n}",
- FF_ESR = "function StereoPannerNode() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function StereoPannerNode() { [native code] }",
+ IE = "exception")
public void stereoPannerNode() throws Exception {
test("StereoPannerNode");
}
@@ -8445,9 +7648,7 @@ public void stopIteration() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Storage() { [native code] }",
- FF = "function Storage() {\n [native code]\n}",
- IE = "[object Storage]",
- FF_ESR = "function Storage() {\n [native code]\n}")
+ IE = "[object Storage]")
public void storage() throws Exception {
test("Storage");
}
@@ -8466,9 +7667,7 @@ public void storageEstimate() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function StorageEvent() { [native code] }",
- FF = "function StorageEvent() {\n [native code]\n}",
- IE = "[object StorageEvent]",
- FF_ESR = "function StorageEvent() {\n [native code]\n}")
+ IE = "[object StorageEvent]")
public void storageEvent() throws Exception {
test("StorageEvent");
}
@@ -8477,11 +7676,8 @@ public void storageEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function StorageManager() { [native code] }",
- EDGE = "function StorageManager() { [native code] }",
- FF = "function StorageManager() {\n [native code]\n}",
- FF_ESR = "function StorageManager() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function StorageManager() { [native code] }",
+ IE = "exception")
public void storageManager() throws Exception {
test("StorageManager");
}
@@ -8500,9 +7696,7 @@ public void storageQuota() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function String() { [native code] }",
- FF = "function String() {\n [native code]\n}",
- IE = "function String() {\n [native code]\n}\n",
- FF_ESR = "function String() {\n [native code]\n}")
+ IE = "function String() {\n [native code]\n}\n")
public void string() throws Exception {
test("String");
}
@@ -8522,9 +7716,7 @@ public void styleMedia() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function StyleSheet() { [native code] }",
- FF = "function StyleSheet() {\n [native code]\n}",
- IE = "[object StyleSheet]",
- FF_ESR = "function StyleSheet() {\n [native code]\n}")
+ IE = "[object StyleSheet]")
public void styleSheet() throws Exception {
test("StyleSheet");
}
@@ -8536,9 +7728,7 @@ public void styleSheet() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function StyleSheetList() { [native code] }",
- IE = "[object StyleSheetList]",
- FF = "function StyleSheetList() {\n [native code]\n}",
- FF_ESR = "function StyleSheetList() {\n [native code]\n}")
+ IE = "[object StyleSheetList]")
public void styleSheetList() throws Exception {
test("StyleSheetList");
}
@@ -8548,8 +7738,6 @@ public void styleSheetList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SubmitEvent() { [native code] }",
- FF = "function SubmitEvent() {\n [native code]\n}",
- FF_ESR = "function SubmitEvent() {\n [native code]\n}",
IE = "exception")
public void submitEvent() throws Exception {
test("SubmitEvent");
@@ -8560,9 +7748,7 @@ public void submitEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SubtleCrypto() { [native code] }",
- FF = "function SubtleCrypto() {\n [native code]\n}",
- IE = "[object SubtleCrypto]",
- FF_ESR = "function SubtleCrypto() {\n [native code]\n}")
+ IE = "[object SubtleCrypto]")
public void subtleCrypto() throws Exception {
test("SubtleCrypto");
}
@@ -8574,9 +7760,7 @@ public void subtleCrypto() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAElement() { [native code] }",
- IE = "[object SVGAElement]",
- FF = "function SVGAElement() {\n [native code]\n}",
- FF_ESR = "function SVGAElement() {\n [native code]\n}")
+ IE = "[object SVGAElement]")
public void svgAElement() throws Exception {
test("SVGAElement");
}
@@ -8597,9 +7781,7 @@ public void svgAltGlyphElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAngle() { [native code] }",
- IE = "[object SVGAngle]",
- FF = "function SVGAngle() {\n [native code]\n}",
- FF_ESR = "function SVGAngle() {\n [native code]\n}")
+ IE = "[object SVGAngle]")
public void svgAngle() throws Exception {
test("SVGAngle");
}
@@ -8618,9 +7800,7 @@ public void svgAnimateColorElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedAngle() { [native code] }",
- FF = "function SVGAnimatedAngle() {\n [native code]\n}",
- IE = "[object SVGAnimatedAngle]",
- FF_ESR = "function SVGAnimatedAngle() {\n [native code]\n}")
+ IE = "[object SVGAnimatedAngle]")
public void svgAnimatedAngle() throws Exception {
test("SVGAnimatedAngle");
}
@@ -8630,9 +7810,7 @@ public void svgAnimatedAngle() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedBoolean() { [native code] }",
- FF = "function SVGAnimatedBoolean() {\n [native code]\n}",
- IE = "[object SVGAnimatedBoolean]",
- FF_ESR = "function SVGAnimatedBoolean() {\n [native code]\n}")
+ IE = "[object SVGAnimatedBoolean]")
public void svgAnimatedBoolean() throws Exception {
test("SVGAnimatedBoolean");
}
@@ -8642,9 +7820,7 @@ public void svgAnimatedBoolean() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedEnumeration() { [native code] }",
- FF = "function SVGAnimatedEnumeration() {\n [native code]\n}",
- IE = "[object SVGAnimatedEnumeration]",
- FF_ESR = "function SVGAnimatedEnumeration() {\n [native code]\n}")
+ IE = "[object SVGAnimatedEnumeration]")
public void svgAnimatedEnumeration() throws Exception {
test("SVGAnimatedEnumeration");
}
@@ -8654,9 +7830,7 @@ public void svgAnimatedEnumeration() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedInteger() { [native code] }",
- FF = "function SVGAnimatedInteger() {\n [native code]\n}",
- IE = "[object SVGAnimatedInteger]",
- FF_ESR = "function SVGAnimatedInteger() {\n [native code]\n}")
+ IE = "[object SVGAnimatedInteger]")
public void svgAnimatedInteger() throws Exception {
test("SVGAnimatedInteger");
}
@@ -8666,9 +7840,7 @@ public void svgAnimatedInteger() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedLength() { [native code] }",
- FF = "function SVGAnimatedLength() {\n [native code]\n}",
- IE = "[object SVGAnimatedLength]",
- FF_ESR = "function SVGAnimatedLength() {\n [native code]\n}")
+ IE = "[object SVGAnimatedLength]")
public void svgAnimatedLength() throws Exception {
test("SVGAnimatedLength");
}
@@ -8678,9 +7850,7 @@ public void svgAnimatedLength() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedLengthList() { [native code] }",
- FF = "function SVGAnimatedLengthList() {\n [native code]\n}",
- IE = "[object SVGAnimatedLengthList]",
- FF_ESR = "function SVGAnimatedLengthList() {\n [native code]\n}")
+ IE = "[object SVGAnimatedLengthList]")
public void svgAnimatedLengthList() throws Exception {
test("SVGAnimatedLengthList");
}
@@ -8690,9 +7860,7 @@ public void svgAnimatedLengthList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedNumber() { [native code] }",
- FF = "function SVGAnimatedNumber() {\n [native code]\n}",
- IE = "[object SVGAnimatedNumber]",
- FF_ESR = "function SVGAnimatedNumber() {\n [native code]\n}")
+ IE = "[object SVGAnimatedNumber]")
public void svgAnimatedNumber() throws Exception {
test("SVGAnimatedNumber");
}
@@ -8702,9 +7870,7 @@ public void svgAnimatedNumber() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedNumberList() { [native code] }",
- FF = "function SVGAnimatedNumberList() {\n [native code]\n}",
- IE = "[object SVGAnimatedNumberList]",
- FF_ESR = "function SVGAnimatedNumberList() {\n [native code]\n}")
+ IE = "[object SVGAnimatedNumberList]")
public void svgAnimatedNumberList() throws Exception {
test("SVGAnimatedNumberList");
}
@@ -8723,9 +7889,7 @@ public void svgAnimatedPoints() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedPreserveAspectRatio() { [native code] }",
- FF = "function SVGAnimatedPreserveAspectRatio() {\n [native code]\n}",
- IE = "[object SVGAnimatedPreserveAspectRatio]",
- FF_ESR = "function SVGAnimatedPreserveAspectRatio() {\n [native code]\n}")
+ IE = "[object SVGAnimatedPreserveAspectRatio]")
public void svgAnimatedPreserveAspectRatio() throws Exception {
test("SVGAnimatedPreserveAspectRatio");
}
@@ -8735,9 +7899,7 @@ public void svgAnimatedPreserveAspectRatio() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedRect() { [native code] }",
- FF = "function SVGAnimatedRect() {\n [native code]\n}",
- IE = "[object SVGAnimatedRect]",
- FF_ESR = "function SVGAnimatedRect() {\n [native code]\n}")
+ IE = "[object SVGAnimatedRect]")
public void svgAnimatedRect() throws Exception {
test("SVGAnimatedRect");
}
@@ -8747,9 +7909,7 @@ public void svgAnimatedRect() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedString() { [native code] }",
- FF = "function SVGAnimatedString() {\n [native code]\n}",
- IE = "[object SVGAnimatedString]",
- FF_ESR = "function SVGAnimatedString() {\n [native code]\n}")
+ IE = "[object SVGAnimatedString]")
public void svgAnimatedString() throws Exception {
test("SVGAnimatedString");
}
@@ -8759,9 +7919,7 @@ public void svgAnimatedString() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGAnimatedTransformList() { [native code] }",
- FF = "function SVGAnimatedTransformList() {\n [native code]\n}",
- IE = "[object SVGAnimatedTransformList]",
- FF_ESR = "function SVGAnimatedTransformList() {\n [native code]\n}")
+ IE = "[object SVGAnimatedTransformList]")
public void svgAnimatedTransformList() throws Exception {
test("SVGAnimatedTransformList");
}
@@ -8772,11 +7930,8 @@ public void svgAnimatedTransformList() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SVGAnimateElement() { [native code] }",
- EDGE = "function SVGAnimateElement() { [native code] }",
- FF = "function SVGAnimateElement() {\n [native code]\n}",
- FF_ESR = "function SVGAnimateElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SVGAnimateElement() { [native code] }",
+ IE = "exception")
public void svgAnimateElement() throws Exception {
test("SVGAnimateElement");
}
@@ -8787,11 +7942,8 @@ public void svgAnimateElement() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SVGAnimateMotionElement() { [native code] }",
- EDGE = "function SVGAnimateMotionElement() { [native code] }",
- FF = "function SVGAnimateMotionElement() {\n [native code]\n}",
- FF_ESR = "function SVGAnimateMotionElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SVGAnimateMotionElement() { [native code] }",
+ IE = "exception")
public void svgAnimateMotionElement() throws Exception {
test("SVGAnimateMotionElement");
}
@@ -8802,11 +7954,8 @@ public void svgAnimateMotionElement() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SVGAnimateTransformElement() { [native code] }",
- EDGE = "function SVGAnimateTransformElement() { [native code] }",
- FF = "function SVGAnimateTransformElement() {\n [native code]\n}",
- FF_ESR = "function SVGAnimateTransformElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SVGAnimateTransformElement() { [native code] }",
+ IE = "exception")
public void svgAnimateTransformElement() throws Exception {
test("SVGAnimateTransformElement");
}
@@ -8815,11 +7964,8 @@ public void svgAnimateTransformElement() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SVGAnimationElement() { [native code] }",
- EDGE = "function SVGAnimationElement() { [native code] }",
- FF = "function SVGAnimationElement() {\n [native code]\n}",
- FF_ESR = "function SVGAnimationElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SVGAnimationElement() { [native code] }",
+ IE = "exception")
public void svgAnimationElement() throws Exception {
test("SVGAnimationElement");
}
@@ -8831,9 +7977,7 @@ public void svgAnimationElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGCircleElement() { [native code] }",
- IE = "[object SVGCircleElement]",
- FF = "function SVGCircleElement() {\n [native code]\n}",
- FF_ESR = "function SVGCircleElement() {\n [native code]\n}")
+ IE = "[object SVGCircleElement]")
public void svgCircleElement() throws Exception {
test("SVGCircleElement");
}
@@ -8845,9 +7989,7 @@ public void svgCircleElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGClipPathElement() { [native code] }",
- IE = "[object SVGClipPathElement]",
- FF = "function SVGClipPathElement() {\n [native code]\n}",
- FF_ESR = "function SVGClipPathElement() {\n [native code]\n}")
+ IE = "[object SVGClipPathElement]")
public void svgClipPathElement() throws Exception {
test("SVGClipPathElement");
}
@@ -8857,9 +7999,7 @@ public void svgClipPathElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGComponentTransferFunctionElement() { [native code] }",
- FF = "function SVGComponentTransferFunctionElement() {\n [native code]\n}",
- IE = "[object SVGComponentTransferFunctionElement]",
- FF_ESR = "function SVGComponentTransferFunctionElement() {\n [native code]\n}")
+ IE = "[object SVGComponentTransferFunctionElement]")
public void svgComponentTransferFunctionElement() throws Exception {
test("SVGComponentTransferFunctionElement");
}
@@ -8880,9 +8020,7 @@ public void svgCursorElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGDefsElement() { [native code] }",
- IE = "[object SVGDefsElement]",
- FF = "function SVGDefsElement() {\n [native code]\n}",
- FF_ESR = "function SVGDefsElement() {\n [native code]\n}")
+ IE = "[object SVGDefsElement]")
public void svgDefsElement() throws Exception {
test("SVGDefsElement");
}
@@ -8894,9 +8032,7 @@ public void svgDefsElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGDescElement() { [native code] }",
- IE = "[object SVGDescElement]",
- FF = "function SVGDescElement() {\n [native code]\n}",
- FF_ESR = "function SVGDescElement() {\n [native code]\n}")
+ IE = "[object SVGDescElement]")
public void svgDescElement() throws Exception {
test("SVGDescElement");
}
@@ -8926,9 +8062,7 @@ public void svgDocument() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGElement() { [native code] }",
- IE = "[object SVGElement]",
- FF = "function SVGElement() {\n [native code]\n}",
- FF_ESR = "function SVGElement() {\n [native code]\n}")
+ IE = "[object SVGElement]")
public void svgElement() throws Exception {
test("SVGElement");
}
@@ -8940,9 +8074,7 @@ public void svgElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGEllipseElement() { [native code] }",
- IE = "[object SVGEllipseElement]",
- FF = "function SVGEllipseElement() {\n [native code]\n}",
- FF_ESR = "function SVGEllipseElement() {\n [native code]\n}")
+ IE = "[object SVGEllipseElement]")
public void svgEllipseElement() throws Exception {
test("SVGEllipseElement");
}
@@ -8963,9 +8095,7 @@ public void svgEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEBlendElement() { [native code] }",
- IE = "[object SVGFEBlendElement]",
- FF = "function SVGFEBlendElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEBlendElement() {\n [native code]\n}")
+ IE = "[object SVGFEBlendElement]")
public void svgFEBlendElement() throws Exception {
test("SVGFEBlendElement");
}
@@ -8977,9 +8107,7 @@ public void svgFEBlendElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEColorMatrixElement() { [native code] }",
- IE = "[object SVGFEColorMatrixElement]",
- FF = "function SVGFEColorMatrixElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEColorMatrixElement() {\n [native code]\n}")
+ IE = "[object SVGFEColorMatrixElement]")
public void svgFEColorMatrixElement() throws Exception {
test("SVGFEColorMatrixElement");
}
@@ -8991,9 +8119,7 @@ public void svgFEColorMatrixElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEComponentTransferElement() { [native code] }",
- IE = "[object SVGFEComponentTransferElement]",
- FF = "function SVGFEComponentTransferElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEComponentTransferElement() {\n [native code]\n}")
+ IE = "[object SVGFEComponentTransferElement]")
public void svgFEComponentTransferElement() throws Exception {
test("SVGFEComponentTransferElement");
}
@@ -9005,9 +8131,7 @@ public void svgFEComponentTransferElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFECompositeElement() { [native code] }",
- IE = "[object SVGFECompositeElement]",
- FF = "function SVGFECompositeElement() {\n [native code]\n}",
- FF_ESR = "function SVGFECompositeElement() {\n [native code]\n}")
+ IE = "[object SVGFECompositeElement]")
public void svgFECompositeElement() throws Exception {
test("SVGFECompositeElement");
}
@@ -9019,9 +8143,7 @@ public void svgFECompositeElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEConvolveMatrixElement() { [native code] }",
- IE = "[object SVGFEConvolveMatrixElement]",
- FF = "function SVGFEConvolveMatrixElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEConvolveMatrixElement() {\n [native code]\n}")
+ IE = "[object SVGFEConvolveMatrixElement]")
public void svgFEConvolveMatrixElement() throws Exception {
test("SVGFEConvolveMatrixElement");
}
@@ -9033,9 +8155,7 @@ public void svgFEConvolveMatrixElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEDiffuseLightingElement() { [native code] }",
- IE = "[object SVGFEDiffuseLightingElement]",
- FF = "function SVGFEDiffuseLightingElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEDiffuseLightingElement() {\n [native code]\n}")
+ IE = "[object SVGFEDiffuseLightingElement]")
public void svgFEDiffuseLightingElement() throws Exception {
test("SVGFEDiffuseLightingElement");
}
@@ -9047,9 +8167,7 @@ public void svgFEDiffuseLightingElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEDisplacementMapElement() { [native code] }",
- IE = "[object SVGFEDisplacementMapElement]",
- FF = "function SVGFEDisplacementMapElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEDisplacementMapElement() {\n [native code]\n}")
+ IE = "[object SVGFEDisplacementMapElement]")
public void svgFEDisplacementMapElement() throws Exception {
test("SVGFEDisplacementMapElement");
}
@@ -9061,9 +8179,7 @@ public void svgFEDisplacementMapElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEDistantLightElement() { [native code] }",
- IE = "[object SVGFEDistantLightElement]",
- FF = "function SVGFEDistantLightElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEDistantLightElement() {\n [native code]\n}")
+ IE = "[object SVGFEDistantLightElement]")
public void svgFEDistantLightElement() throws Exception {
test("SVGFEDistantLightElement");
}
@@ -9072,11 +8188,8 @@ public void svgFEDistantLightElement() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SVGFEDropShadowElement() { [native code] }",
- EDGE = "function SVGFEDropShadowElement() { [native code] }",
- FF = "function SVGFEDropShadowElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEDropShadowElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SVGFEDropShadowElement() { [native code] }",
+ IE = "exception")
public void svgFEDropShadowElement() throws Exception {
test("SVGFEDropShadowElement");
}
@@ -9088,9 +8201,7 @@ public void svgFEDropShadowElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEFloodElement() { [native code] }",
- IE = "[object SVGFEFloodElement]",
- FF = "function SVGFEFloodElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEFloodElement() {\n [native code]\n}")
+ IE = "[object SVGFEFloodElement]")
public void svgFEFloodElement() throws Exception {
test("SVGFEFloodElement");
}
@@ -9102,9 +8213,7 @@ public void svgFEFloodElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEFuncAElement() { [native code] }",
- IE = "[object SVGFEFuncAElement]",
- FF = "function SVGFEFuncAElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEFuncAElement() {\n [native code]\n}")
+ IE = "[object SVGFEFuncAElement]")
public void svgFEFuncAElement() throws Exception {
test("SVGFEFuncAElement");
}
@@ -9116,9 +8225,7 @@ public void svgFEFuncAElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEFuncBElement() { [native code] }",
- IE = "[object SVGFEFuncBElement]",
- FF = "function SVGFEFuncBElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEFuncBElement() {\n [native code]\n}")
+ IE = "[object SVGFEFuncBElement]")
public void svgFEFuncBElement() throws Exception {
test("SVGFEFuncBElement");
}
@@ -9130,9 +8237,7 @@ public void svgFEFuncBElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEFuncGElement() { [native code] }",
- IE = "[object SVGFEFuncGElement]",
- FF = "function SVGFEFuncGElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEFuncGElement() {\n [native code]\n}")
+ IE = "[object SVGFEFuncGElement]")
public void svgFEFuncGElement() throws Exception {
test("SVGFEFuncGElement");
}
@@ -9144,9 +8249,7 @@ public void svgFEFuncGElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEFuncRElement() { [native code] }",
- IE = "[object SVGFEFuncRElement]",
- FF = "function SVGFEFuncRElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEFuncRElement() {\n [native code]\n}")
+ IE = "[object SVGFEFuncRElement]")
public void svgFEFuncRElement() throws Exception {
test("SVGFEFuncRElement");
}
@@ -9158,9 +8261,7 @@ public void svgFEFuncRElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEGaussianBlurElement() { [native code] }",
- IE = "[object SVGFEGaussianBlurElement]",
- FF = "function SVGFEGaussianBlurElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEGaussianBlurElement() {\n [native code]\n}")
+ IE = "[object SVGFEGaussianBlurElement]")
public void svgFEGaussianBlurElement() throws Exception {
test("SVGFEGaussianBlurElement");
}
@@ -9172,9 +8273,7 @@ public void svgFEGaussianBlurElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEImageElement() { [native code] }",
- IE = "[object SVGFEImageElement]",
- FF = "function SVGFEImageElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEImageElement() {\n [native code]\n}")
+ IE = "[object SVGFEImageElement]")
public void svgFEImageElement() throws Exception {
test("SVGFEImageElement");
}
@@ -9186,9 +8285,7 @@ public void svgFEImageElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEMergeElement() { [native code] }",
- IE = "[object SVGFEMergeElement]",
- FF = "function SVGFEMergeElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEMergeElement() {\n [native code]\n}")
+ IE = "[object SVGFEMergeElement]")
public void svgFEMergeElement() throws Exception {
test("SVGFEMergeElement");
}
@@ -9200,9 +8297,7 @@ public void svgFEMergeElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEMergeNodeElement() { [native code] }",
- IE = "[object SVGFEMergeNodeElement]",
- FF = "function SVGFEMergeNodeElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEMergeNodeElement() {\n [native code]\n}")
+ IE = "[object SVGFEMergeNodeElement]")
public void svgFEMergeNodeElement() throws Exception {
test("SVGFEMergeNodeElement");
}
@@ -9214,9 +8309,7 @@ public void svgFEMergeNodeElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEMorphologyElement() { [native code] }",
- IE = "[object SVGFEMorphologyElement]",
- FF = "function SVGFEMorphologyElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEMorphologyElement() {\n [native code]\n}")
+ IE = "[object SVGFEMorphologyElement]")
public void svgFEMorphologyElement() throws Exception {
test("SVGFEMorphologyElement");
}
@@ -9228,9 +8321,7 @@ public void svgFEMorphologyElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEOffsetElement() { [native code] }",
- IE = "[object SVGFEOffsetElement]",
- FF = "function SVGFEOffsetElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEOffsetElement() {\n [native code]\n}")
+ IE = "[object SVGFEOffsetElement]")
public void svgFEOffsetElement() throws Exception {
test("SVGFEOffsetElement");
}
@@ -9242,9 +8333,7 @@ public void svgFEOffsetElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFEPointLightElement() { [native code] }",
- IE = "[object SVGFEPointLightElement]",
- FF = "function SVGFEPointLightElement() {\n [native code]\n}",
- FF_ESR = "function SVGFEPointLightElement() {\n [native code]\n}")
+ IE = "[object SVGFEPointLightElement]")
public void svgFEPointLightElement() throws Exception {
test("SVGFEPointLightElement");
}
@@ -9256,9 +8345,7 @@ public void svgFEPointLightElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFESpecularLightingElement() { [native code] }",
- IE = "[object SVGFESpecularLightingElement]",
- FF = "function SVGFESpecularLightingElement() {\n [native code]\n}",
- FF_ESR = "function SVGFESpecularLightingElement() {\n [native code]\n}")
+ IE = "[object SVGFESpecularLightingElement]")
public void svgFESpecularLightingElement() throws Exception {
test("SVGFESpecularLightingElement");
}
@@ -9270,9 +8357,7 @@ public void svgFESpecularLightingElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFESpotLightElement() { [native code] }",
- IE = "[object SVGFESpotLightElement]",
- FF = "function SVGFESpotLightElement() {\n [native code]\n}",
- FF_ESR = "function SVGFESpotLightElement() {\n [native code]\n}")
+ IE = "[object SVGFESpotLightElement]")
public void svgFESpotLightElement() throws Exception {
test("SVGFESpotLightElement");
}
@@ -9284,9 +8369,7 @@ public void svgFESpotLightElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFETileElement() { [native code] }",
- IE = "[object SVGFETileElement]",
- FF = "function SVGFETileElement() {\n [native code]\n}",
- FF_ESR = "function SVGFETileElement() {\n [native code]\n}")
+ IE = "[object SVGFETileElement]")
public void svgFETileElement() throws Exception {
test("SVGFETileElement");
}
@@ -9298,9 +8381,7 @@ public void svgFETileElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFETurbulenceElement() { [native code] }",
- IE = "[object SVGFETurbulenceElement]",
- FF = "function SVGFETurbulenceElement() {\n [native code]\n}",
- FF_ESR = "function SVGFETurbulenceElement() {\n [native code]\n}")
+ IE = "[object SVGFETurbulenceElement]")
public void svgFETurbulenceElement() throws Exception {
test("SVGFETurbulenceElement");
}
@@ -9312,9 +8393,7 @@ public void svgFETurbulenceElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGFilterElement() { [native code] }",
- IE = "[object SVGFilterElement]",
- FF = "function SVGFilterElement() {\n [native code]\n}",
- FF_ESR = "function SVGFilterElement() {\n [native code]\n}")
+ IE = "[object SVGFilterElement]")
public void svgFilterElement() throws Exception {
test("SVGFilterElement");
}
@@ -9380,9 +8459,7 @@ public void svgFontFaceUriElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGForeignObjectElement() { [native code] }",
- IE = "exception",
- FF = "function SVGForeignObjectElement() {\n [native code]\n}",
- FF_ESR = "function SVGForeignObjectElement() {\n [native code]\n}")
+ IE = "exception")
public void svgForeignObjectElement() throws Exception {
test("SVGForeignObjectElement");
}
@@ -9394,9 +8471,7 @@ public void svgForeignObjectElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGGElement() { [native code] }",
- IE = "[object SVGGElement]",
- FF = "function SVGGElement() {\n [native code]\n}",
- FF_ESR = "function SVGGElement() {\n [native code]\n}")
+ IE = "[object SVGGElement]")
public void svgGElement() throws Exception {
test("SVGGElement");
}
@@ -9405,11 +8480,8 @@ public void svgGElement() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SVGGeometryElement() { [native code] }",
- EDGE = "function SVGGeometryElement() { [native code] }",
- FF = "function SVGGeometryElement() {\n [native code]\n}",
- FF_ESR = "function SVGGeometryElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SVGGeometryElement() { [native code] }",
+ IE = "exception")
public void svgGeometryElement() throws Exception {
test("SVGGeometryElement");
}
@@ -9428,9 +8500,7 @@ public void svgGlyphElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGGradientElement() { [native code] }",
- FF = "function SVGGradientElement() {\n [native code]\n}",
- IE = "[object SVGGradientElement]",
- FF_ESR = "function SVGGradientElement() {\n [native code]\n}")
+ IE = "[object SVGGradientElement]")
public void svgGradientElement() throws Exception {
test("SVGGradientElement");
}
@@ -9439,11 +8509,8 @@ public void svgGradientElement() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SVGGraphicsElement() { [native code] }",
- EDGE = "function SVGGraphicsElement() { [native code] }",
- FF = "function SVGGraphicsElement() {\n [native code]\n}",
- FF_ESR = "function SVGGraphicsElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SVGGraphicsElement() { [native code] }",
+ IE = "exception")
public void svgGraphicsElement() throws Exception {
test("SVGGraphicsElement");
}
@@ -9464,9 +8531,7 @@ public void svgHKernElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGImageElement() { [native code] }",
- IE = "[object SVGImageElement]",
- FF = "function SVGImageElement() {\n [native code]\n}",
- FF_ESR = "function SVGImageElement() {\n [native code]\n}")
+ IE = "[object SVGImageElement]")
public void svgImageElement() throws Exception {
test("SVGImageElement");
}
@@ -9476,9 +8541,7 @@ public void svgImageElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGLength() { [native code] }",
- FF = "function SVGLength() {\n [native code]\n}",
- IE = "[object SVGLength]",
- FF_ESR = "function SVGLength() {\n [native code]\n}")
+ IE = "[object SVGLength]")
public void svgLength() throws Exception {
test("SVGLength");
}
@@ -9488,9 +8551,7 @@ public void svgLength() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGLengthList() { [native code] }",
- FF = "function SVGLengthList() {\n [native code]\n}",
- IE = "[object SVGLengthList]",
- FF_ESR = "function SVGLengthList() {\n [native code]\n}")
+ IE = "[object SVGLengthList]")
public void svgLengthList() throws Exception {
test("SVGLengthList");
}
@@ -9502,9 +8563,7 @@ public void svgLengthList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGLinearGradientElement() { [native code] }",
- IE = "[object SVGLinearGradientElement]",
- FF = "function SVGLinearGradientElement() {\n [native code]\n}",
- FF_ESR = "function SVGLinearGradientElement() {\n [native code]\n}")
+ IE = "[object SVGLinearGradientElement]")
public void svgLinearGradientElement() throws Exception {
test("SVGLinearGradientElement");
}
@@ -9516,9 +8575,7 @@ public void svgLinearGradientElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGLineElement() { [native code] }",
- IE = "[object SVGLineElement]",
- FF = "function SVGLineElement() {\n [native code]\n}",
- FF_ESR = "function SVGLineElement() {\n [native code]\n}")
+ IE = "[object SVGLineElement]")
public void svgLineElement() throws Exception {
test("SVGLineElement");
}
@@ -9530,9 +8587,7 @@ public void svgLineElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGMarkerElement() { [native code] }",
- IE = "[object SVGMarkerElement]",
- FF = "function SVGMarkerElement() {\n [native code]\n}",
- FF_ESR = "function SVGMarkerElement() {\n [native code]\n}")
+ IE = "[object SVGMarkerElement]")
public void svgMarkerElement() throws Exception {
test("SVGMarkerElement");
}
@@ -9544,9 +8599,7 @@ public void svgMarkerElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGMaskElement() { [native code] }",
- IE = "[object SVGMaskElement]",
- FF = "function SVGMaskElement() {\n [native code]\n}",
- FF_ESR = "function SVGMaskElement() {\n [native code]\n}")
+ IE = "[object SVGMaskElement]")
public void svgMaskElement() throws Exception {
test("SVGMaskElement");
}
@@ -9558,9 +8611,7 @@ public void svgMaskElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGMatrix() { [native code] }",
- IE = "[object SVGMatrix]",
- FF = "function SVGMatrix() {\n [native code]\n}",
- FF_ESR = "function SVGMatrix() {\n [native code]\n}")
+ IE = "[object SVGMatrix]")
public void svgMatrix() throws Exception {
test("SVGMatrix");
}
@@ -9572,9 +8623,7 @@ public void svgMatrix() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGMetadataElement() { [native code] }",
- IE = "[object SVGMetadataElement]",
- FF = "function SVGMetadataElement() {\n [native code]\n}",
- FF_ESR = "function SVGMetadataElement() {\n [native code]\n}")
+ IE = "[object SVGMetadataElement]")
public void svgMetadataElement() throws Exception {
test("SVGMetadataElement");
}
@@ -9594,11 +8643,8 @@ public void svgMissingGlyphElement() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SVGMPathElement() { [native code] }",
- EDGE = "function SVGMPathElement() { [native code] }",
- FF = "function SVGMPathElement() {\n [native code]\n}",
- FF_ESR = "function SVGMPathElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SVGMPathElement() { [native code] }",
+ IE = "exception")
public void svgMPathElement() throws Exception {
test("SVGMPathElement");
}
@@ -9608,9 +8654,7 @@ public void svgMPathElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGNumber() { [native code] }",
- IE = "[object SVGNumber]",
- FF = "function SVGNumber() {\n [native code]\n}",
- FF_ESR = "function SVGNumber() {\n [native code]\n}")
+ IE = "[object SVGNumber]")
public void svgNumber() throws Exception {
test("SVGNumber");
}
@@ -9620,9 +8664,7 @@ public void svgNumber() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGNumberList() { [native code] }",
- FF = "function SVGNumberList() {\n [native code]\n}",
- IE = "[object SVGNumberList]",
- FF_ESR = "function SVGNumberList() {\n [native code]\n}")
+ IE = "[object SVGNumberList]")
public void svgNumberList() throws Exception {
test("SVGNumberList");
}
@@ -9634,9 +8676,7 @@ public void svgNumberList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGPathElement() { [native code] }",
- IE = "[object SVGPathElement]",
- FF = "function SVGPathElement() {\n [native code]\n}",
- FF_ESR = "function SVGPathElement() {\n [native code]\n}")
+ IE = "[object SVGPathElement]")
public void svgPathElement() throws Exception {
test("SVGPathElement");
}
@@ -9858,9 +8898,7 @@ public void svgPathSegMovetoRel() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGPatternElement() { [native code] }",
- IE = "[object SVGPatternElement]",
- FF = "function SVGPatternElement() {\n [native code]\n}",
- FF_ESR = "function SVGPatternElement() {\n [native code]\n}")
+ IE = "[object SVGPatternElement]")
public void svgPatternElement() throws Exception {
test("SVGPatternElement");
}
@@ -9870,9 +8908,7 @@ public void svgPatternElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGPoint() { [native code] }",
- FF = "function SVGPoint() {\n [native code]\n}",
- IE = "[object SVGPoint]",
- FF_ESR = "function SVGPoint() {\n [native code]\n}")
+ IE = "[object SVGPoint]")
public void svgPoint() throws Exception {
test("SVGPoint");
}
@@ -9882,9 +8918,7 @@ public void svgPoint() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGPointList() { [native code] }",
- FF = "function SVGPointList() {\n [native code]\n}",
- IE = "[object SVGPointList]",
- FF_ESR = "function SVGPointList() {\n [native code]\n}")
+ IE = "[object SVGPointList]")
public void svgPointList() throws Exception {
test("SVGPointList");
}
@@ -9896,9 +8930,7 @@ public void svgPointList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGPolygonElement() { [native code] }",
- IE = "[object SVGPolygonElement]",
- FF = "function SVGPolygonElement() {\n [native code]\n}",
- FF_ESR = "function SVGPolygonElement() {\n [native code]\n}")
+ IE = "[object SVGPolygonElement]")
public void svgPolygonElement() throws Exception {
test("SVGPolygonElement");
}
@@ -9910,9 +8942,7 @@ public void svgPolygonElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGPolylineElement() { [native code] }",
- IE = "[object SVGPolylineElement]",
- FF = "function SVGPolylineElement() {\n [native code]\n}",
- FF_ESR = "function SVGPolylineElement() {\n [native code]\n}")
+ IE = "[object SVGPolylineElement]")
public void svgPolylineElement() throws Exception {
test("SVGPolylineElement");
}
@@ -9922,9 +8952,7 @@ public void svgPolylineElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGPreserveAspectRatio() { [native code] }",
- FF = "function SVGPreserveAspectRatio() {\n [native code]\n}",
- IE = "[object SVGPreserveAspectRatio]",
- FF_ESR = "function SVGPreserveAspectRatio() {\n [native code]\n}")
+ IE = "[object SVGPreserveAspectRatio]")
public void svgPreserveAspectRatio() throws Exception {
test("SVGPreserveAspectRatio");
}
@@ -9936,9 +8964,7 @@ public void svgPreserveAspectRatio() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGRadialGradientElement() { [native code] }",
- IE = "[object SVGRadialGradientElement]",
- FF = "function SVGRadialGradientElement() {\n [native code]\n}",
- FF_ESR = "function SVGRadialGradientElement() {\n [native code]\n}")
+ IE = "[object SVGRadialGradientElement]")
public void svgRadialGradientElement() throws Exception {
test("SVGRadialGradientElement");
}
@@ -9950,9 +8976,7 @@ public void svgRadialGradientElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGRect() { [native code] }",
- IE = "[object SVGRect]",
- FF = "function SVGRect() {\n [native code]\n}",
- FF_ESR = "function SVGRect() {\n [native code]\n}")
+ IE = "[object SVGRect]")
public void svgRect() throws Exception {
test("SVGRect");
}
@@ -9964,9 +8988,7 @@ public void svgRect() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGRectElement() { [native code] }",
- IE = "[object SVGRectElement]",
- FF = "function SVGRectElement() {\n [native code]\n}",
- FF_ESR = "function SVGRectElement() {\n [native code]\n}")
+ IE = "[object SVGRectElement]")
public void svgRectElement() throws Exception {
test("SVGRectElement");
}
@@ -9987,9 +9009,7 @@ public void svgRenderingIntent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGScriptElement() { [native code] }",
- IE = "[object SVGScriptElement]",
- FF = "function SVGScriptElement() {\n [native code]\n}",
- FF_ESR = "function SVGScriptElement() {\n [native code]\n}")
+ IE = "[object SVGScriptElement]")
public void svgScriptElement() throws Exception {
test("SVGScriptElement");
}
@@ -10000,11 +9020,8 @@ public void svgScriptElement() throws Exception {
* @throws Exception if an error occurs
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function SVGSetElement() { [native code] }",
- EDGE = "function SVGSetElement() { [native code] }",
- FF = "function SVGSetElement() {\n [native code]\n}",
- FF_ESR = "function SVGSetElement() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function SVGSetElement() { [native code] }",
+ IE = "exception")
public void svgSetElement() throws Exception {
test("SVGSetElement");
}
@@ -10016,9 +9033,7 @@ public void svgSetElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGStopElement() { [native code] }",
- IE = "[object SVGStopElement]",
- FF = "function SVGStopElement() {\n [native code]\n}",
- FF_ESR = "function SVGStopElement() {\n [native code]\n}")
+ IE = "[object SVGStopElement]")
public void svgStopElement() throws Exception {
test("SVGStopElement");
}
@@ -10028,9 +9043,7 @@ public void svgStopElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGStringList() { [native code] }",
- FF = "function SVGStringList() {\n [native code]\n}",
- IE = "[object SVGStringList]",
- FF_ESR = "function SVGStringList() {\n [native code]\n}")
+ IE = "[object SVGStringList]")
public void svgStringList() throws Exception {
test("SVGStringList");
}
@@ -10051,9 +9064,7 @@ public void svgStylable() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGStyleElement() { [native code] }",
- IE = "[object SVGStyleElement]",
- FF = "function SVGStyleElement() {\n [native code]\n}",
- FF_ESR = "function SVGStyleElement() {\n [native code]\n}")
+ IE = "[object SVGStyleElement]")
public void svgStyleElement() throws Exception {
test("SVGStyleElement");
}
@@ -10065,9 +9076,7 @@ public void svgStyleElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGSVGElement() { [native code] }",
- IE = "[object SVGSVGElement]",
- FF = "function SVGSVGElement() {\n [native code]\n}",
- FF_ESR = "function SVGSVGElement() {\n [native code]\n}")
+ IE = "[object SVGSVGElement]")
public void svgSVGElement() throws Exception {
test("SVGSVGElement");
}
@@ -10079,9 +9088,7 @@ public void svgSVGElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGSwitchElement() { [native code] }",
- IE = "[object SVGSwitchElement]",
- FF = "function SVGSwitchElement() {\n [native code]\n}",
- FF_ESR = "function SVGSwitchElement() {\n [native code]\n}")
+ IE = "[object SVGSwitchElement]")
public void svgSwitchElement() throws Exception {
test("SVGSwitchElement");
}
@@ -10093,9 +9100,7 @@ public void svgSwitchElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGSymbolElement() { [native code] }",
- IE = "[object SVGSymbolElement]",
- FF = "function SVGSymbolElement() {\n [native code]\n}",
- FF_ESR = "function SVGSymbolElement() {\n [native code]\n}")
+ IE = "[object SVGSymbolElement]")
public void svgSymbolElement() throws Exception {
test("SVGSymbolElement");
}
@@ -10114,9 +9119,7 @@ public void svgTests() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGTextContentElement() { [native code] }",
- FF = "function SVGTextContentElement() {\n [native code]\n}",
- IE = "[object SVGTextContentElement]",
- FF_ESR = "function SVGTextContentElement() {\n [native code]\n}")
+ IE = "[object SVGTextContentElement]")
public void svgTextContentElement() throws Exception {
test("SVGTextContentElement");
}
@@ -10128,9 +9131,7 @@ public void svgTextContentElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGTextElement() { [native code] }",
- IE = "[object SVGTextElement]",
- FF = "function SVGTextElement() {\n [native code]\n}",
- FF_ESR = "function SVGTextElement() {\n [native code]\n}")
+ IE = "[object SVGTextElement]")
public void svgTextElement() throws Exception {
test("SVGTextElement");
}
@@ -10142,9 +9143,7 @@ public void svgTextElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGTextPathElement() { [native code] }",
- IE = "[object SVGTextPathElement]",
- FF = "function SVGTextPathElement() {\n [native code]\n}",
- FF_ESR = "function SVGTextPathElement() {\n [native code]\n}")
+ IE = "[object SVGTextPathElement]")
public void svgTextPathElement() throws Exception {
test("SVGTextPathElement");
}
@@ -10154,9 +9153,7 @@ public void svgTextPathElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGTextPositioningElement() { [native code] }",
- FF = "function SVGTextPositioningElement() {\n [native code]\n}",
- IE = "[object SVGTextPositioningElement]",
- FF_ESR = "function SVGTextPositioningElement() {\n [native code]\n}")
+ IE = "[object SVGTextPositioningElement]")
public void svgTextPositioningElement() throws Exception {
test("SVGTextPositioningElement");
}
@@ -10168,9 +9165,7 @@ public void svgTextPositioningElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGTitleElement() { [native code] }",
- IE = "[object SVGTitleElement]",
- FF = "function SVGTitleElement() {\n [native code]\n}",
- FF_ESR = "function SVGTitleElement() {\n [native code]\n}")
+ IE = "[object SVGTitleElement]")
public void svgTitleElement() throws Exception {
test("SVGTitleElement");
}
@@ -10180,9 +9175,7 @@ public void svgTitleElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGTransform() { [native code] }",
- FF = "function SVGTransform() {\n [native code]\n}",
- IE = "[object SVGTransform]",
- FF_ESR = "function SVGTransform() {\n [native code]\n}")
+ IE = "[object SVGTransform]")
public void svgTransform() throws Exception {
test("SVGTransform");
}
@@ -10201,9 +9194,7 @@ public void svgTransformable() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGTransformList() { [native code] }",
- FF = "function SVGTransformList() {\n [native code]\n}",
- IE = "[object SVGTransformList]",
- FF_ESR = "function SVGTransformList() {\n [native code]\n}")
+ IE = "[object SVGTransformList]")
public void svgTransformList() throws Exception {
test("SVGTransformList");
}
@@ -10224,9 +9215,7 @@ public void svgTRefElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGTSpanElement() { [native code] }",
- IE = "[object SVGTSpanElement]",
- FF = "function SVGTSpanElement() {\n [native code]\n}",
- FF_ESR = "function SVGTSpanElement() {\n [native code]\n}")
+ IE = "[object SVGTSpanElement]")
public void svgTSpanElement() throws Exception {
test("SVGTSpanElement");
}
@@ -10236,9 +9225,7 @@ public void svgTSpanElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGUnitTypes() { [native code] }",
- FF = "function SVGUnitTypes() {\n [native code]\n}",
- IE = "[object SVGUnitTypes]",
- FF_ESR = "function SVGUnitTypes() {\n [native code]\n}")
+ IE = "[object SVGUnitTypes]")
public void svgUnitTypes() throws Exception {
test("SVGUnitTypes");
}
@@ -10250,9 +9237,7 @@ public void svgUnitTypes() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGUseElement() { [native code] }",
- IE = "[object SVGUseElement]",
- FF = "function SVGUseElement() {\n [native code]\n}",
- FF_ESR = "function SVGUseElement() {\n [native code]\n}")
+ IE = "[object SVGUseElement]")
public void svgUseElement() throws Exception {
test("SVGUseElement");
}
@@ -10264,9 +9249,7 @@ public void svgUseElement() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SVGViewElement() { [native code] }",
- IE = "[object SVGViewElement]",
- FF = "function SVGViewElement() {\n [native code]\n}",
- FF_ESR = "function SVGViewElement() {\n [native code]\n}")
+ IE = "[object SVGViewElement]")
public void svgViewElement() throws Exception {
test("SVGViewElement");
}
@@ -10304,9 +9287,7 @@ public void svgZoomEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Symbol() { [native code] }",
- IE = "exception",
- FF = "function Symbol() {\n [native code]\n}",
- FF_ESR = "function Symbol() {\n [native code]\n}")
+ IE = "exception")
public void symbol() throws Exception {
test("Symbol");
}
@@ -10345,9 +9326,7 @@ public void syncRegistration() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function SyntaxError() { [native code] }",
- FF = "function SyntaxError() {\n [native code]\n}",
- IE = "function SyntaxError() {\n [native code]\n}\n",
- FF_ESR = "function SyntaxError() {\n [native code]\n}")
+ IE = "function SyntaxError() {\n [native code]\n}\n")
public void syntaxError() throws Exception {
test("SyntaxError");
}
@@ -10404,9 +9383,7 @@ public void telephonyCallGroup() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Text() { [native code] }",
- IE = "[object Text]",
- FF = "function Text() {\n [native code]\n}",
- FF_ESR = "function Text() {\n [native code]\n}")
+ IE = "[object Text]")
public void text() throws Exception {
test("Text");
}
@@ -10415,11 +9392,8 @@ public void text() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function TextDecoder() { [native code] }",
- EDGE = "function TextDecoder() { [native code] }",
- FF = "function TextDecoder() {\n [native code]\n}",
- FF_ESR = "function TextDecoder() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function TextDecoder() { [native code] }",
+ IE = "exception")
public void textDecoder() throws Exception {
test("TextDecoder");
}
@@ -10428,11 +9402,8 @@ public void textDecoder() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function TextEncoder() { [native code] }",
- EDGE = "function TextEncoder() { [native code] }",
- FF = "function TextEncoder() {\n [native code]\n}",
- FF_ESR = "function TextEncoder() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function TextEncoder() { [native code] }",
+ IE = "exception")
public void textEncoder() throws Exception {
test("TextEncoder");
}
@@ -10454,9 +9425,7 @@ public void textEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TextMetrics() { [native code] }",
- FF = "function TextMetrics() {\n [native code]\n}",
- IE = "[object TextMetrics]",
- FF_ESR = "function TextMetrics() {\n [native code]\n}")
+ IE = "[object TextMetrics]")
public void textMetrics() throws Exception {
test("TextMetrics");
}
@@ -10478,9 +9447,7 @@ public void textRange() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TextTrack() { [native code] }",
- FF = "function TextTrack() {\n [native code]\n}",
- IE = "[object TextTrack]",
- FF_ESR = "function TextTrack() {\n [native code]\n}")
+ IE = "[object TextTrack]")
public void textTrack() throws Exception {
test("TextTrack");
}
@@ -10490,9 +9457,7 @@ public void textTrack() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TextTrackCue() { [native code] }",
- FF = "function TextTrackCue() {\n [native code]\n}",
- IE = "function TextTrackCue() {\n [native code]\n}\n",
- FF_ESR = "function TextTrackCue() {\n [native code]\n}")
+ IE = "function TextTrackCue() {\n [native code]\n}\n")
public void textTrackCue() throws Exception {
test("TextTrackCue");
}
@@ -10502,9 +9467,7 @@ public void textTrackCue() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TextTrackCueList() { [native code] }",
- FF = "function TextTrackCueList() {\n [native code]\n}",
- IE = "[object TextTrackCueList]",
- FF_ESR = "function TextTrackCueList() {\n [native code]\n}")
+ IE = "[object TextTrackCueList]")
public void textTrackCueList() throws Exception {
test("TextTrackCueList");
}
@@ -10514,9 +9477,7 @@ public void textTrackCueList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TextTrackList() { [native code] }",
- FF = "function TextTrackList() {\n [native code]\n}",
- IE = "[object TextTrackList]",
- FF_ESR = "function TextTrackList() {\n [native code]\n}")
+ IE = "[object TextTrackList]")
public void textTrackList() throws Exception {
test("TextTrackList");
}
@@ -10526,8 +9487,8 @@ public void textTrackList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "exception",
- FF = "function TimeEvent() {\n [native code]\n}",
- FF_ESR = "function TimeEvent() {\n [native code]\n}")
+ FF = "function TimeEvent() { [native code] }",
+ FF_ESR = "function TimeEvent() { [native code] }")
public void timeEvent() throws Exception {
test("TimeEvent");
}
@@ -10537,9 +9498,7 @@ public void timeEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TimeRanges() { [native code] }",
- FF = "function TimeRanges() {\n [native code]\n}",
- IE = "[object TimeRanges]",
- FF_ESR = "function TimeRanges() {\n [native code]\n}")
+ IE = "[object TimeRanges]")
public void timeRanges() throws Exception {
test("TimeRanges");
}
@@ -10600,9 +9559,7 @@ public void trackDefaultList() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TrackEvent() { [native code] }",
- FF = "function TrackEvent() {\n [native code]\n}",
- IE = "[object TrackEvent]",
- FF_ESR = "function TrackEvent() {\n [native code]\n}")
+ IE = "[object TrackEvent]")
public void trackEvent() throws Exception {
test("TrackEvent");
}
@@ -10621,9 +9578,7 @@ public void transferable() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TransitionEvent() { [native code] }",
- FF = "function TransitionEvent() {\n [native code]\n}",
- IE = "[object TransitionEvent]",
- FF_ESR = "function TransitionEvent() {\n [native code]\n}")
+ IE = "[object TransitionEvent]")
public void transitionEvent() throws Exception {
test("TransitionEvent");
}
@@ -10635,9 +9590,7 @@ public void transitionEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TreeWalker() { [native code] }",
- IE = "[object TreeWalker]",
- FF = "function TreeWalker() {\n [native code]\n}",
- FF_ESR = "function TreeWalker() {\n [native code]\n}")
+ IE = "[object TreeWalker]")
public void treeWalker() throws Exception {
test("TreeWalker");
}
@@ -10656,9 +9609,7 @@ public void typedArray() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function TypeError() { [native code] }",
- FF = "function TypeError() {\n [native code]\n}",
- IE = "function TypeError() {\n [native code]\n}\n",
- FF_ESR = "function TypeError() {\n [native code]\n}")
+ IE = "function TypeError() {\n [native code]\n}\n")
public void typeError() throws Exception {
test("TypeError");
}
@@ -10688,9 +9639,7 @@ public void uDPSocket() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function UIEvent() { [native code] }",
- IE = "[object UIEvent]",
- FF = "function UIEvent() {\n [native code]\n}",
- FF_ESR = "function UIEvent() {\n [native code]\n}")
+ IE = "[object UIEvent]")
public void uiEvent() throws Exception {
test("UIEvent");
}
@@ -10702,9 +9651,7 @@ public void uiEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Uint16Array() { [native code] }",
- FF = "function Uint16Array() {\n [native code]\n}",
- IE = "function Uint16Array() {\n [native code]\n}\n",
- FF_ESR = "function Uint16Array() {\n [native code]\n}")
+ IE = "function Uint16Array() {\n [native code]\n}\n")
public void uint16Array() throws Exception {
test("Uint16Array");
}
@@ -10716,9 +9663,7 @@ public void uint16Array() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Uint32Array() { [native code] }",
- FF = "function Uint32Array() {\n [native code]\n}",
- IE = "function Uint32Array() {\n [native code]\n}\n",
- FF_ESR = "function Uint32Array() {\n [native code]\n}")
+ IE = "function Uint32Array() {\n [native code]\n}\n")
public void uint32Array() throws Exception {
test("Uint32Array");
}
@@ -10730,9 +9675,7 @@ public void uint32Array() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Uint8Array() { [native code] }",
- FF = "function Uint8Array() {\n [native code]\n}",
- IE = "function Uint8Array() {\n [native code]\n}\n",
- FF_ESR = "function Uint8Array() {\n [native code]\n}")
+ IE = "function Uint8Array() {\n [native code]\n}\n")
public void uint8Array() throws Exception {
test("Uint8Array");
}
@@ -10744,9 +9687,7 @@ public void uint8Array() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Uint8ClampedArray() { [native code] }",
- FF = "function Uint8ClampedArray() {\n [native code]\n}",
- IE = "function Uint8ClampedArray() {\n [native code]\n}\n",
- FF_ESR = "function Uint8ClampedArray() {\n [native code]\n}")
+ IE = "function Uint8ClampedArray() {\n [native code]\n}\n")
public void uint8ClampedArray() throws Exception {
test("Uint8ClampedArray");
}
@@ -10765,9 +9706,7 @@ public void undefined() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function unescape() { [native code] }",
- FF = "function unescape() {\n [native code]\n}",
- IE = "function unescape() {\n [native code]\n}\n",
- FF_ESR = "function unescape() {\n [native code]\n}")
+ IE = "function unescape() {\n [native code]\n}\n")
public void unescape() throws Exception {
test("unescape");
}
@@ -10786,9 +9725,7 @@ public void uneval() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function URIError() { [native code] }",
- FF = "function URIError() {\n [native code]\n}",
- IE = "function URIError() {\n [native code]\n}\n",
- FF_ESR = "function URIError() {\n [native code]\n}")
+ IE = "function URIError() {\n [native code]\n}\n")
public void uriError() throws Exception {
test("URIError");
}
@@ -10798,9 +9735,7 @@ public void uriError() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function URL() { [native code] }",
- FF = "function URL() {\n [native code]\n}",
- IE = "[object URL]",
- FF_ESR = "function URL() {\n [native code]\n}")
+ IE = "[object URL]")
public void url() throws Exception {
test("URL");
}
@@ -10812,9 +9747,7 @@ public void url() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function URLSearchParams() { [native code] }",
- FF = "function URLSearchParams() {\n [native code]\n}",
- IE = "exception",
- FF_ESR = "function URLSearchParams() {\n [native code]\n}")
+ IE = "exception")
public void urlSearchParams() throws Exception {
test("URLSearchParams");
}
@@ -10869,9 +9802,7 @@ public void uSVString() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function ValidityState() { [native code] }",
- FF = "function ValidityState() {\n [native code]\n}",
- IE = "[object ValidityState]",
- FF_ESR = "function ValidityState() {\n [native code]\n}")
+ IE = "[object ValidityState]")
public void validityState() throws Exception {
test("ValidityState");
}
@@ -10880,10 +9811,7 @@ public void validityState() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(CHROME = "function VideoPlaybackQuality() { [native code] }",
- EDGE = "function VideoPlaybackQuality() { [native code] }",
- FF = "function VideoPlaybackQuality() {\n [native code]\n}",
- FF_ESR = "function VideoPlaybackQuality() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function VideoPlaybackQuality() { [native code] }",
IE = "[object VideoPlaybackQuality]")
public void videoPlaybackQuality() throws Exception {
test("VideoPlaybackQuality");
@@ -10983,11 +9911,8 @@ public void vrStageParameters() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function VTTCue() { [native code] }",
- EDGE = "function VTTCue() { [native code] }",
- FF = "function VTTCue() {\n [native code]\n}",
- FF_ESR = "function VTTCue() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function VTTCue() { [native code] }",
+ IE = "exception")
public void vTTCue() throws Exception {
test("VTTCue");
}
@@ -10997,9 +9922,7 @@ public void vTTCue() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WaveShaperNode() { [native code] }",
- IE = "exception",
- FF = "function WaveShaperNode() {\n [native code]\n}",
- FF_ESR = "function WaveShaperNode() {\n [native code]\n}")
+ IE = "exception")
public void waveShaperNode() throws Exception {
test("WaveShaperNode");
}
@@ -11009,9 +9932,7 @@ public void waveShaperNode() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WeakMap() { [native code] }",
- FF = "function WeakMap() {\n [native code]\n}",
- IE = "function WeakMap() {\n [native code]\n}\n",
- FF_ESR = "function WeakMap() {\n [native code]\n}")
+ IE = "function WeakMap() {\n [native code]\n}\n")
public void weakMap() throws Exception {
test("WeakMap");
}
@@ -11021,9 +9942,7 @@ public void weakMap() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WeakSet() { [native code] }",
- IE = "exception",
- FF = "function WeakSet() {\n [native code]\n}",
- FF_ESR = "function WeakSet() {\n [native code]\n}")
+ IE = "exception")
public void weakSet() throws Exception {
test("WeakSet");
}
@@ -11151,11 +10070,8 @@ public void webGL_lose_context() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function WebGL2RenderingContext() { [native code] }",
- EDGE = "function WebGL2RenderingContext() { [native code] }",
- FF = "function WebGL2RenderingContext() {\n [native code]\n}",
- FF_ESR = "function WebGL2RenderingContext() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function WebGL2RenderingContext() { [native code] }",
+ IE = "exception")
public void webGL2RenderingContext() throws Exception {
test("WebGL2RenderingContext");
}
@@ -11165,9 +10081,7 @@ public void webGL2RenderingContext() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLActiveInfo() { [native code] }",
- FF = "function WebGLActiveInfo() {\n [native code]\n}",
- IE = "[object WebGLActiveInfo]",
- FF_ESR = "function WebGLActiveInfo() {\n [native code]\n}")
+ IE = "[object WebGLActiveInfo]")
public void webGLActiveInfo() throws Exception {
test("WebGLActiveInfo");
}
@@ -11177,9 +10091,7 @@ public void webGLActiveInfo() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLBuffer() { [native code] }",
- FF = "function WebGLBuffer() {\n [native code]\n}",
- IE = "[object WebGLBuffer]",
- FF_ESR = "function WebGLBuffer() {\n [native code]\n}")
+ IE = "[object WebGLBuffer]")
public void webGLBuffer() throws Exception {
test("WebGLBuffer");
}
@@ -11189,9 +10101,7 @@ public void webGLBuffer() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLContextEvent() { [native code] }",
- IE = "function WebGLContextEvent() {\n [native code]\n}\n",
- FF = "function WebGLContextEvent() {\n [native code]\n}",
- FF_ESR = "function WebGLContextEvent() {\n [native code]\n}")
+ IE = "function WebGLContextEvent() {\n [native code]\n}\n")
public void webGLContextEvent() throws Exception {
test("WebGLContextEvent");
}
@@ -11201,9 +10111,7 @@ public void webGLContextEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLFramebuffer() { [native code] }",
- FF = "function WebGLFramebuffer() {\n [native code]\n}",
- IE = "[object WebGLFramebuffer]",
- FF_ESR = "function WebGLFramebuffer() {\n [native code]\n}")
+ IE = "[object WebGLFramebuffer]")
public void webGLFramebuffer() throws Exception {
test("WebGLFramebuffer");
}
@@ -11213,9 +10121,7 @@ public void webGLFramebuffer() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLProgram() { [native code] }",
- FF = "function WebGLProgram() {\n [native code]\n}",
- IE = "[object WebGLProgram]",
- FF_ESR = "function WebGLProgram() {\n [native code]\n}")
+ IE = "[object WebGLProgram]")
public void webGLProgram() throws Exception {
test("WebGLProgram");
}
@@ -11224,11 +10130,8 @@ public void webGLProgram() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function WebGLQuery() { [native code] }",
- EDGE = "function WebGLQuery() { [native code] }",
- FF = "function WebGLQuery() {\n [native code]\n}",
- FF_ESR = "function WebGLQuery() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function WebGLQuery() { [native code] }",
+ IE = "exception")
public void webGLQuery() throws Exception {
test("WebGLQuery");
}
@@ -11238,9 +10141,7 @@ public void webGLQuery() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLRenderbuffer() { [native code] }",
- FF = "function WebGLRenderbuffer() {\n [native code]\n}",
- IE = "[object WebGLRenderbuffer]",
- FF_ESR = "function WebGLRenderbuffer() {\n [native code]\n}")
+ IE = "[object WebGLRenderbuffer]")
public void webGLRenderbuffer() throws Exception {
test("WebGLRenderbuffer");
}
@@ -11252,9 +10153,7 @@ public void webGLRenderbuffer() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLRenderingContext() { [native code] }",
- FF = "function WebGLRenderingContext() {\n [native code]\n}",
- IE = "[object WebGLRenderingContext]",
- FF_ESR = "function WebGLRenderingContext() {\n [native code]\n}")
+ IE = "[object WebGLRenderingContext]")
public void webGLRenderingContext() throws Exception {
test("WebGLRenderingContext");
}
@@ -11263,11 +10162,8 @@ public void webGLRenderingContext() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function WebGLSampler() { [native code] }",
- EDGE = "function WebGLSampler() { [native code] }",
- FF = "function WebGLSampler() {\n [native code]\n}",
- FF_ESR = "function WebGLSampler() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function WebGLSampler() { [native code] }",
+ IE = "exception")
public void webGLSampler() throws Exception {
test("WebGLSampler");
}
@@ -11277,9 +10173,7 @@ public void webGLSampler() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLShader() { [native code] }",
- FF = "function WebGLShader() {\n [native code]\n}",
- IE = "[object WebGLShader]",
- FF_ESR = "function WebGLShader() {\n [native code]\n}")
+ IE = "[object WebGLShader]")
public void webGLShader() throws Exception {
test("WebGLShader");
}
@@ -11289,9 +10183,7 @@ public void webGLShader() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLShaderPrecisionFormat() { [native code] }",
- FF = "function WebGLShaderPrecisionFormat() {\n [native code]\n}",
- IE = "[object WebGLShaderPrecisionFormat]",
- FF_ESR = "function WebGLShaderPrecisionFormat() {\n [native code]\n}")
+ IE = "[object WebGLShaderPrecisionFormat]")
public void webGLShaderPrecisionFormat() throws Exception {
test("WebGLShaderPrecisionFormat");
}
@@ -11300,11 +10192,8 @@ public void webGLShaderPrecisionFormat() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function WebGLSync() { [native code] }",
- EDGE = "function WebGLSync() { [native code] }",
- FF = "function WebGLSync() {\n [native code]\n}",
- FF_ESR = "function WebGLSync() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function WebGLSync() { [native code] }",
+ IE = "exception")
public void webGLSync() throws Exception {
test("WebGLSync");
}
@@ -11314,9 +10203,7 @@ public void webGLSync() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLTexture() { [native code] }",
- FF = "function WebGLTexture() {\n [native code]\n}",
- IE = "[object WebGLTexture]",
- FF_ESR = "function WebGLTexture() {\n [native code]\n}")
+ IE = "[object WebGLTexture]")
public void webGLTexture() throws Exception {
test("WebGLTexture");
}
@@ -11334,11 +10221,8 @@ public void webGLTimerQueryEXT() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function WebGLTransformFeedback() { [native code] }",
- EDGE = "function WebGLTransformFeedback() { [native code] }",
- FF = "function WebGLTransformFeedback() {\n [native code]\n}",
- FF_ESR = "function WebGLTransformFeedback() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function WebGLTransformFeedback() { [native code] }",
+ IE = "exception")
public void webGLTransformFeedback() throws Exception {
test("WebGLTransformFeedback");
}
@@ -11348,9 +10232,7 @@ public void webGLTransformFeedback() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebGLUniformLocation() { [native code] }",
- FF = "function WebGLUniformLocation() {\n [native code]\n}",
- IE = "[object WebGLUniformLocation]",
- FF_ESR = "function WebGLUniformLocation() {\n [native code]\n}")
+ IE = "[object WebGLUniformLocation]")
public void webGLUniformLocation() throws Exception {
test("WebGLUniformLocation");
}
@@ -11359,11 +10241,8 @@ public void webGLUniformLocation() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function WebGLVertexArrayObject() { [native code] }",
- EDGE = "function WebGLVertexArrayObject() { [native code] }",
- FF = "function WebGLVertexArrayObject() {\n [native code]\n}",
- FF_ESR = "function WebGLVertexArrayObject() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function WebGLVertexArrayObject() { [native code] }",
+ IE = "exception")
public void webGLVertexArrayObject() throws Exception {
test("WebGLVertexArrayObject");
}
@@ -11399,11 +10278,8 @@ public void webkitAudioContext() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function DOMMatrix() { [native code] }",
- EDGE = "function DOMMatrix() { [native code] }",
- FF = "function DOMMatrix() {\n [native code]\n}",
- FF_ESR = "function DOMMatrix() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function DOMMatrix() { [native code] }",
+ IE = "exception")
@HtmlUnitNYI(CHROME = "function WebKitCSSMatrix() { [native code] }",
EDGE = "function WebKitCSSMatrix() { [native code] }",
FF = "function WebKitCSSMatrix() {\n [native code]\n}",
@@ -11603,11 +10479,8 @@ public void webKitTransitionEvent() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(DEFAULT = "exception",
- CHROME = "function URL() { [native code] }",
- EDGE = "function URL() { [native code] }",
- FF = "function URL() {\n [native code]\n}",
- FF_ESR = "function URL() {\n [native code]\n}")
+ @Alerts(DEFAULT = "function URL() { [native code] }",
+ IE = "exception")
public void webkitURL() throws Exception {
test("webkitURL");
}
@@ -11628,9 +10501,7 @@ public void webSMS() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WebSocket() { [native code] }",
- FF = "function WebSocket() {\n [native code]\n}",
- IE = "function WebSocket() {\n [native code]\n}\n",
- FF_ESR = "function WebSocket() {\n [native code]\n}")
+ IE = "function WebSocket() {\n [native code]\n}\n")
public void webSocket() throws Exception {
test("WebSocket");
}
@@ -11658,9 +10529,7 @@ public void webVTT() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function WheelEvent() { [native code] }",
- FF = "function WheelEvent() {\n [native code]\n}",
- IE = "[object WheelEvent]",
- FF_ESR = "function WheelEvent() {\n [native code]\n}")
+ IE = "[object WheelEvent]")
public void wheelEvent() throws Exception {
test("WheelEvent");
}
@@ -11681,9 +10550,7 @@ public void wifiManager() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Window() { [native code] }",
- IE = "[object Window]",
- FF = "function Window() {\n [native code]\n}",
- FF_ESR = "function Window() {\n [native code]\n}")
+ IE = "[object Window]")
public void window() throws Exception {
test("Window");
}
@@ -11758,9 +10625,7 @@ public void windowTimers() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function Worker() { [native code] }",
- FF = "function Worker() {\n [native code]\n}",
- IE = "function Worker() {\n [native code]\n}\n",
- FF_ESR = "function Worker() {\n [native code]\n}")
+ IE = "function Worker() {\n [native code]\n}\n")
public void worker() throws Exception {
test("Worker");
}
@@ -11808,9 +10673,7 @@ public void xDomainRequest() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function XMLDocument() { [native code] }",
- IE = "[object XMLDocument]",
- FF = "function XMLDocument() {\n [native code]\n}",
- FF_ESR = "function XMLDocument() {\n [native code]\n}")
+ IE = "[object XMLDocument]")
public void xmlDocument() throws Exception {
test("XMLDocument");
}
@@ -11822,9 +10685,7 @@ public void xmlDocument() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function XMLHttpRequest() { [native code] }",
- FF = "function XMLHttpRequest() {\n [native code]\n}",
- IE = "function XMLHttpRequest() {\n [native code]\n}\n",
- FF_ESR = "function XMLHttpRequest() {\n [native code]\n}")
+ IE = "function XMLHttpRequest() {\n [native code]\n}\n")
public void xmlHttpRequest() throws Exception {
test("XMLHttpRequest");
}
@@ -11833,10 +10694,7 @@ public void xmlHttpRequest() throws Exception {
* @throws Exception if the test fails
*/
@Test
- @Alerts(CHROME = "function XMLHttpRequestEventTarget() { [native code] }",
- EDGE = "function XMLHttpRequestEventTarget() { [native code] }",
- FF = "function XMLHttpRequestEventTarget() {\n [native code]\n}",
- FF_ESR = "function XMLHttpRequestEventTarget() {\n [native code]\n}",
+ @Alerts(DEFAULT = "function XMLHttpRequestEventTarget() { [native code] }",
IE = "[object XMLHttpRequestEventTarget]")
public void xmlHttpRequestEventTarget() throws Exception {
test("XMLHttpRequestEventTarget");
@@ -11856,9 +10714,7 @@ public void xmlHttpRequestProgressEvent() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function XMLHttpRequestUpload() { [native code] }",
- IE = "exception",
- FF = "function XMLHttpRequestUpload() {\n [native code]\n}",
- FF_ESR = "function XMLHttpRequestUpload() {\n [native code]\n}")
+ IE = "exception")
public void xmlHttpRequestUpload() throws Exception {
test("XMLHttpRequestUpload");
}
@@ -11870,9 +10726,7 @@ public void xmlHttpRequestUpload() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function XMLSerializer() { [native code] }",
- FF = "function XMLSerializer() {\n [native code]\n}",
- IE = "function XMLSerializer() {\n [native code]\n}\n",
- FF_ESR = "function XMLSerializer() {\n [native code]\n}")
+ IE = "function XMLSerializer() {\n [native code]\n}\n")
public void xmlSerializer() throws Exception {
test("XMLSerializer");
}
@@ -11884,9 +10738,7 @@ public void xmlSerializer() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function XPathEvaluator() { [native code] }",
- IE = "exception",
- FF = "function XPathEvaluator() {\n [native code]\n}",
- FF_ESR = "function XPathEvaluator() {\n [native code]\n}")
+ IE = "exception")
public void xPathEvaluator() throws Exception {
test("XPathEvaluator");
}
@@ -11896,9 +10748,7 @@ public void xPathEvaluator() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function XPathExpression() { [native code] }",
- IE = "exception",
- FF = "function XPathExpression() {\n [native code]\n}",
- FF_ESR = "function XPathExpression() {\n [native code]\n}")
+ IE = "exception")
public void xPathExpression() throws Exception {
test("XPathExpression");
}
@@ -11921,9 +10771,7 @@ public void xPathNSResolver() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function XPathResult() { [native code] }",
- FF = "function XPathResult() {\n [native code]\n}",
- IE = "exception",
- FF_ESR = "function XPathResult() {\n [native code]\n}")
+ IE = "exception")
public void xPathResult() throws Exception {
test("XPathResult");
}
@@ -11944,9 +10792,7 @@ public void xsltemplate() throws Exception {
*/
@Test
@Alerts(DEFAULT = "function XSLTProcessor() { [native code] }",
- FF = "function XSLTProcessor() {\n [native code]\n}",
- IE = "exception",
- FF_ESR = "function XSLTProcessor() {\n [native code]\n}")
+ IE = "exception")
public void xsltProcessor() throws Exception {
test("XSLTProcessor");
}
diff --git a/src/test/java/org/htmlunit/javascript/host/canvas/CanvasRenderingContext2DTest.java b/src/test/java/org/htmlunit/javascript/host/canvas/CanvasRenderingContext2DTest.java
index 4e4f4819ea7..8d2f660f894 100644
--- a/src/test/java/org/htmlunit/javascript/host/canvas/CanvasRenderingContext2DTest.java
+++ b/src/test/java/org/htmlunit/javascript/host/canvas/CanvasRenderingContext2DTest.java
@@ -829,10 +829,10 @@ public void drawImageDataUrlPng() throws Exception {
+ "STHQUYWBYf1tBgZ+bJpUGRg+3mFgCCTW+yAXVpQwMDSjuw5mOMiVPQwMtQwMDB3EuJImBlLdy1SPFFDQUDfZIAU21RI2MRFI"
+ "lBpYTiFKMTGKRg0kJpTwqxkNQ8rDEABatjIVyjXhJwAAAABJRU5ErkJggg==",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA10lEQVQ4T2NkQAXmQK4RVOgckD6JJk+QywhVwSnEwLD4CwND"
- + "QDgDw0+Q2EoGBnYeBob17xgY4oDc7wRNgioAGwg0bLUSA0PQaQYGJmSNpgwM/+5BDA0hxUBzNgaGo0BnMWPTxM7A8PcXA4M1"
- + "sd4HuTAzloGhZxEDAxc2A4H+/baYgYGbFBcSY2AJ0MDpxBgKciHVvQyKlDXASAnEESnrgJESSozrQGqQk80iYLIJREs2G4CG"
- + "AYOYxGSDZDvVEjaxPiKoDuZlggqJVTBqILEhhVvdaBhSHoYAlLcxFYNJm/0AAAAASUVORK5CYII=",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA4klEQVQ4T+2STQ4BQRCFPyT+V27AESQyC5cwQqzY2zuGvT0b"
+ + "QnAJCyGO4AhiIRgJUU1P4mdkesJSbzpV/frlvaoX4vlYUuZ1ayX3/OXdtwxpRCIDvR2UauCoZh9iSZhuoS7lwZdJA26EQjbM"
+ + "QXkB4cePBbisYbKBShBCKwozByJen2JwPkHR1L5S2BRP7S6Iw/fTgH0PUkEUmhC2hLBjQqoU/tyyWsooC/bSeyljWUrVRJ3C"
+ + "uLGJ69jYKjbqYSCxSd83rGJzDEro4n8WbFMBvjjXsi/QFPAnNJ3UZ9x/ht/P8AqUpzEVnisiKgAAAABJRU5ErkJggg==",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA6ElEQVQ4T+2SzQoBURiGH5F/NyIrKQv3YOOnJpStnetwA1aU"
+ "klixcgcWJLdgx05ZYTLlO2OmmGiOWDqb03e+9zy930+A55OXMOs8beReevK+YcBRxGLQu0KlBMcQhCcQT8HsAA3RnHxJjsAG"
@@ -1432,9 +1432,9 @@ public void transformTranslateClearRect() throws Exception {
+ "U0rsgBmozMDA0MLAwODGwMBwF2owyPBDpBqO7EKYXjuowSDDQRaBDIZhgq7HZiCyo6SRDHdnYGC4Q8j1hAxE9zHM9SDDlaCG"
+ "10CDCayWVAOxuX4+siAlBmKNr8FvIAB+fhILDX78/QAAAABJRU5ErkJggg==",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAKCAYAAAC0VX7mAAAAe0lEQVQoU2NkoDJgRDLPCsh+CMRPKbED2cAVQINcgfgeEO8E"
- + "4l1AfIhUw5ENhOm1hxrsBqSVoQaDDN8NxE8IWYDNQGQ9MkiGgyy4C7UAZPhBbIYTMhBdjx1QAGSwOxArQV0dgayIVAOR9UoD"
- + "OXJAfJxaBmINTkpcSB8DAS8zEQuBFGGjAAAAAElFTkSuQmCC",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAKCAYAAAC0VX7mAAAAcElEQVQoU2NkoDJgRDLPF8g+B8RPKbEDZqAI0JDJQOwKxPeA"
+ + "eBcUHyLVcGQXwvTaARluUKyMZDjIEoKux2YgsqOkkQwHWXKXkOsJGYjuY2TXKwEldwNxLhC/gSkk1UB01xsBBTYjC1JiINb4"
+ + "GvwGAgB9VhILFc2B9QAAAABJRU5ErkJggg==",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAKCAYAAAC0VX7mAAAAe0lEQVQoU2NkoDJgRDLPCsh+CMRPKbED2cAVQINcgfgeEO8E"
+ "4l1AfIhUw5ENhOm1hxrsBqSVoQaDDN8NxE8IWYDNQGQ9MkiGgyy4C7UAZPhBbIYTMhBdjx1QAGSwOxArQV0dgayIVAOR9UoD"
@@ -1666,10 +1666,10 @@ public void moveToLineToRotateStroke() throws Exception {
+ "eFuChqDnR2o8FLzLgZtAz48FPwGb4ZgCx0DPTzXFWY1PMTgF9PxMjQ+Cr01wDmj5rtB58CPqEM4FPTsQbLta4/eVgh9nbMGU"
+ "rxt/0274hxu+AE0JGRUWB25NAAAAAElFTkSuQmCC",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAo0lEQVQ4T2NkoDJgBJo3FYiZgbgNiB9Raj7IQB4grgLiCqih"
- + "rUD6O7kGgwyEAUWowX5QgyeSYyiygTD9ZlCDVaAGLyPFYGwGwvR7QQ3+AzV4FzEG4zMQpj8eavAlqMHn8RlMjIEw/cVARjUQ"
- + "rwRiUMQ9wWYwKQaC9PNBXVsCdW0duqGkGgjTrwR17WIgfQDZUHINxBmMowYSk3TxqxkNw0EYhgB8LRYV8M9b/wAAAABJRU5E"
- + "rkJggg==",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAqklEQVQ4T2NkYGAQB+KXQEwVwAg0ZR4Q/wLiNiB+RKmpIAO5"
+ + "gbgaiCuAuBVq8HdyDQYZCAMKQEYVEPtDDZ1IjqHIBsL0m0INVoUavIwUg7EZCNPvCQ2KP9Cg2E2MwfgMhOmPg7r4MtTF5/EZ"
+ + "TIyBMP3FUINXQg1+gs1gUgwE6eeDGloCNbQJSIOCBA5INRCmUQlq8HogvZUaBuIMRnJdOGog5bE8GoY0DEMATKUZFZcLTogA"
+ + "AAAASUVORK5CYII=",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAo0lEQVQ4T2NkoDJgBJo3FYiZgbgNiB9Raj7IQB4grgLiCqih"
+ "rUD6O7kGgwyEAUWowX5QgyeSYyiygTD9ZlCDVaAGLyPFYGwGwvR7QQ3+AzV4FzEG4zMQpj8eavAlqMHn8RlMjIEw/cVARjUQ"
@@ -1775,10 +1775,10 @@ public void ellipseFill() throws Exception {
+ "ixjAD/zhrSos1YV+2MMEL3VgZcAZHjCPBXxHF6MAcI0Dlvn3kOUBxngOAPdY4bMqMNXtcMZrrmiLJvpFzcrGpo0NGjhmxU/4"
+ "xRBfdYFXfWr/Mbt8F9m8Bd+XQ90x/q+PnuEFEm4WFfcJX5MAAAAASUVORK5CYII=",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAtElEQVQ4T2NkoDJgpLJ5DKMGUh6ihMKwB2jFMyDuI9YqfAau"
- + "AhrCBsTRQPyVUgMlgAbcAmI+Yg2CqcPlwkSgAg8gDqeWgZlAg4yBOAWHgbOB4ueAeDq6PC4XmgMV7gdiLhwGfgOKOwLxSWIN"
- + "BKlbAMRaQGyGpukUkH8NiBOwWYYvljmhXgoD0kuBGKQ2CohBsQ8Kku+kGghTD/K+EZQDCjcMbyIbTChh4whC3MKjBpIcZBga"
- + "AFvHFRVbN/HSAAAAAElFTkSuQmCC",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAt0lEQVQ4T2NkoDJgpLJ5DKMGUh6i+MKQE2j8TCDeD8TzibUK"
+ + "n4GLgYaoA7EZsYaB1OEy0AQotxCItUkxDJ+BZUBJGSDOo5aBGUCDDIE4HYeBoLC9BMRT0eVxedkGqHARECvhMPAqUBxk6WFi"
+ + "DQSp2wDEL6AakfVNAXKEgDgKm2WEst5aqNe3A2lTIBYE4pNAnAjEv8kxEKQHlGxAsc4DxLuB+DyOYAALE3IhPr1Y5UYNJDnI"
+ + "MDQAAHzHFBVJ6doGAAAAAElFTkSuQmCC",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAtElEQVQ4T2NkoDJgpLJ5DKMGUh6ihMKwB2jFMyDuI9YqfAau"
+ "AhrCBsTRQPyVUgMlgAbcAmI+Yg2CqcPlwkSgAg8gDqeWgZlAg4yBOAWHgbOB4ueAeDq6PC4XmgMV7gdiLhwGfgOKOwLxSWIN"
@@ -1804,10 +1804,10 @@ public void arcStroke() throws Exception {
+ "durbDesKzicuz9FDE6cU0sUDE1xLgBPgGQeMMsINWhiUBV7QyRHtsCxxfrLhHv0c4ApHLApu+R1g7SfXbkqIzRANhPyFCnl8"
+ "Yot7wf8lY29/HTIV8DWSeQAAAABJRU5ErkJggg==",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAs0lEQVQ4T2NkYGDYD8QHgZgawJ4RaEoDFFPDwIZRAykOxtEw"
- + "pDgIGWgbhuZABxpBHXkOSJ8kw8FgF7YAsQwQhwHxMiD+D8TRQLwKiDOB+DsJBoMNPA/Ev4HYDE3jKSD/GhAnkGogyDBWHJq+"
- + "AcUdSfA+2IVngdgYh4FzgOIppLoQFAGwyEDXOxsoAJKfTqShYBdS3ctUjxRQ8c8HxDpAfAmIQa7WBeIrQLwViP8Q6V2QMnsA"
- + "0W80k6fnBs0AAAAASUVORK5CYII=",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAsUlEQVQ4T2NkYGDYD8QHgZgawJ4RaEoDFFPDwIZRAykOxtEw"
+ + "pDgIGWgbhuZABxpBHXkOSJ8kw8FgF7YAsQwQhwHxUqgh0UB6FRBnAvF3EgwGG3geiH8DsRmaxlNA/jUgTiDVQJBhrDg0fQOK"
+ + "O5LgfbALzwKxMQ4D5wDFU0h1ISgCYJGBrnc2UAAkP51IQ8EupLqXqR4poOKfD4h1gPgSEINcrQvEV4B4CxD/JdK7IGX2AF1J"
+ + "M5M1IFdKAAAAAElFTkSuQmCC",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAs0lEQVQ4T2NkYGDYD8QHgZgawJ4RaEoDFFPDwIZRAykOxtEw"
+ "pDgIGWgbhuZABxpBHXkOSJ8kw8FgF7YAsQwQhwHxMiD+D8TRQLwKiDOB+DsJBoMNPA/Ev4HYDE3jKSD/GhAnkGogyDBWHJq+"
@@ -1832,9 +1832,9 @@ public void arcCircleStroke() throws Exception {
+ "FUNkCVo2ilBGSKZgBtaAAVIit5aDrOAihd376fwtXVD5hMqeBmaLXtHhgA+mX91LGt5xwhkXLLjhnYNLwPTejCP6WmB0nnjk"
+ "nr9lwgiOeGFIp9wKrv5LA/9fFa3hDht+AZ2HChWoIysFAAAAAElFTkSuQmCC",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAbUlEQVQ4T2NkoDJgpLJ5DKMGYg1RWaCoNxCDguccEJ/EF+7E"
- + "hGEx0AAtIP4HxNFAvAqIM4H4OzaDiTEQXd8poMA1IE6gloEgc74BsSM275PjQpCBc4D4LBBPR3cluQbijJdRAykvKkbDcBCG"
- + "IQDFswwV4F8onAAAAABJRU5ErkJggg==",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAcElEQVQ4T2NkoDJgpLJ5DKMGYg1RSaCoExBLAfE6IL6LL9yJ"
+ + "CcNKoAH6QPwBiIOB+AAQh+IylBgD0fUuBwp8BeIUbIaSYyDInEdA7ALEt9ANJdfAxUCDDgLxHGoZiDNeyHXhqIGIEBgNQ8qL"
+ + "W6qHIQCR/wsV2AyBPAAAAABJRU5ErkJggg==",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAbUlEQVQ4T2NkoDJgpLJ5DKMGYg1RWaCoNxCDguccEJ/EF+7E"
+ "hGEx0AAtIP4HxNFAvAqIM4H4OzaDiTEQXd8poMA1IE6gloEgc74BsSM275PjQpCBc4D4LBBPR3cluQbijJdRAykvKkbDcBCG"
@@ -1858,10 +1858,10 @@ public void arcAnticlockwiseStroke() throws Exception {
+ "44lFq/GEIea/AIPmBrOE3gW7mH7qhzWmWCeAe1yxbdf/BiyuHEyKDiUAi6/NJ+9ii93pEPXXplNsX01vh5geFQJIQ80AAAAA"
+ "SUVORK5CYII=",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAp0lEQVQ4T2NkoDJgpLJ5DKMGYg1Rc6CoEVTmHJA+iS/c8YUh"
- + "J1DjdCAOA+JlQPwfiKOBeBUQZwLxd2wG4zNwAVCDFhCboWk8BeRfA+IEUgwEeXM/EHPh8N43oLgjNu/jciHIS6BwS8Vh4Byg"
- + "+FlokKAowWegMVBlCh4DscrhMpDqXgY5jKqRAjIQOdksBfJBvomiJNnAgo9qCRtHfOAXHi1tyAo2FE0ArxceFbIaufkAAAAA"
- + "SUVORK5CYII=",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAsUlEQVQ4T2NkoDJgpLJ5DKMGYg1Rc6CoEVTmHJA+iS/c8YUh"
+ + "J1DjdCAOA+KlUEOigfQqIM4E4u/YDMZn4AKgBi0gNkPTeArIvwbECaQYCPLmfiDmwuG9b0BxR2zex+VCkJdA4ZaKw8DZQHFQ"
+ + "eIKCBAXgM9AYqDIFh4FzcMnhMpDqXgY5jKqRAjKQA4hnADEs2YB8EwXEoGSTAcQ/SIllZLVUS9g44gO/8GhpQ1awoWgCAGzL"
+ + "HRVrJ2zIAAAAAElFTkSuQmCC",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAp0lEQVQ4T2NkoDJgpLJ5DKMGYg1Rc6CoEVTmHJA+iS/c8YUh"
+ "J1DjdCAOA+JlQPwfiKOBeBUQZwLxd2wG4zNwAVCDFhCboWk8BeRfA+IEUgwEeXM/EHPh8N43oLgjNu/jciHIS6BwS8Vh4Byg"
@@ -1915,11 +1915,11 @@ public void arcFillPath() throws Exception {
+ "U8LytsjNFR2+93ZtUu6FOan9fP5F4AuWa9LekPqQOvRUvTbhDNsjgYmOrlQiFV5HJyWP2nesquohcxTOx92gvNjlyF1KHGlk"
+ "6alVw6L33Bv0Yy1KQfSH39ek1nr6/+/wC1AdNxWqbJODAAAAAElFTkSuQmCC",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA/klEQVQ4T82U/RGCMAzFywa6AW7gCG6gbqAb6ASGCZQJZANx"
- + "Ah2BDXQDGcGXYjEUqqXHeebu/UE/fn1JWiI1cEQD85QbSCrGYQtoDk2hEiqgO5Qo0t+t6AaS2mDlDhp9yGAL6MGebwJJA/bQ"
- + "yrMUOaBLudYGsjMG9ok1oJnZ8AZW7m5f0nQdNAGUayuaQhiq6hYSdT2lwxNI3NWQqGspgZxuHELDnhL5je2UQ4FXgDhlvqON"
- + "Gl7wPfN0yJc6h1ID6uqyT1MYlEKZ6aptwL42D4dDTuv8AnU+ubZDHiH9Qo4CyqAEKlxv1+3QzJAGxrLQnnXVy374++pjS6z9"
- + "f4dPi7M2FSLXHwIAAAAASUVORK5CYII=",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABBklEQVQ4T82UjRGCMAyFwwa6AW7gCDqBjuAIMoFhAmUC3UCd"
+ + "QDaQDXQDGcEXpJgWKj/neebu3QGJX1/T1IC+HMGXeeQHMk2x2BJaQCGUQ3cog2Li4r0WdSDTCFUraAPJsy8Eym6yCXgsnXXp"
+ + "RgrkXBfaQKY1ktsuJFVjOX0DXz27tGzTt9YETqW/6lCGuTML7ACMXKC4m/Xcrimveqm3fEM2HAjM4XDsOhwKTAGKAJT5tHp4"
+ + "xbscTJeQoT5BiQGZH+ktMz7KMH8KASXQwZyqW6yBciseHpps61yCGq9c3aF84WKoZbhNCCiGMt/d9Ts0GaY9HkOoanRLG6z0"
+ + "D/+++thStf/v8AmQKzYVpXVGrAAAAABJRU5ErkJggg==",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA/klEQVQ4T82U/RGCMAzFywa6AW7gCG6gbqAb6ASGCZQJZANx"
+ "Ah2BDXQDGcGXYjEUqqXHeebu/UE/fn1JWiI1cEQD85QbSCrGYQtoDk2hEiqgO5Qo0t+t6AaS2mDlDhp9yGAL6MGebwJJA/bQ"
@@ -2176,13 +2176,13 @@ public void putImageDataDirty() throws Exception {
+ "NnE/VUWZsKsCYwkGyoQdAfLVC1H/rqDDgMUn8aJoW/wchnH7AuAxQnsBm7zoc8jfYq+n0IboUR0CEhnV42tWzbnf118UblcV"
+ "tmWm8wAAAABJRU5ErkJggg==",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABfUlEQVQ4T62UTytFQRiH3UIWsrG0sKDs3JKFLKSULETiG8jm"
- + "LtBNykrZyEbKQkK+ALKwULL07yphI6XwHST/wvOrmdsYM53DvVNP5547M8/MnPd9J1NR5pZJ8I3Q/wJ7ade1wjom7EOnN/GG"
- + "9wZog7s0UneHx0xYhC2ohCkYg0tognb4SJK6Qh1vBh5gCJ7hFO7Nez3PHcjDY0zsCkcZtGp2uMtz3PsER7w/QYeRboSkVijZ"
- + "EsxDvxloj2/nNfPjBBZgFibhl1TCRriGPjPh1hhaAjvQYpuQg3Vo9Y8v4TZcwZwR6FuqKTihpmANwgFkYdgdJOEn1MCb6fiK"
- + "iGJ/V9FRjL6EF6A8s+0vQiV9N5zZyRKugfLtP0ItPgDFSipV+I5sAlbcHZZyZOVlDxRcYdmD4qdN2qAoIOfQ5YY/lNhpha+I"
- + "lPw/6tovvV4G6NZJaso7XRLL/kD/clD96m6MNR1TbTokU4d/Y6uuVfCKnCJYbQSqolo4BF0k0evrG77KVhVrq+aXAAAAAElF"
- + "TkSuQmCC",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABiElEQVQ4T62UTStHQRSH/RdkIRtLRUlslFIWLKQsWIjEJ/Cy"
+ + "sUCSslI2skFZUN6+ALKwULL0XvKykFLiM1DewvOrMxrj3v4X99TT3Jk585uZe86ZTE7Klsmi18X8E2wl3dcJFrJgG+qDhVf0"
+ + "i6EGbpKI+ifcZ8E0rEEujEAfnEEZ1MJrNlFfUNcbgzvogEc4hFvrF9FuwLD5RGr7gr14LNgJN2kHgl+wR/8B6kx0KUrRCUps"
+ + "Biah1Rzd9d26cj4OYArGYQiWQ1EJlsIlNNuCa3OqjDiBNluFfhOror33/SS4DucwYRP6lzIFJ8oUrHbYgWroDAXfGciHF5v4"
+ + "iBGKG1ZGvLlJnfAUlGfOfiOopG+EI19wkY7y7S+C2rwNvipJJ/yPoBJ9EObTurLysgmOfcHUgxKmTdKgKCAn0OCH3yX2BYMt"
+ + "oEpIKviMbwX8SGxt0AOzoGpRzWYz5Z0eibnQ0X8cJKr61dsYZ7qmbDRKTBPhi13C2AoocopgngmoigpgF7rh2zX93T8BvvJW"
+ + "FWV1b98AAAAASUVORK5CYII=",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABfUlEQVQ4T62UTytFQRiH3UIWsrG0sKDs3JKFLKSULETiG8jm"
+ "LtBNykrZyEbKQkK+ALKwULL07yphI6XwHST/wvOrmdsYM53DvVNP5547M8/MnPd9J1NR5pZJ8I3Q/wJ7ade1wjom7EOnN/GG"
@@ -2445,10 +2445,10 @@ public void saveRestore() throws Exception {
+ "STHQUYWBYf1tBgZ+bJpUGRg+3mFgCCTW+yAXVpQwMDSjuw5mOMiVPQwMtQwMDB3EuJImBlLdy1SPFFDQUDfZIAU21RI2MRFI"
+ "lBpYTiFKMTGKRg0kJpTwqxkNQ8rDEABatjIVyjXhJwAAAABJRU5ErkJggg==",
FF = "data:image/png;base64,"
- + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA10lEQVQ4T2NkQAXmQK4RVOgckD6JJk+QywhVwSnEwLD4CwND"
- + "QDgDw0+Q2EoGBnYeBob17xgY4oDc7wRNgioAGwg0bLUSA0PQaQYGJmSNpgwM/+5BDA0hxUBzNgaGo0BnMWPTxM7A8PcXA4M1"
- + "sd4HuTAzloGhZxEDAxc2A4H+/baYgYGbFBcSY2AJ0MDpxBgKciHVvQyKlDXASAnEESnrgJESSozrQGqQk80iYLIJREs2G4CG"
- + "AYOYxGSDZDvVEjaxPiKoDuZlggqJVTBqILEhhVvdaBhSHoYAlLcxFYNJm/0AAAAASUVORK5CYII=",
+ + "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA4klEQVQ4T+2STQ4BQRCFPyT+V27AESQyC5cwQqzY2zuGvT0b"
+ + "QnAJCyGO4AhiIRgJUU1P4mdkesJSbzpV/frlvaoX4vlYUuZ1ayX3/OXdtwxpRCIDvR2UauCoZh9iSZhuoS7lwZdJA26EQjbM"
+ + "QXkB4cePBbisYbKBShBCKwozByJen2JwPkHR1L5S2BRP7S6Iw/fTgH0PUkEUmhC2hLBjQqoU/tyyWsooC/bSeyljWUrVRJ3C"
+ + "uLGJ69jYKjbqYSCxSd83rGJzDEro4n8WbFMBvjjXsi/QFPAnNJ3UZ9x/ht/P8AqUpzEVnisiKgAAAABJRU5ErkJggg==",
FF_ESR = "data:image/png;base64,"
+ "iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA6ElEQVQ4T+2SzQoBURiGH5F/NyIrKQv3YOOnJpStnetwA1aU"
+ "klixcgcWJLdgx05ZYTLlO2OmmGiOWDqb03e+9zy930+A55OXMOs8beReevK+YcBRxGLQu0KlBMcQhCcQT8HsAA3RnHxJjsAG"
diff --git a/src/test/resources/org/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.FF.txt b/src/test/resources/org/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.FF.txt
index ba3f987ab4f..dca28e7a048 100644
--- a/src/test/resources/org/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.FF.txt
+++ b/src/test/resources/org/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties.FF.txt
@@ -295,6 +295,7 @@ fontSizeAdjust
fontStretch
fontStyle
fontSynthesis
+fontSynthesisPosition
fontSynthesisSmallCaps
fontSynthesisStyle
fontSynthesisWeight
@@ -382,6 +383,8 @@ maskPositionY
maskRepeat
maskSize
maskType
+mathDepth
+mathStyle
maxBlockSize
maxHeight
maxInlineSize
diff --git a/src/test/resources/org/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.FF.txt b/src/test/resources/org/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.FF.txt
index 8a3d44c4968..83cd5aa8b26 100644
--- a/src/test/resources/org/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.FF.txt
+++ b/src/test/resources/org/htmlunit/javascript/host/css/CSSStyleDeclaration2Test.properties2.FF.txt
@@ -293,6 +293,7 @@ fontSizeAdjust
fontStretch
fontStyle
fontSynthesis
+fontSynthesisPosition
fontSynthesisSmallCaps
fontSynthesisStyle
fontSynthesisWeight
@@ -379,6 +380,8 @@ maskPositionY
maskRepeat
maskSize
maskType
+mathDepth
+mathStyle
maxBlockSize
maxHeight
maxInlineSize
diff --git a/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.FF.txt b/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.FF.txt
index 4a95e6b2ffd..7745600cb6c 100644
--- a/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.FF.txt
+++ b/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.FF.txt
@@ -549,10 +549,11 @@ font-size-adjust=:none
font-size=:16px
font-stretch=:100%
font-style=:normal
+font-synthesis-position=:auto
font-synthesis-small-caps=:auto
font-synthesis-style=:auto
font-synthesis-weight=:auto
-font-synthesis=:weight style small-caps
+font-synthesis=:weight style small-caps position
font-variant-alternates=:normal
font-variant-caps=:normal
font-variant-east-asian=:normal
@@ -573,7 +574,8 @@ fontSize=:16px
fontSizeAdjust=:none
fontStretch=:100%
fontStyle=:normal
-fontSynthesis=:weight style small-caps
+fontSynthesis=:weight style small-caps position
+fontSynthesisPosition=:auto
fontSynthesisSmallCaps=:auto
fontSynthesisStyle=:auto
fontSynthesisWeight=:auto
@@ -724,6 +726,10 @@ maskPositionY=:0%
maskRepeat=:repeat
maskSize=:auto
maskType=:luminance
+math-depth=:0
+math-style=:normal
+mathDepth=:0
+mathStyle=:normal
max-block-size=:none
max-height=:none
max-inline-size=:none
@@ -987,11 +993,11 @@ textUnderlinePosition=:auto
top=:auto
touch-action=:auto
touchAction=:auto
-transform-box=:border-box
+transform-box=:view-box
transform-origin=:622px 172.5px
transform-style=:flat
transform=:none
-transformBox=:border-box
+transformBox=:view-box
transformOrigin=:622px 172.5px
transformStyle=:flat
transition-delay=:0s
diff --git a/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.notAttached.FF.txt b/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.notAttached.FF.txt
index 5f108ea172d..6ca34f04d20 100644
--- a/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.notAttached.FF.txt
+++ b/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.notAttached.FF.txt
@@ -549,6 +549,7 @@ font-size-adjust=:
font-size=:
font-stretch=:
font-style=:
+font-synthesis-position=:
font-synthesis-small-caps=:
font-synthesis-style=:
font-synthesis-weight=:
@@ -574,6 +575,7 @@ fontSizeAdjust=:
fontStretch=:
fontStyle=:
fontSynthesis=:
+fontSynthesisPosition=:
fontSynthesisSmallCaps=:
fontSynthesisStyle=:
fontSynthesisWeight=:
@@ -724,6 +726,10 @@ maskPositionY=:
maskRepeat=:
maskSize=:
maskType=:
+math-depth=:
+math-style=:
+mathDepth=:
+mathStyle=:
max-block-size=:
max-height=:
max-inline-size=: