diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 3d236176fb9..90c356cd44a 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -7,7 +7,7 @@ - + " Internal method HtmlInput.setType(String, boolean) renamed to changeType(String, boolean) and a return value added. Please check the javadoc if you use this. diff --git a/src/main/java/org/htmlunit/BrowserVersion.java b/src/main/java/org/htmlunit/BrowserVersion.java index 771a206829b..28548372ece 100644 --- a/src/main/java/org/htmlunit/BrowserVersion.java +++ b/src/main/java/org/htmlunit/BrowserVersion.java @@ -104,10 +104,10 @@ public final class BrowserVersion implements Serializable { public static final BrowserVersion INTERNET_EXPLORER = new BrowserVersion(11, "IE"); /** Latest Edge. */ - public static final BrowserVersion EDGE = new BrowserVersion(118, "Edge"); + public static final BrowserVersion EDGE = new BrowserVersion(119, "Edge"); /** Latest Chrome. */ - public static final BrowserVersion CHROME = new BrowserVersion(118, "Chrome"); + public static final BrowserVersion CHROME = new BrowserVersion(119, "Chrome"); /** * Array with all supported browsers. @@ -252,9 +252,9 @@ public final class BrowserVersion implements Serializable { CHROME.imgAcceptHeader_ = "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"; CHROME.cssAcceptHeader_ = "text/css,*/*;q=0.1"; CHROME.scriptAcceptHeader_ = "*/*"; - CHROME.secClientHintUserAgentHeader_ = "\"Chromium\";v=\"" - + CHROME.getBrowserVersionNumeric() + "\", \"Google Chrome\";v=\"" - + CHROME.getBrowserVersionNumeric() + "\", \"Not=A?Brand\";v=\"99\""; + CHROME.secClientHintUserAgentHeader_ = "\"Google Chrome\";v=\"" + + CHROME.getBrowserVersionNumeric() + "\", \"Chromium\";v=\"" + + CHROME.getBrowserVersionNumeric() + "\", \"Not?A_Brand\";v=\"24\""; CHROME.fontHeights_ = new int[] { 0, 1, 2, 4, 5, 5, 6, 8, 9, 10, 11, 12, 15, 16, 16, 17, 18, 20, 21, 22, 23, 25, 26, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 37, 38, 40, 42, 43, 44, 45, 47, 48, 48, 49, 51, 52, 53, 54, 55, 57, @@ -266,10 +266,10 @@ public final class BrowserVersion implements Serializable { // EDGE (Win10 64bit) EDGE.applicationVersion_ = "5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/" + EDGE.getBrowserVersionNumeric() + ".0.0.0 Safari/537.36 Edg/" - + EDGE.getBrowserVersionNumeric() + ".0.2088.46"; + + EDGE.getBrowserVersionNumeric() + ".0.0.0"; EDGE.userAgent_ = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/" + EDGE.getBrowserVersionNumeric() + ".0.0.0 Safari/537.36 Edg/" - + EDGE.getBrowserVersionNumeric() + ".0.2088.46"; + + EDGE.getBrowserVersionNumeric() + ".0.0.0"; EDGE.applicationCodeName_ = "Mozilla"; EDGE.vendor_ = "Google Inc."; @@ -299,9 +299,9 @@ public final class BrowserVersion implements Serializable { EDGE.imgAcceptHeader_ = "image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"; EDGE.cssAcceptHeader_ = "text/css,*/*;q=0.1"; EDGE.scriptAcceptHeader_ = "*/*"; - EDGE.secClientHintUserAgentHeader_ = "\"Chromium\";v=\"" - + EDGE.getBrowserVersionNumeric() + "\", \"Microsoft Edge\";v=\"" - + EDGE.getBrowserVersionNumeric() + "\", \"Not=A?Brand\";v=\"99\""; + EDGE.secClientHintUserAgentHeader_ = "\"Microsoft Edge\";v=\"" + + EDGE.getBrowserVersionNumeric() + "\", \"Chromium\";v=\"" + + EDGE.getBrowserVersionNumeric() + "\", \"Not?A_Brand\";v=\"24\""; EDGE.fontHeights_ = new int[] { 0, 1, 2, 4, 5, 5, 6, 8, 9, 10, 11, 12, 15, 16, 16, 17, 18, 20, 21, 22, 23, 25, 26, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 37, 38, 40, 42, 43, 44, 45, 47, 48, 48, 49, 51, 52, 53, 54, 55, 57, diff --git a/src/test/java/org/htmlunit/BrowserVersionTest.java b/src/test/java/org/htmlunit/BrowserVersionTest.java index 6c7cfbb1bc5..c9a891e75e6 100644 --- a/src/test/java/org/htmlunit/BrowserVersionTest.java +++ b/src/test/java/org/htmlunit/BrowserVersionTest.java @@ -37,8 +37,8 @@ public class BrowserVersionTest { public void getBrowserVersionNumeric() { assertEquals(119, BrowserVersion.FIREFOX.getBrowserVersionNumeric()); assertEquals(109, BrowserVersion.FIREFOX_ESR.getBrowserVersionNumeric()); - assertEquals(118, BrowserVersion.CHROME.getBrowserVersionNumeric()); - assertEquals(118, BrowserVersion.EDGE.getBrowserVersionNumeric()); + assertEquals(119, BrowserVersion.CHROME.getBrowserVersionNumeric()); + assertEquals(119, BrowserVersion.EDGE.getBrowserVersionNumeric()); assertEquals(11, BrowserVersion.INTERNET_EXPLORER.getBrowserVersionNumeric()); } diff --git a/src/test/java/org/htmlunit/ExternalTest.java b/src/test/java/org/htmlunit/ExternalTest.java index 9b85232c157..20c9f87b119 100644 --- a/src/test/java/org/htmlunit/ExternalTest.java +++ b/src/test/java/org/htmlunit/ExternalTest.java @@ -54,11 +54,11 @@ public class ExternalTest { static String MAVEN_REPO_URL_ = "https://repo1.maven.org/maven2/"; /** Chrome driver. */ - static String CHROME_DRIVER_ = "118.0.5993.70"; + static String CHROME_DRIVER_ = "119.0.6045.105"; static String CHROME_DRIVER_URL_ = "https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json"; - static String EDGE_DRIVER_ = "118.0.2088.76"; + static String EDGE_DRIVER_ = "119.0.2151.44"; static String EDGE_DRIVER_URL_ = "https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/"; /** Gecko driver. */ diff --git a/src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java b/src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java index 0cd124012c4..1f559ac4c24 100644 --- a/src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java +++ b/src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java @@ -546,7 +546,7 @@ public void htmlElement() throws Exception { + "requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),scrollBy(),scrollHeight[GCE]," + "scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],scrollTo(),scrollTop[GSCE]," + "scrollWidth[GCE],setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS()," - + "setHTML(),setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute()," + + "setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute()," + "webkitMatchesSelector(),webkitRequestFullScreen()," + "webkitRequestFullscreen()", EDGE = "after(),animate(),append(),ariaAtomic[GSCE],ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE]," @@ -575,7 +575,7 @@ public void htmlElement() throws Exception { + "requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),scrollBy(),scrollHeight[GCE]," + "scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],scrollTo(),scrollTop[GSCE]," + "scrollWidth[GCE],setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS()," - + "setHTML(),setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute()," + + "setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute()," + "webkitMatchesSelector(),webkitRequestFullScreen()," + "webkitRequestFullscreen()", FF = "after(),animate(),append(),ariaAtomic[GSCE],ariaAutoComplete[GSCE],ariaBusy[GSCE]," @@ -743,7 +743,7 @@ public void element() throws Exception { + "requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),scrollBy(),scrollHeight[GCE]," + "scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],scrollTo(),scrollTop[GSCE]," + "scrollWidth[GCE],setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS()," - + "setHTML(),setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute()," + + "setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute()," + "webkitMatchesSelector(),webkitRequestFullScreen()," + "webkitRequestFullscreen()", EDGE = "after(),animate(),append(),ariaAtomic[GSCE],ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE]," @@ -772,7 +772,7 @@ public void element() throws Exception { + "requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),scrollBy(),scrollHeight[GCE]," + "scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],scrollTo(),scrollTop[GSCE]," + "scrollWidth[GCE],setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS()," - + "setHTML(),setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute()," + + "setPointerCapture(),shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute()," + "webkitMatchesSelector(),webkitRequestFullScreen()," + "webkitRequestFullscreen()", FF = "after(),animate(),append(),ariaAtomic[GSCE],ariaAutoComplete[GSCE],ariaBusy[GSCE]," @@ -15866,9 +15866,9 @@ public void slot() throws Exception { + "fragmentDirective[GCE],fullscreen[GSCE],fullscreenElement[GSCE],fullscreenEnabled[GSCE]," + "getAnimations(),getElementById(),getElementsByClassName(),getElementsByName()," + "getElementsByTagName(),getElementsByTagNameNS(),getSelection(),hasFocus(),hasPrivateToken()," - + "hasRedemptionRecord(),head[GCE],hidden[GCE],images[GCE],implementation[GCE],importNode()," - + "inputEncoding[GCE],lastElementChild[GCE],lastModified[GCE],linkColor[GSCE],links[GCE]," - + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE]," + + "hasRedemptionRecord(),hasStorageAccess(),head[GCE],hidden[GCE],images[GCE],implementation[GCE]," + + "importNode(),inputEncoding[GCE],lastElementChild[GCE],lastModified[GCE],linkColor[GSCE]," + + "links[GCE],onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE]," + "onauxclick[GSCE],onbeforecopy[GSCE],onbeforecut[GSCE],onbeforeinput[GSCE],onbeforematch[GSCE]," + "onbeforepaste[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],oncancel[GSCE]," + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE]," @@ -15896,12 +15896,13 @@ public void slot() throws Exception { + "pictureInPictureElement[GCE],pictureInPictureEnabled[GCE],plugins[GCE],pointerLockElement[GCE]," + "prepend(),prerendering[GCE],queryCommandEnabled(),queryCommandIndeterm(),queryCommandState()," + "queryCommandSupported(),queryCommandValue(),querySelector(),querySelectorAll(),readyState[GCE]," - + "referrer[GCE],releaseEvents(),replaceChildren(),rootElement[GCE],scripts[GCE]," - + "scrollingElement[GCE],startViewTransition(),styleSheets[GCE],timeline[GCE],title[GSCE],URL[GCE]," - + "visibilityState[GCE],vlinkColor[GSCE],wasDiscarded[GCE],webkitCancelFullScreen()," - + "webkitCurrentFullScreenElement[GCE],webkitExitFullscreen(),webkitFullscreenElement[GCE]," - + "webkitFullscreenEnabled[GCE],webkitHidden[GCE],webkitIsFullScreen[GCE]," - + "webkitVisibilityState[GCE],write(),writeln(),xmlEncoding[GCE],xmlStandalone[GSCE]," + + "referrer[GCE],releaseEvents(),replaceChildren(),requestStorageAccess(),requestStorageAccessFor()," + + "rootElement[GCE],scripts[GCE],scrollingElement[GCE],startViewTransition(),styleSheets[GCE]," + + "timeline[GCE],title[GSCE],URL[GCE],visibilityState[GCE],vlinkColor[GSCE],wasDiscarded[GCE]," + + "webkitCancelFullScreen(),webkitCurrentFullScreenElement[GCE],webkitExitFullscreen()," + + "webkitFullscreenElement[GCE],webkitFullscreenEnabled[GCE],webkitHidden[GCE]," + + "webkitIsFullScreen[GCE],webkitVisibilityState[GCE],write(),writeln(),xmlEncoding[GCE]," + + "xmlStandalone[GSCE]," + "xmlVersion[GSCE]", EDGE = "activeElement[GCE],adoptedStyleSheets[GSCE],adoptNode(),alinkColor[GSCE],all[GCE],anchors[GCE]," + "append(),applets[GCE],bgColor[GSCE],body[GSCE],captureEvents(),caretRangeFromPoint()," @@ -15947,9 +15948,9 @@ public void slot() throws Exception { + "pictureInPictureElement[GCE],pictureInPictureEnabled[GCE],plugins[GCE],pointerLockElement[GCE]," + "prepend(),prerendering[GCE],queryCommandEnabled(),queryCommandIndeterm(),queryCommandState()," + "queryCommandSupported(),queryCommandValue(),querySelector(),querySelectorAll(),readyState[GCE]," - + "referrer[GCE],releaseEvents(),replaceChildren(),requestStorageAccess(),rootElement[GCE]," - + "scripts[GCE],scrollingElement[GCE],startViewTransition(),styleSheets[GCE],timeline[GCE]," - + "title[GSCE],URL[GCE],visibilityState[GCE],vlinkColor[GSCE],wasDiscarded[GCE]," + + "referrer[GCE],releaseEvents(),replaceChildren(),requestStorageAccess(),requestStorageAccessFor()," + + "rootElement[GCE],scripts[GCE],scrollingElement[GCE],startViewTransition(),styleSheets[GCE]," + + "timeline[GCE],title[GSCE],URL[GCE],visibilityState[GCE],vlinkColor[GSCE],wasDiscarded[GCE]," + "webkitCancelFullScreen(),webkitCurrentFullScreenElement[GCE],webkitExitFullscreen()," + "webkitFullscreenElement[GCE],webkitFullscreenEnabled[GCE],webkitHidden[GCE]," + "webkitIsFullScreen[GCE],webkitVisibilityState[GCE],write(),writeln(),xmlEncoding[GCE]," diff --git a/src/test/java/org/htmlunit/general/ElementPropertiesTest.java b/src/test/java/org/htmlunit/general/ElementPropertiesTest.java index d9005da2c98..fad7253b78f 100644 --- a/src/test/java/org/htmlunit/general/ElementPropertiesTest.java +++ b/src/test/java/org/htmlunit/general/ElementPropertiesTest.java @@ -672,53 +672,49 @@ public void htmlElement() throws Exception { * @throws Exception if the test fails */ @Test - @Alerts(CHROME = "animate(),append(),ariaAtomic,ariaAutoComplete," - + "ariaBrailleLabel,ariaBrailleRoleDescription," - + "ariaBusy,ariaChecked,ariaColCount,ariaColIndex," - + "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,ariaRowSpan,ariaSelected," - + "ariaSetSize,ariaSort,ariaValueMax,ariaValueMin,ariaValueNow,ariaValueText,attachShadow()," - + "attributes,checkVisibility(),childElementCount,children,classList,className,clientHeight," - + "clientLeft,clientTop,clientWidth,closest(),computedStyleMap(),elementTiming,firstElementChild," - + "getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS()," - + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName()," - + "getElementsByTagName(),getElementsByTagNameNS(),getInnerHTML(),hasAttribute(),hasAttributeNS()," - + "hasAttributes(),hasPointerCapture(),id,innerHTML,insertAdjacentElement(),insertAdjacentHTML()," + @Alerts(CHROME = "animate(),append(),ariaAtomic,ariaAutoComplete,ariaBrailleLabel,ariaBrailleRoleDescription," + + "ariaBusy,ariaChecked,ariaColCount,ariaColIndex,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,ariaRowSpan,ariaSelected,ariaSetSize,ariaSort,ariaValueMax,ariaValueMin," + + "ariaValueNow,ariaValueText,attachShadow(),attributes,checkVisibility(),childElementCount," + + "children,classList,className,clientHeight,clientLeft,clientTop,clientWidth,closest()," + + "computedStyleMap(),elementTiming,firstElementChild,getAnimations(),getAttribute()," + + "getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS()," + + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName()," + + "getElementsByTagNameNS(),getInnerHTML(),hasAttribute(),hasAttributeNS(),hasAttributes()," + + "hasPointerCapture(),id,innerHTML,insertAdjacentElement(),insertAdjacentHTML()," + "insertAdjacentText(),lastElementChild,localName,matches(),namespaceURI,onbeforecopy,onbeforecut," + "onbeforepaste,onfullscreenchange,onfullscreenerror,onsearch,onwebkitfullscreenchange," + "onwebkitfullscreenerror,outerHTML,part,prefix,prepend(),querySelector(),querySelectorAll()," + "releasePointerCapture(),removeAttribute(),removeAttributeNode(),removeAttributeNS()," + "replaceChildren(),requestFullscreen(),requestPointerLock(),role,scroll(),scrollBy(),scrollHeight," + "scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft,scrollTo(),scrollTop,scrollWidth," - + "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setHTML()," - + "setPointerCapture(),shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector()," - + "webkitRequestFullScreen()," + + "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setPointerCapture()," + + "shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector(),webkitRequestFullScreen()," + "webkitRequestFullscreen()", - EDGE = "animate(),append(),ariaAtomic,ariaAutoComplete," - + "ariaBrailleLabel,ariaBrailleRoleDescription," - + "ariaBusy,ariaChecked,ariaColCount,ariaColIndex," - + "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,ariaRowSpan,ariaSelected," - + "ariaSetSize,ariaSort,ariaValueMax,ariaValueMin,ariaValueNow,ariaValueText,attachShadow()," - + "attributes,checkVisibility(),childElementCount,children,classList,className,clientHeight," - + "clientLeft,clientTop,clientWidth,closest(),computedStyleMap(),elementTiming,firstElementChild," - + "getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS()," - + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName()," - + "getElementsByTagName(),getElementsByTagNameNS(),getInnerHTML(),hasAttribute(),hasAttributeNS()," - + "hasAttributes(),hasPointerCapture(),id,innerHTML,insertAdjacentElement(),insertAdjacentHTML()," + EDGE = "animate(),append(),ariaAtomic,ariaAutoComplete,ariaBrailleLabel,ariaBrailleRoleDescription," + + "ariaBusy,ariaChecked,ariaColCount,ariaColIndex,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,ariaRowSpan,ariaSelected,ariaSetSize,ariaSort,ariaValueMax,ariaValueMin," + + "ariaValueNow,ariaValueText,attachShadow(),attributes,checkVisibility(),childElementCount," + + "children,classList,className,clientHeight,clientLeft,clientTop,clientWidth,closest()," + + "computedStyleMap(),elementTiming,firstElementChild,getAnimations(),getAttribute()," + + "getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS()," + + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName()," + + "getElementsByTagNameNS(),getInnerHTML(),hasAttribute(),hasAttributeNS(),hasAttributes()," + + "hasPointerCapture(),id,innerHTML,insertAdjacentElement(),insertAdjacentHTML()," + "insertAdjacentText(),lastElementChild,localName,matches(),namespaceURI,onbeforecopy,onbeforecut," + "onbeforepaste,onfullscreenchange,onfullscreenerror,onsearch,onwebkitfullscreenchange," + "onwebkitfullscreenerror,outerHTML,part,prefix,prepend(),querySelector(),querySelectorAll()," + "releasePointerCapture(),removeAttribute(),removeAttributeNode(),removeAttributeNS()," + "replaceChildren(),requestFullscreen(),requestPointerLock(),role,scroll(),scrollBy(),scrollHeight," + "scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft,scrollTo(),scrollTop,scrollWidth," - + "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setHTML()," - + "setPointerCapture(),shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector()," - + "webkitRequestFullScreen()," + + "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setPointerCapture()," + + "shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector(),webkitRequestFullScreen()," + "webkitRequestFullscreen()", FF = "animate(),append(),ariaAtomic,ariaAutoComplete,ariaBusy,ariaChecked,ariaColCount,ariaColIndex," + "ariaColIndexText,ariaColSpan,ariaCurrent,ariaDescription,ariaDisabled,ariaExpanded,ariaHasPopup," @@ -846,51 +842,49 @@ public void element() throws Exception { * @throws Exception if the test fails */ @Test - @Alerts(CHROME = "after(),animate(),ariaAtomic,ariaAutoComplete," - + "ariaBrailleLabel,ariaBrailleRoleDescription," - + "ariaBusy,ariaChecked,ariaColCount,ariaColIndex," - + "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,ariaRowSpan,ariaSelected," - + "ariaSetSize,ariaSort,ariaValueMax,ariaValueMin,ariaValueNow,ariaValueText,assignedSlot," - + "attachShadow(),attributes,before(),checkVisibility(),classList,className,clientHeight,clientLeft," - + "clientTop,clientWidth,closest(),computedStyleMap(),elementTiming,getAnimations(),getAttribute()," - + "getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS()," - + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName()," - + "getElementsByTagNameNS(),getInnerHTML(),hasAttribute(),hasAttributeNS(),hasAttributes()," - + "hasPointerCapture(),id,innerHTML,insertAdjacentElement(),insertAdjacentHTML()," - + "insertAdjacentText(),localName,matches(),namespaceURI,nextElementSibling,onbeforecopy," - + "onbeforecut,onbeforepaste,onfullscreenchange,onfullscreenerror,onsearch,onwebkitfullscreenchange," - + "onwebkitfullscreenerror,outerHTML,part,prefix,previousElementSibling,releasePointerCapture()," - + "remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),replaceWith()," - + "requestFullscreen(),requestPointerLock(),role,scroll(),scrollBy(),scrollHeight,scrollIntoView()," - + "scrollIntoViewIfNeeded(),scrollLeft,scrollTo(),scrollTop,scrollWidth,setAttribute()," - + "setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setHTML(),setPointerCapture()," - + "shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector(),webkitRequestFullScreen()," + @Alerts(CHROME = "after(),animate(),ariaAtomic,ariaAutoComplete,ariaBrailleLabel,ariaBrailleRoleDescription," + + "ariaBusy,ariaChecked,ariaColCount,ariaColIndex,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,ariaRowSpan,ariaSelected,ariaSetSize,ariaSort,ariaValueMax,ariaValueMin," + + "ariaValueNow,ariaValueText,assignedSlot,attachShadow(),attributes,before(),checkVisibility()," + + "classList,className,clientHeight,clientLeft,clientTop,clientWidth,closest(),computedStyleMap()," + + "elementTiming,getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode()," + + "getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects()," + + "getElementsByClassName(),getElementsByTagName(),getElementsByTagNameNS(),getInnerHTML()," + + "hasAttribute(),hasAttributeNS(),hasAttributes(),hasPointerCapture(),id,innerHTML," + + "insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),localName,matches()," + + "namespaceURI,nextElementSibling,onbeforecopy,onbeforecut,onbeforepaste,onfullscreenchange," + + "onfullscreenerror,onsearch,onwebkitfullscreenchange,onwebkitfullscreenerror,outerHTML,part," + + "prefix,previousElementSibling,releasePointerCapture(),remove(),removeAttribute()," + + "removeAttributeNode(),removeAttributeNS(),replaceWith(),requestFullscreen(),requestPointerLock()," + + "role,scroll(),scrollBy(),scrollHeight,scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft," + + "scrollTo(),scrollTop,scrollWidth,setAttribute(),setAttributeNode(),setAttributeNodeNS()," + + "setAttributeNS(),setPointerCapture(),shadowRoot,slot,tagName,toggleAttribute()," + + "webkitMatchesSelector(),webkitRequestFullScreen()," + "webkitRequestFullscreen()", - EDGE = "after(),animate(),ariaAtomic,ariaAutoComplete," - + "ariaBrailleLabel,ariaBrailleRoleDescription," - + "ariaBusy,ariaChecked,ariaColCount,ariaColIndex," - + "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,ariaRowSpan,ariaSelected," - + "ariaSetSize,ariaSort,ariaValueMax,ariaValueMin,ariaValueNow,ariaValueText,assignedSlot," - + "attachShadow(),attributes,before(),checkVisibility(),classList,className,clientHeight,clientLeft," - + "clientTop,clientWidth,closest(),computedStyleMap(),elementTiming,getAnimations(),getAttribute()," - + "getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS()," - + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName()," - + "getElementsByTagNameNS(),getInnerHTML(),hasAttribute(),hasAttributeNS(),hasAttributes()," - + "hasPointerCapture(),id,innerHTML,insertAdjacentElement(),insertAdjacentHTML()," - + "insertAdjacentText(),localName,matches(),namespaceURI,nextElementSibling,onbeforecopy," - + "onbeforecut,onbeforepaste,onfullscreenchange,onfullscreenerror,onsearch,onwebkitfullscreenchange," - + "onwebkitfullscreenerror,outerHTML,part,prefix,previousElementSibling,releasePointerCapture()," - + "remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),replaceWith()," - + "requestFullscreen(),requestPointerLock(),role,scroll(),scrollBy(),scrollHeight,scrollIntoView()," - + "scrollIntoViewIfNeeded(),scrollLeft,scrollTo(),scrollTop,scrollWidth,setAttribute()," - + "setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setHTML(),setPointerCapture()," - + "shadowRoot,slot,tagName,toggleAttribute(),webkitMatchesSelector(),webkitRequestFullScreen()," + EDGE = "after(),animate(),ariaAtomic,ariaAutoComplete,ariaBrailleLabel,ariaBrailleRoleDescription," + + "ariaBusy,ariaChecked,ariaColCount,ariaColIndex,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,ariaRowSpan,ariaSelected,ariaSetSize,ariaSort,ariaValueMax,ariaValueMin," + + "ariaValueNow,ariaValueText,assignedSlot,attachShadow(),attributes,before(),checkVisibility()," + + "classList,className,clientHeight,clientLeft,clientTop,clientWidth,closest(),computedStyleMap()," + + "elementTiming,getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode()," + + "getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects()," + + "getElementsByClassName(),getElementsByTagName(),getElementsByTagNameNS(),getInnerHTML()," + + "hasAttribute(),hasAttributeNS(),hasAttributes(),hasPointerCapture(),id,innerHTML," + + "insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),localName,matches()," + + "namespaceURI,nextElementSibling,onbeforecopy,onbeforecut,onbeforepaste,onfullscreenchange," + + "onfullscreenerror,onsearch,onwebkitfullscreenchange,onwebkitfullscreenerror,outerHTML,part," + + "prefix,previousElementSibling,releasePointerCapture(),remove(),removeAttribute()," + + "removeAttributeNode(),removeAttributeNS(),replaceWith(),requestFullscreen(),requestPointerLock()," + + "role,scroll(),scrollBy(),scrollHeight,scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft," + + "scrollTo(),scrollTop,scrollWidth,setAttribute(),setAttributeNode(),setAttributeNodeNS()," + + "setAttributeNS(),setPointerCapture(),shadowRoot,slot,tagName,toggleAttribute()," + + "webkitMatchesSelector(),webkitRequestFullScreen()," + "webkitRequestFullscreen()", FF = "after(),animate(),ariaAtomic,ariaAutoComplete,ariaBusy,ariaChecked,ariaColCount,ariaColIndex," + "ariaColIndexText,ariaColSpan,ariaCurrent,ariaDescription,ariaDisabled,ariaExpanded,ariaHasPopup," @@ -1104,16 +1098,16 @@ public void event() throws Exception { + "onselectstart,onslotchange,onstalled,onstorage,onsubmit,onsuspend,ontimeupdate,ontoggle," + "ontransitioncancel,ontransitionend,ontransitionrun,ontransitionstart,onunhandledrejection," + "onunload,onvolumechange,onwaiting,onwebkitanimationend,onwebkitanimationiteration," - + "onwebkitanimationstart,onwebkittransitionend,onwheel,open(),openDatabase(),opener,origin," - + "originAgentCluster,outerHeight,outerWidth,pageXOffset,pageYOffset,parent,performance,PERSISTENT," - + "personalbar,postMessage(),print(),process(),prompt(),queryLocalFonts(),queueMicrotask()," - + "releaseEvents(),removeEventListener(),reportError(),requestAnimationFrame()," - + "requestIdleCallback(),resizeBy(),resizeTo(),scheduler,screen,screenLeft,screenTop,screenX," - + "screenY,scroll(),scrollbars,scrollBy(),scrollTo(),scrollX,scrollY,self,sessionStorage," - + "setInterval(),setTimeout(),showDirectoryPicker(),showOpenFilePicker(),showSaveFilePicker()," - + "sortFunction(),speechSynthesis,status,statusbar,stop(),structuredClone(),styleMedia,TEMPORARY," - + "test(),toolbar,top,trustedTypes,visualViewport,webkitCancelAnimationFrame()," - + "webkitRequestAnimationFrame(),webkitRequestFileSystem(),webkitResolveLocalFileSystemURL()," + + "onwebkitanimationstart,onwebkittransitionend,onwheel,open(),opener,origin,originAgentCluster," + + "outerHeight,outerWidth,pageXOffset,pageYOffset,parent,performance,PERSISTENT,personalbar," + + "postMessage(),print(),process(),prompt(),queryLocalFonts(),queueMicrotask(),releaseEvents()," + + "removeEventListener(),reportError(),requestAnimationFrame(),requestIdleCallback(),resizeBy()," + + "resizeTo(),scheduler,screen,screenLeft,screenTop,screenX,screenY,scroll(),scrollbars,scrollBy()," + + "scrollTo(),scrollX,scrollY,self,sessionStorage,setInterval(),setTimeout(),showDirectoryPicker()," + + "showOpenFilePicker(),showSaveFilePicker(),sortFunction(),speechSynthesis,status,statusbar,stop()," + + "structuredClone(),styleMedia,TEMPORARY,test(),toolbar,top,trustedTypes,visualViewport," + + "webkitCancelAnimationFrame(),webkitRequestAnimationFrame(),webkitRequestFileSystem()," + + "webkitResolveLocalFileSystemURL()," + "window", EDGE = "addEventListener(),alert(),atob(),blur(),btoa(),caches,cancelAnimationFrame()," + "cancelIdleCallback(),captureEvents(),cdc_adoQpoasnfa76pfcZLmcfl_Array()," @@ -1142,16 +1136,16 @@ public void event() throws Exception { + "onselectstart,onslotchange,onstalled,onstorage,onsubmit,onsuspend,ontimeupdate,ontoggle," + "ontransitioncancel,ontransitionend,ontransitionrun,ontransitionstart,onunhandledrejection," + "onunload,onvolumechange,onwaiting,onwebkitanimationend,onwebkitanimationiteration," - + "onwebkitanimationstart,onwebkittransitionend,onwheel,open(),openDatabase(),opener,origin," - + "originAgentCluster,outerHeight,outerWidth,pageXOffset,pageYOffset,parent,performance,PERSISTENT," - + "personalbar,postMessage(),print(),process(),prompt(),queryLocalFonts(),queueMicrotask()," - + "releaseEvents(),removeEventListener(),reportError(),requestAnimationFrame()," - + "requestIdleCallback(),resizeBy(),resizeTo(),scheduler,screen,screenLeft,screenTop,screenX," - + "screenY,scroll(),scrollbars,scrollBy(),scrollTo(),scrollX,scrollY,self,sessionStorage," - + "setInterval(),setTimeout(),showDirectoryPicker(),showOpenFilePicker(),showSaveFilePicker()," - + "sortFunction(),speechSynthesis,status,statusbar,stop(),structuredClone(),styleMedia,TEMPORARY," - + "test(),toolbar,top,trustedTypes,visualViewport,webkitCancelAnimationFrame()," - + "webkitRequestAnimationFrame(),webkitRequestFileSystem(),webkitResolveLocalFileSystemURL()," + + "onwebkitanimationstart,onwebkittransitionend,onwheel,open(),opener,origin,originAgentCluster," + + "outerHeight,outerWidth,pageXOffset,pageYOffset,parent,performance,PERSISTENT,personalbar," + + "postMessage(),print(),process(),prompt(),queryLocalFonts(),queueMicrotask(),releaseEvents()," + + "removeEventListener(),reportError(),requestAnimationFrame(),requestIdleCallback(),resizeBy()," + + "resizeTo(),scheduler,screen,screenLeft,screenTop,screenX,screenY,scroll(),scrollbars,scrollBy()," + + "scrollTo(),scrollX,scrollY,self,sessionStorage,setInterval(),setTimeout(),showDirectoryPicker()," + + "showOpenFilePicker(),showSaveFilePicker(),sortFunction(),speechSynthesis,status,statusbar,stop()," + + "structuredClone(),styleMedia,TEMPORARY,test(),toolbar,top,trustedTypes,visualViewport," + + "webkitCancelAnimationFrame(),webkitRequestAnimationFrame(),webkitRequestFileSystem()," + + "webkitResolveLocalFileSystemURL()," + "window", FF = "addEventListener(),alert(),atob(),blur(),btoa(),caches,cancelAnimationFrame()," + "cancelIdleCallback(),captureEvents(),clearInterval(),clearTimeout(),clientInformation,close()," @@ -4716,20 +4710,20 @@ public void slot() throws Exception { + "fonts,forms,fragmentDirective,fullscreen,fullscreenElement,fullscreenEnabled,getAnimations()," + "getElementById(),getElementsByClassName(),getElementsByName(),getElementsByTagName()," + "getElementsByTagNameNS(),getRootNode(),getSelection(),hasChildNodes(),hasFocus()," - + "hasPrivateToken(),hasRedemptionRecord(),head,hidden,images,implementation,importNode()," - + "inputEncoding,insertBefore(),isConnected,isDefaultNamespace(),isEqualNode(),isSameNode()," - + "lastChild,lastElementChild,lastModified,linkColor,links,location,lookupNamespaceURI()," - + "lookupPrefix(),nextSibling,nodeName,nodeType,nodeValue,normalize(),NOTATION_NODE,onabort," - + "onanimationend,onanimationiteration,onanimationstart,onauxclick,onbeforecopy,onbeforecut," - + "onbeforeinput,onbeforematch,onbeforepaste,onbeforetoggle,onbeforexrselect,onblur,oncancel," - + "oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontentvisibilityautostatechange," - + "oncontextlost,oncontextmenu,oncontextrestored,oncopy,oncuechange,oncut,ondblclick,ondrag," - + "ondragend,ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied," - + "onended,onerror,onfocus,onformdata,onfreeze,onfullscreenchange,onfullscreenerror," - + "ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata," - + "onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter,onmouseleave," - + "onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpaste,onpause,onplay,onplaying," - + "onpointercancel,onpointerdown,onpointerenter,onpointerleave,onpointerlockchange," + + "hasPrivateToken(),hasRedemptionRecord(),hasStorageAccess(),head,hidden,images,implementation," + + "importNode(),inputEncoding,insertBefore(),isConnected,isDefaultNamespace(),isEqualNode()," + + "isSameNode(),lastChild,lastElementChild,lastModified,linkColor,links,location," + + "lookupNamespaceURI(),lookupPrefix(),nextSibling,nodeName,nodeType,nodeValue,normalize()," + + "NOTATION_NODE,onabort,onanimationend,onanimationiteration,onanimationstart,onauxclick," + + "onbeforecopy,onbeforecut,onbeforeinput,onbeforematch,onbeforepaste,onbeforetoggle," + + "onbeforexrselect,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose," + + "oncontentvisibilityautostatechange,oncontextlost,oncontextmenu,oncontextrestored,oncopy," + + "oncuechange,oncut,ondblclick,ondrag,ondragend,ondragenter,ondragleave,ondragover,ondragstart," + + "ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,onfreeze,onfullscreenchange," + + "onfullscreenerror,ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload," + + "onloadeddata,onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter," + + "onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpaste,onpause,onplay," + + "onplaying,onpointercancel,onpointerdown,onpointerenter,onpointerleave,onpointerlockchange," + "onpointerlockerror,onpointermove,onpointerout,onpointerover,onpointerrawupdate,onpointerup," + "onprerenderingchange,onprogress,onratechange,onreadystatechange,onreset,onresize,onresume," + "onscroll,onscrollend,onsearch,onsecuritypolicyviolation,onseeked,onseeking,onselect," @@ -4741,11 +4735,12 @@ public void slot() throws Exception { + "pointerLockElement,prepend(),prerendering,previousSibling,PROCESSING_INSTRUCTION_NODE," + "queryCommandEnabled(),queryCommandIndeterm(),queryCommandState(),queryCommandSupported()," + "queryCommandValue(),querySelector(),querySelectorAll(),readyState,referrer,releaseEvents()," - + "removeChild(),removeEventListener(),replaceChild(),replaceChildren(),rootElement,scripts," - + "scrollingElement,startViewTransition(),styleSheets,TEXT_NODE,textContent,timeline,title,URL," - + "visibilityState,vlinkColor,wasDiscarded,webkitCancelFullScreen(),webkitCurrentFullScreenElement," - + "webkitExitFullscreen(),webkitFullscreenElement,webkitFullscreenEnabled,webkitHidden," - + "webkitIsFullScreen,webkitVisibilityState,write(),writeln(),xmlEncoding,xmlStandalone," + + "removeChild(),removeEventListener(),replaceChild(),replaceChildren(),requestStorageAccess()," + + "requestStorageAccessFor(),rootElement,scripts,scrollingElement,startViewTransition(),styleSheets," + + "TEXT_NODE,textContent,timeline,title,URL,visibilityState,vlinkColor,wasDiscarded," + + "webkitCancelFullScreen(),webkitCurrentFullScreenElement,webkitExitFullscreen()," + + "webkitFullscreenElement,webkitFullscreenEnabled,webkitHidden,webkitIsFullScreen," + + "webkitVisibilityState,write(),writeln(),xmlEncoding,xmlStandalone," + "xmlVersion", EDGE = "activeElement,addEventListener(),adoptedStyleSheets,adoptNode(),alinkColor,all,anchors,append()," + "appendChild(),applets,ATTRIBUTE_NODE,baseURI,bgColor,body,captureEvents(),caretRangeFromPoint()," @@ -4790,11 +4785,11 @@ public void slot() throws Exception { + "queryCommandEnabled(),queryCommandIndeterm(),queryCommandState(),queryCommandSupported()," + "queryCommandValue(),querySelector(),querySelectorAll(),readyState,referrer,releaseEvents()," + "removeChild(),removeEventListener(),replaceChild(),replaceChildren(),requestStorageAccess()," - + "rootElement,scripts,scrollingElement,startViewTransition(),styleSheets,TEXT_NODE,textContent," - + "timeline,title,URL,visibilityState,vlinkColor,wasDiscarded,webkitCancelFullScreen()," - + "webkitCurrentFullScreenElement,webkitExitFullscreen(),webkitFullscreenElement," - + "webkitFullscreenEnabled,webkitHidden,webkitIsFullScreen,webkitVisibilityState,write(),writeln()," - + "xmlEncoding,xmlStandalone," + + "requestStorageAccessFor(),rootElement,scripts,scrollingElement,startViewTransition(),styleSheets," + + "TEXT_NODE,textContent,timeline,title,URL,visibilityState,vlinkColor,wasDiscarded," + + "webkitCancelFullScreen(),webkitCurrentFullScreenElement,webkitExitFullscreen()," + + "webkitFullscreenElement,webkitFullscreenEnabled,webkitHidden,webkitIsFullScreen," + + "webkitVisibilityState,write(),writeln(),xmlEncoding,xmlStandalone," + "xmlVersion", FF = "activeElement,addEventListener(),adoptedStyleSheets,adoptNode(),alinkColor,all,anchors,append()," + "appendChild(),applets,ATTRIBUTE_NODE,baseURI,bgColor,body,captureEvents()," @@ -4916,20 +4911,20 @@ public void document() throws Exception { + "fonts,forms,fragmentDirective,fullscreen,fullscreenElement,fullscreenEnabled,getAnimations()," + "getElementById(),getElementsByClassName(),getElementsByName(),getElementsByTagName()," + "getElementsByTagNameNS(),getRootNode(),getSelection(),hasChildNodes(),hasFocus()," - + "hasPrivateToken(),hasRedemptionRecord(),head,hidden,images,implementation,importNode()," - + "inputEncoding,insertBefore(),isConnected,isDefaultNamespace(),isEqualNode(),isSameNode()," - + "lastChild,lastElementChild,lastModified,linkColor,links,location,lookupNamespaceURI()," - + "lookupPrefix(),nextSibling,nodeName,nodeType,nodeValue,normalize(),NOTATION_NODE,onabort," - + "onanimationend,onanimationiteration,onanimationstart,onauxclick,onbeforecopy,onbeforecut," - + "onbeforeinput,onbeforematch,onbeforepaste,onbeforetoggle,onbeforexrselect,onblur,oncancel," - + "oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontentvisibilityautostatechange," - + "oncontextlost,oncontextmenu,oncontextrestored,oncopy,oncuechange,oncut,ondblclick,ondrag," - + "ondragend,ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied," - + "onended,onerror,onfocus,onformdata,onfreeze,onfullscreenchange,onfullscreenerror," - + "ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata," - + "onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter,onmouseleave," - + "onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpaste,onpause,onplay,onplaying," - + "onpointercancel,onpointerdown,onpointerenter,onpointerleave,onpointerlockchange," + + "hasPrivateToken(),hasRedemptionRecord(),hasStorageAccess(),head,hidden,images,implementation," + + "importNode(),inputEncoding,insertBefore(),isConnected,isDefaultNamespace(),isEqualNode()," + + "isSameNode(),lastChild,lastElementChild,lastModified,linkColor,links,location," + + "lookupNamespaceURI(),lookupPrefix(),nextSibling,nodeName,nodeType,nodeValue,normalize()," + + "NOTATION_NODE,onabort,onanimationend,onanimationiteration,onanimationstart,onauxclick," + + "onbeforecopy,onbeforecut,onbeforeinput,onbeforematch,onbeforepaste,onbeforetoggle," + + "onbeforexrselect,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose," + + "oncontentvisibilityautostatechange,oncontextlost,oncontextmenu,oncontextrestored,oncopy," + + "oncuechange,oncut,ondblclick,ondrag,ondragend,ondragenter,ondragleave,ondragover,ondragstart," + + "ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,onfreeze,onfullscreenchange," + + "onfullscreenerror,ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload," + + "onloadeddata,onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter," + + "onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpaste,onpause,onplay," + + "onplaying,onpointercancel,onpointerdown,onpointerenter,onpointerleave,onpointerlockchange," + "onpointerlockerror,onpointermove,onpointerout,onpointerover,onpointerrawupdate,onpointerup," + "onprerenderingchange,onprogress,onratechange,onreadystatechange,onreset,onresize,onresume," + "onscroll,onscrollend,onsearch,onsecuritypolicyviolation,onseeked,onseeking,onselect," @@ -4941,11 +4936,12 @@ public void document() throws Exception { + "pointerLockElement,prepend(),prerendering,previousSibling,PROCESSING_INSTRUCTION_NODE," + "queryCommandEnabled(),queryCommandIndeterm(),queryCommandState(),queryCommandSupported()," + "queryCommandValue(),querySelector(),querySelectorAll(),readyState,referrer,releaseEvents()," - + "removeChild(),removeEventListener(),replaceChild(),replaceChildren(),rootElement,scripts," - + "scrollingElement,startViewTransition(),styleSheets,TEXT_NODE,textContent,timeline,title,URL," - + "visibilityState,vlinkColor,wasDiscarded,webkitCancelFullScreen(),webkitCurrentFullScreenElement," - + "webkitExitFullscreen(),webkitFullscreenElement,webkitFullscreenEnabled,webkitHidden," - + "webkitIsFullScreen,webkitVisibilityState,write(),writeln(),xmlEncoding,xmlStandalone," + + "removeChild(),removeEventListener(),replaceChild(),replaceChildren(),requestStorageAccess()," + + "requestStorageAccessFor(),rootElement,scripts,scrollingElement,startViewTransition(),styleSheets," + + "TEXT_NODE,textContent,timeline,title,URL,visibilityState,vlinkColor,wasDiscarded," + + "webkitCancelFullScreen(),webkitCurrentFullScreenElement,webkitExitFullscreen()," + + "webkitFullscreenElement,webkitFullscreenEnabled,webkitHidden,webkitIsFullScreen," + + "webkitVisibilityState,write(),writeln(),xmlEncoding,xmlStandalone," + "xmlVersion", EDGE = "activeElement,addEventListener(),adoptedStyleSheets,adoptNode(),alinkColor,all,anchors,append()," + "appendChild(),applets,ATTRIBUTE_NODE,baseURI,bgColor,body,captureEvents(),caretRangeFromPoint()," @@ -4990,11 +4986,11 @@ public void document() throws Exception { + "queryCommandEnabled(),queryCommandIndeterm(),queryCommandState(),queryCommandSupported()," + "queryCommandValue(),querySelector(),querySelectorAll(),readyState,referrer,releaseEvents()," + "removeChild(),removeEventListener(),replaceChild(),replaceChildren(),requestStorageAccess()," - + "rootElement,scripts,scrollingElement,startViewTransition(),styleSheets,TEXT_NODE,textContent," - + "timeline,title,URL,visibilityState,vlinkColor,wasDiscarded,webkitCancelFullScreen()," - + "webkitCurrentFullScreenElement,webkitExitFullscreen(),webkitFullscreenElement," - + "webkitFullscreenEnabled,webkitHidden,webkitIsFullScreen,webkitVisibilityState,write(),writeln()," - + "xmlEncoding,xmlStandalone," + + "requestStorageAccessFor(),rootElement,scripts,scrollingElement,startViewTransition(),styleSheets," + + "TEXT_NODE,textContent,timeline,title,URL,visibilityState,vlinkColor,wasDiscarded," + + "webkitCancelFullScreen(),webkitCurrentFullScreenElement,webkitExitFullscreen()," + + "webkitFullscreenElement,webkitFullscreenEnabled,webkitHidden,webkitIsFullScreen," + + "webkitVisibilityState,write(),writeln(),xmlEncoding,xmlStandalone," + "xmlVersion", FF = "activeElement,addEventListener(),adoptedStyleSheets,adoptNode(),alinkColor,all,anchors,append()," + "appendChild(),applets,ATTRIBUTE_NODE,baseURI,bgColor,body,captureEvents()," @@ -5264,20 +5260,20 @@ public void htmlDocument() throws Exception { + "fonts,forms,fragmentDirective,fullscreen,fullscreenElement,fullscreenEnabled,getAnimations()," + "getElementById(),getElementsByClassName(),getElementsByName(),getElementsByTagName()," + "getElementsByTagNameNS(),getRootNode(),getSelection(),hasChildNodes(),hasFocus()," - + "hasPrivateToken(),hasRedemptionRecord(),head,hidden,images,implementation,importNode()," - + "inputEncoding,insertBefore(),isConnected,isDefaultNamespace(),isEqualNode(),isSameNode()," - + "lastChild,lastElementChild,lastModified,linkColor,links,location,lookupNamespaceURI()," - + "lookupPrefix(),nextSibling,nodeName,nodeType,nodeValue,normalize(),NOTATION_NODE,onabort," - + "onanimationend,onanimationiteration,onanimationstart,onauxclick,onbeforecopy,onbeforecut," - + "onbeforeinput,onbeforematch,onbeforepaste,onbeforetoggle,onbeforexrselect,onblur,oncancel," - + "oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontentvisibilityautostatechange," - + "oncontextlost,oncontextmenu,oncontextrestored,oncopy,oncuechange,oncut,ondblclick,ondrag," - + "ondragend,ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied," - + "onended,onerror,onfocus,onformdata,onfreeze,onfullscreenchange,onfullscreenerror," - + "ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata," - + "onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter,onmouseleave," - + "onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpaste,onpause,onplay,onplaying," - + "onpointercancel,onpointerdown,onpointerenter,onpointerleave,onpointerlockchange," + + "hasPrivateToken(),hasRedemptionRecord(),hasStorageAccess(),head,hidden,images,implementation," + + "importNode(),inputEncoding,insertBefore(),isConnected,isDefaultNamespace(),isEqualNode()," + + "isSameNode(),lastChild,lastElementChild,lastModified,linkColor,links,location," + + "lookupNamespaceURI(),lookupPrefix(),nextSibling,nodeName,nodeType,nodeValue,normalize()," + + "NOTATION_NODE,onabort,onanimationend,onanimationiteration,onanimationstart,onauxclick," + + "onbeforecopy,onbeforecut,onbeforeinput,onbeforematch,onbeforepaste,onbeforetoggle," + + "onbeforexrselect,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose," + + "oncontentvisibilityautostatechange,oncontextlost,oncontextmenu,oncontextrestored,oncopy," + + "oncuechange,oncut,ondblclick,ondrag,ondragend,ondragenter,ondragleave,ondragover,ondragstart," + + "ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,onfreeze,onfullscreenchange," + + "onfullscreenerror,ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload," + + "onloadeddata,onloadedmetadata,onloadstart,onlostpointercapture,onmousedown,onmouseenter," + + "onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpaste,onpause,onplay," + + "onplaying,onpointercancel,onpointerdown,onpointerenter,onpointerleave,onpointerlockchange," + "onpointerlockerror,onpointermove,onpointerout,onpointerover,onpointerrawupdate,onpointerup," + "onprerenderingchange,onprogress,onratechange,onreadystatechange,onreset,onresize,onresume," + "onscroll,onscrollend,onsearch,onsecuritypolicyviolation,onseeked,onseeking,onselect," @@ -5289,11 +5285,12 @@ public void htmlDocument() throws Exception { + "pointerLockElement,prepend(),prerendering,previousSibling,PROCESSING_INSTRUCTION_NODE," + "queryCommandEnabled(),queryCommandIndeterm(),queryCommandState(),queryCommandSupported()," + "queryCommandValue(),querySelector(),querySelectorAll(),readyState,referrer,releaseEvents()," - + "removeChild(),removeEventListener(),replaceChild(),replaceChildren(),rootElement,scripts," - + "scrollingElement,startViewTransition(),styleSheets,TEXT_NODE,textContent,timeline,title,URL," - + "visibilityState,vlinkColor,wasDiscarded,webkitCancelFullScreen(),webkitCurrentFullScreenElement," - + "webkitExitFullscreen(),webkitFullscreenElement,webkitFullscreenEnabled,webkitHidden," - + "webkitIsFullScreen,webkitVisibilityState,write(),writeln(),xmlEncoding,xmlStandalone," + + "removeChild(),removeEventListener(),replaceChild(),replaceChildren(),requestStorageAccess()," + + "requestStorageAccessFor(),rootElement,scripts,scrollingElement,startViewTransition(),styleSheets," + + "TEXT_NODE,textContent,timeline,title,URL,visibilityState,vlinkColor,wasDiscarded," + + "webkitCancelFullScreen(),webkitCurrentFullScreenElement,webkitExitFullscreen()," + + "webkitFullscreenElement,webkitFullscreenEnabled,webkitHidden,webkitIsFullScreen," + + "webkitVisibilityState,write(),writeln(),xmlEncoding,xmlStandalone," + "xmlVersion", EDGE = "activeElement,addEventListener(),adoptedStyleSheets,adoptNode(),alinkColor,all,anchors,append()," + "appendChild(),applets,ATTRIBUTE_NODE,baseURI,bgColor,body,captureEvents(),caretRangeFromPoint()," @@ -5338,11 +5335,11 @@ public void htmlDocument() throws Exception { + "queryCommandEnabled(),queryCommandIndeterm(),queryCommandState(),queryCommandSupported()," + "queryCommandValue(),querySelector(),querySelectorAll(),readyState,referrer,releaseEvents()," + "removeChild(),removeEventListener(),replaceChild(),replaceChildren(),requestStorageAccess()," - + "rootElement,scripts,scrollingElement,startViewTransition(),styleSheets,TEXT_NODE,textContent," - + "timeline,title,URL,visibilityState,vlinkColor,wasDiscarded,webkitCancelFullScreen()," - + "webkitCurrentFullScreenElement,webkitExitFullscreen(),webkitFullscreenElement," - + "webkitFullscreenEnabled,webkitHidden,webkitIsFullScreen,webkitVisibilityState,write(),writeln()," - + "xmlEncoding,xmlStandalone," + + "requestStorageAccessFor(),rootElement,scripts,scrollingElement,startViewTransition(),styleSheets," + + "TEXT_NODE,textContent,timeline,title,URL,visibilityState,vlinkColor,wasDiscarded," + + "webkitCancelFullScreen(),webkitCurrentFullScreenElement,webkitExitFullscreen()," + + "webkitFullscreenElement,webkitFullscreenEnabled,webkitHidden,webkitIsFullScreen," + + "webkitVisibilityState,write(),writeln(),xmlEncoding,xmlStandalone," + "xmlVersion", FF = "activeElement,addEventListener(),adoptedStyleSheets,adoptNode(),alinkColor,all,anchors,append()," + "appendChild(),applets,ATTRIBUTE_NODE,baseURI,bgColor,body,captureEvents()," diff --git a/src/test/java/org/htmlunit/general/HostClassNameTest.java b/src/test/java/org/htmlunit/general/HostClassNameTest.java index 66527d3a00c..083a8e618cb 100644 --- a/src/test/java/org/htmlunit/general/HostClassNameTest.java +++ b/src/test/java/org/htmlunit/general/HostClassNameTest.java @@ -4574,11 +4574,7 @@ public void isNaN() throws Exception { * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "exception", - CHROME = "function Iterator() { [native code] }", - EDGE = "function Iterator() { [native code] }") - @HtmlUnitNYI(CHROME = "exception", - EDGE = "exception") + @Alerts("exception") public void iterator() throws Exception { test("Iterator"); } diff --git a/src/test/java/org/htmlunit/general/HostTypeOfTest.java b/src/test/java/org/htmlunit/general/HostTypeOfTest.java index 4b670fed984..9641ebb4a8a 100644 --- a/src/test/java/org/htmlunit/general/HostTypeOfTest.java +++ b/src/test/java/org/htmlunit/general/HostTypeOfTest.java @@ -4539,11 +4539,7 @@ public void isNaN() throws Exception { * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "undefined", - CHROME = "function", - EDGE = "function") - @HtmlUnitNYI(CHROME = "undefined", - EDGE = "undefined") + @Alerts("undefined") public void iterator() throws Exception { test("Iterator"); } diff --git a/src/test/java/org/htmlunit/javascript/IteratorTest.java b/src/test/java/org/htmlunit/javascript/IteratorTest.java index 3ba984ff286..0499b12322b 100644 --- a/src/test/java/org/htmlunit/javascript/IteratorTest.java +++ b/src/test/java/org/htmlunit/javascript/IteratorTest.java @@ -17,7 +17,6 @@ import org.htmlunit.WebDriverTestCase; import org.htmlunit.junit.BrowserRunner; import org.htmlunit.junit.BrowserRunner.Alerts; -import org.htmlunit.junit.BrowserRunner.HtmlUnitNYI; import org.junit.Test; import org.junit.runner.RunWith; @@ -33,11 +32,7 @@ public class IteratorTest extends WebDriverTestCase { * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = {"undefined", "undefined"}, - CHROME = {"function", "function"}, - EDGE = {"function", "function"}) - @HtmlUnitNYI(CHROME = {"undefined", "undefined"}, - EDGE = {"undefined", "undefined"}) + @Alerts({"undefined", "undefined"}) public void windowIterator() throws Exception { final String html = "\n" diff --git a/src/test/java/org/htmlunit/javascript/host/Window2Test.java b/src/test/java/org/htmlunit/javascript/host/Window2Test.java index 38b040a63c4..81455bf527c 100644 --- a/src/test/java/org/htmlunit/javascript/host/Window2Test.java +++ b/src/test/java/org/htmlunit/javascript/host/Window2Test.java @@ -802,7 +802,7 @@ public void IEScriptEngineXxx() throws Exception { */ @Test @Alerts(CHROME = {"true", "true", "138", "true", "true", "16"}, - EDGE = {"true", "true", "131", "true", "true", "71"}, + EDGE = {"true", "true", "138", "true", "true", "64"}, FF = {"true", "true", "91", "true", "true", "12"}, FF_ESR = {"true", "true", "91", "true", "true", "12"}, IE = {"true", "true", "86", "true", "true", "16"}) @@ -913,7 +913,7 @@ public void setOuterHeight() throws Exception { */ @Test @Alerts(CHROME = {"630", "1256", "613", "1239"}, - EDGE = {"637", "1201", "622", "1186"}, + EDGE = {"630", "1208", "615", "1193"}, FF = {"677", "1260", "660", "1243"}, FF_ESR = {"677", "1260", "660", "1243"}, IE = {"682", "1256", "665", "1239"}) diff --git a/src/test/java/org/htmlunit/javascript/host/css/property/ElementClientHeightTest.java b/src/test/java/org/htmlunit/javascript/host/css/property/ElementClientHeightTest.java index 16af000fb14..8bd04e7beb9 100644 --- a/src/test/java/org/htmlunit/javascript/host/css/property/ElementClientHeightTest.java +++ b/src/test/java/org/htmlunit/javascript/host/css/property/ElementClientHeightTest.java @@ -694,7 +694,7 @@ public void form() throws Exception { */ @Test @Alerts(CHROME = "674", - EDGE = "637", + EDGE = "630", FF = "677", FF_ESR = "677", IE = "682") diff --git a/src/test/java/org/htmlunit/javascript/host/html/HTMLFormElementTest.java b/src/test/java/org/htmlunit/javascript/host/html/HTMLFormElementTest.java index 0183e600f0f..81ecae150dc 100644 --- a/src/test/java/org/htmlunit/javascript/host/html/HTMLFormElementTest.java +++ b/src/test/java/org/htmlunit/javascript/host/html/HTMLFormElementTest.java @@ -1368,10 +1368,7 @@ private void changesAfterCallToSubmit(final String id, final String expectedUrlS */ @Test @Alerts(DEFAULT = "2", - CHROME = "3", - EDGE = "3", IE = "3") - // sometimes real chrome returns 2 public void submit_twice() throws Exception { final String html = "\n" + "\n" diff --git a/src/test/java/org/htmlunit/javascript/host/intl/NumberFormat2Test.java b/src/test/java/org/htmlunit/javascript/host/intl/NumberFormat2Test.java index 20360c35d2b..cda3f916ddb 100644 --- a/src/test/java/org/htmlunit/javascript/host/intl/NumberFormat2Test.java +++ b/src/test/java/org/htmlunit/javascript/host/intl/NumberFormat2Test.java @@ -334,7 +334,6 @@ public void format_ar_ye() throws Exception { */ @Test @Alerts(DEFAULT = "31,415.927", - EDGE = "31\u00a0415,927", FF = "31\u00a0415,927", FF_ESR = "31\u00a0415,927", IE = "31\u00a0415,927") @@ -347,7 +346,6 @@ public void format_be() throws Exception { */ @Test @Alerts(DEFAULT = "31,415.927", - EDGE = "31\u00a0415,927", FF = "31\u00a0415,927", FF_ESR = "31\u00a0415,927", IE = "31\u00a0415,927") @@ -976,7 +974,6 @@ public void format_in_id() throws Exception { */ @Test @Alerts(DEFAULT = "31,415.927", - EDGE = "31.415,927", FF = "31.415,927", FF_ESR = "31.415,927", IE = "31.415,927") @@ -989,7 +986,6 @@ public void format_is() throws Exception { */ @Test @Alerts(DEFAULT = "31,415.927", - EDGE = "31.415,927", FF = "31.415,927", FF_ESR = "31.415,927", IE = "31.415,927") @@ -1119,7 +1115,6 @@ public void format_lv_lv() throws Exception { */ @Test @Alerts(DEFAULT = "31,415.927", - EDGE = "31.415,927", FF = "31.415,927", FF_ESR = "31.415,927", IE = "31.415,927") @@ -1132,7 +1127,6 @@ public void format_mk() throws Exception { */ @Test @Alerts(DEFAULT = "31,415.927", - EDGE = "31.415,927", FF = "31.415,927", FF_ESR = "31.415,927", IE = "31.415,927") diff --git a/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Chrome.txt b/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Chrome.txt index 47181b6be02..192514df5ba 100644 --- a/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Chrome.txt +++ b/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Chrome.txt @@ -198,20 +198,20 @@ fontWeight=:400 forcedColorAdjust=:auto gap=:normal grid=:none / none / none / row / auto / auto -gridArea=:auto / auto / auto / auto +gridArea=:auto gridAutoColumns=:auto gridAutoFlow=:row gridAutoRows=:auto -gridColumn=:auto / auto +gridColumn=:auto gridColumnEnd=:auto gridColumnGap=:normal gridColumnStart=:auto gridGap=:normal normal -gridRow=:auto / auto +gridRow=:auto gridRowEnd=:auto gridRowGap=:normal gridRowStart=:auto -gridTemplate=:none / none / none +gridTemplate=:none gridTemplateAreas=:none gridTemplateColumns=:none gridTemplateRows=:none @@ -283,7 +283,7 @@ offset=:none 0px auto 0deg offsetAnchor=:auto offsetDistance=:0px offsetPath=:none -offsetPosition=:auto +offsetPosition=:normal offsetRotate=:auto 0deg opacity=:1 order=:0 diff --git a/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Edge.txt b/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Edge.txt index 2e2a3cac971..3bd989b8d63 100644 --- a/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Edge.txt +++ b/src/test/resources/org/htmlunit/javascript/host/css/ComputedCSSStyleDeclarationTest.properties.Edge.txt @@ -198,20 +198,20 @@ fontWeight=:400 forcedColorAdjust=:auto gap=:normal grid=:none / none / none / row / auto / auto -gridArea=:auto / auto / auto / auto +gridArea=:auto gridAutoColumns=:auto gridAutoFlow=:row gridAutoRows=:auto -gridColumn=:auto / auto +gridColumn=:auto gridColumnEnd=:auto gridColumnGap=:normal gridColumnStart=:auto gridGap=:normal normal -gridRow=:auto / auto +gridRow=:auto gridRowEnd=:auto gridRowGap=:normal gridRowStart=:auto -gridTemplate=:none / none / none +gridTemplate=:none gridTemplateAreas=:none gridTemplateColumns=:none gridTemplateRows=:none @@ -283,7 +283,7 @@ offset=:none 0px auto 0deg offsetAnchor=:auto offsetDistance=:0px offsetPath=:none -offsetPosition=:auto +offsetPosition=:normal offsetRotate=:auto 0deg opacity=:1 order=:0