View Javadoc
1   /*
2    * Copyright (c) 2002-2025 Gargoyle Software Inc.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * https://www.apache.org/licenses/LICENSE-2.0
8    *
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS,
11   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12   * See the License for the specific language governing permissions and
13   * limitations under the License.
14   */
15  package org.htmlunit.general;
16  
17  import static java.nio.charset.StandardCharsets.ISO_8859_1;
18  
19  import java.awt.Color;
20  import java.awt.GradientPaint;
21  import java.io.File;
22  import java.io.IOException;
23  import java.lang.reflect.Method;
24  import java.util.ArrayList;
25  import java.util.Arrays;
26  import java.util.Collections;
27  import java.util.Comparator;
28  import java.util.List;
29  
30  import javax.imageio.ImageIO;
31  
32  import org.apache.commons.io.FileUtils;
33  import org.htmlunit.BrowserVersion;
34  import org.htmlunit.WebDriverTestCase;
35  import org.htmlunit.javascript.host.Screen;
36  import org.htmlunit.javascript.host.crypto.Crypto;
37  import org.htmlunit.javascript.host.crypto.SubtleCrypto;
38  import org.htmlunit.javascript.host.css.ComputedCSSStyleDeclaration;
39  import org.htmlunit.javascript.host.dom.CDATASection;
40  import org.htmlunit.javascript.host.dom.NodeList;
41  import org.htmlunit.javascript.host.dom.XPathEvaluator;
42  import org.htmlunit.javascript.host.dom.XPathResult;
43  import org.htmlunit.javascript.host.html.HTMLCollection;
44  import org.htmlunit.javascript.host.performance.Performance;
45  import org.htmlunit.junit.BrowserRunner;
46  import org.htmlunit.junit.BrowserVersionClassRunner;
47  import org.htmlunit.junit.annotation.Alerts;
48  import org.htmlunit.junit.annotation.HtmlUnitNYI;
49  import org.jfree.chart.ChartFactory;
50  import org.jfree.chart.JFreeChart;
51  import org.jfree.chart.axis.NumberAxis;
52  import org.jfree.chart.plot.CategoryPlot;
53  import org.jfree.chart.plot.PlotOrientation;
54  import org.jfree.chart.renderer.category.LayeredBarRenderer;
55  import org.jfree.chart.util.SortOrder;
56  import org.jfree.data.category.DefaultCategoryDataset;
57  import org.junit.AfterClass;
58  import org.junit.BeforeClass;
59  import org.junit.Test;
60  import org.junit.runner.RunWith;
61  
62  /**
63   * Tests own properties of an object.
64   *
65   * @author Ronald Brill
66   */
67  @RunWith(BrowserRunner.class)
68  public class ElementOwnPropertiesTest extends WebDriverTestCase {
69  
70      private static BrowserVersion BROWSER_VERSION_;
71  
72      private void test(final String tagName) throws Exception {
73          testString("", "document.createElement('" + tagName + "')");
74      }
75  
76      private void testString(final String preparation, final String string) throws Exception {
77          final String html = DOCTYPE_HTML
78                  + "<html><head><script>\n"
79                  + LOG_TEXTAREA_FUNCTION
80                  + "  function test(event) {\n"
81                  + "    var xmlDocument = document.implementation.createDocument('', '', null);\n"
82                  + "    var element = xmlDocument.createElement('wakwak');\n"
83                  + "    var unknown = document.createElement('harhar');\n"
84                  + "    var div = document.createElement('div');\n"
85                  + "    var svg = document.getElementById('mySvg');\n"
86                  + "    try{\n"
87                   + "      " + preparation + "\n"
88                  + "      process(" + string + ");\n"
89                  + "    } catch(e) {logEx(e); return;}\n"
90                  + "  }\n"
91                  + "\n"
92                  + "  /*\n"
93                  + "   * Alerts all properties (including functions) of the specified object.\n"
94                  + "   *\n"
95                  + "   * @param object the object to write the property of\n"
96                  + "   */\n"
97                  + "  function process(object) {\n"
98                  + "    var all = [];\n"
99                  + "    var props = Object.getOwnPropertyNames(object.constructor.prototype);\n"
100                 + "    for (i = 0; i < props.length; i++) {\n"
101                 + "      var property = props[i];\n"
102 
103                 // TODO remove if fixed in Rhino
104                 + "      if ('__proto__' == property) continue;\n"
105 
106                 + "      let desc = Object.getOwnPropertyDescriptor(object.constructor.prototype, property);\n"
107                 + "      if (desc.get === undefined && typeof object[property] == 'function') {\n"
108                 + "        all.push(property + '()');\n"
109                 + "      } else {\n"
110                 + "        property += '[';\n"
111                 + "        if (desc.get != undefined) property += 'G';\n"
112                 + "        if (desc.set != undefined) property += 'S';\n"
113                 + "        if (desc.writable) property += 'W';\n"
114                 + "        if (desc.configurable) property += 'C';\n"
115                 + "        if (desc.enumerable) property += 'E';\n"
116                 + "        property += ']'\n"
117                 + "        all.push(property);\n"
118                 + "      }\n"
119                 + "    }\n"
120 
121                 + "    all.sort(sortFunction);\n"
122                 + "    if (all.length == 0) { all = '-' };\n"
123                 + "    log(all);\n"
124                 + "  }\n"
125                 + "  function sortFunction(s1, s2) {\n"
126                 + "    var s1lc = s1.toLowerCase();\n"
127                 + "    var s2lc =  s2.toLowerCase();\n"
128                 + "    if (s1lc > s2lc) { return 1; }\n"
129                 + "    if (s1lc < s2lc) { return -1; }\n"
130                 + "    return s1 > s2 ? 1 : -1;\n"
131                 + "  }\n"
132                 + "</script></head>\n"
133                 + "<body onload='test(event)'>\n"
134                 + "  <svg xmlns='http://www.w3.org/2000/svg' version='1.1'>\n"
135                 + "    <invalid id='mySvg'/>\n"
136                 + "  </svg>\n"
137 
138                 + "  <style>\n"
139                 + "    @page { margin: 1cm; }\n"
140                 + "  </style>\n"
141                 + "  <style>\n"
142                 + "    @media screen { p { background-color:#FFFFFF; }};\n"
143                 + "  </style>\n"
144                 + "  <style>\n"
145                 + "    @font-face { font-family: Delicious; src: url('Delicious-Bold.otf'); };\n"
146                 + "  </style>\n"
147                 + "  <style>\n"
148                 + "    @import 'imp.css';\n"
149                 + "  </style>\n"
150                 + "  <style>\n"
151                 + "    h3 { color: blue;  }\n"
152                 + "  </style>\n"
153 
154                 + "  <form name='myForm', id='myFormId'>"
155                 + "    <input type='radio' name='first' /><input type='radio' name='first'/>"
156                 + "    <input id='fileItem' type='file' />"
157                 + "  </form>"
158 
159                 + LOG_TEXTAREA
160                 + "</body></html>";
161 
162         if (BROWSER_VERSION_ == null) {
163             BROWSER_VERSION_ = getBrowserVersion();
164         }
165 
166         loadPageVerifyTextArea2(html);
167     }
168 
169     private static List<String> stringAsArray(final String string) {
170         if (string.isEmpty()) {
171             return Collections.emptyList();
172         }
173         return Arrays.asList(string.split(","));
174     }
175 
176     /**
177      * Resets browser-specific values.
178      */
179     @BeforeClass
180     public static void beforeClass() {
181         BROWSER_VERSION_ = null;
182     }
183 
184     /**
185      * Saves HTML and PNG files.
186      *
187      * @throws IOException if an error occurs
188      */
189     @AfterClass
190     public static void saveAll() throws IOException {
191         final DefaultCategoryDataset dataset = new DefaultCategoryDataset();
192         final int[] counts = {0, 0};
193         final StringBuilder html = new StringBuilder();
194         html.setLength(0);
195 
196         collectStatistics(BROWSER_VERSION_, dataset, html, counts);
197         saveChart(dataset);
198 
199         FileUtils.writeStringToFile(new File(getTargetDirectory()
200                 + "/ownproperties-" + BROWSER_VERSION_.getNickname() + ".html"),
201                 htmlHeader()
202                     .append(overview(counts))
203                     .append(htmlDetailsHeader())
204                     .append(html)
205                     .append(htmlDetailsFooter())
206                     .append(htmlFooter()).toString(), ISO_8859_1);
207     }
208 
209     private static void collectStatistics(final BrowserVersion browserVersion, final DefaultCategoryDataset dataset,
210             final StringBuilder html, final int[] counts) {
211         final Method[] methods = ElementOwnPropertiesTest.class.getMethods();
212         Arrays.sort(methods, Comparator.comparing(Method::getName));
213         for (final Method method : methods) {
214             if (method.isAnnotationPresent(Test.class)) {
215 
216                 final Alerts alerts = method.getAnnotation(Alerts.class);
217                 String[] expectedAlerts = {};
218                 if (BrowserVersionClassRunner.isDefined(alerts.value())) {
219                     expectedAlerts = alerts.value();
220                 }
221                 if (browserVersion == BrowserVersion.EDGE) {
222                     expectedAlerts = BrowserVersionClassRunner
223                             .firstDefinedOrGiven(expectedAlerts, alerts.EDGE(), alerts.DEFAULT());
224                 }
225                 else if (browserVersion == BrowserVersion.FIREFOX_ESR) {
226                     expectedAlerts = BrowserVersionClassRunner
227                             .firstDefinedOrGiven(expectedAlerts, alerts.FF_ESR(), alerts.DEFAULT());
228                 }
229                 else if (browserVersion == BrowserVersion.FIREFOX) {
230                     expectedAlerts = BrowserVersionClassRunner
231                             .firstDefinedOrGiven(expectedAlerts, alerts.FF(), alerts.DEFAULT());
232                 }
233                 else if (browserVersion == BrowserVersion.CHROME) {
234                     expectedAlerts = BrowserVersionClassRunner
235                             .firstDefinedOrGiven(expectedAlerts, alerts.CHROME(), alerts.DEFAULT());
236                 }
237 
238                 final List<String> realProperties = stringAsArray(String.join(",", expectedAlerts));
239                 List<String> simulatedProperties = stringAsArray(String.join(",", expectedAlerts));
240 
241                 final HtmlUnitNYI htmlUnitNYI = method.getAnnotation(HtmlUnitNYI.class);
242                 String[] nyiAlerts = {};
243                 if (htmlUnitNYI != null) {
244                     if (browserVersion == BrowserVersion.EDGE) {
245                         nyiAlerts = BrowserVersionClassRunner.firstDefinedOrGiven(expectedAlerts, htmlUnitNYI.EDGE());
246                     }
247                     else if (browserVersion == BrowserVersion.FIREFOX_ESR) {
248                         nyiAlerts = BrowserVersionClassRunner.firstDefinedOrGiven(expectedAlerts, htmlUnitNYI.FF_ESR());
249                     }
250                     else if (browserVersion == BrowserVersion.FIREFOX) {
251                         nyiAlerts = BrowserVersionClassRunner.firstDefinedOrGiven(expectedAlerts, htmlUnitNYI.FF());
252                     }
253                     else if (browserVersion == BrowserVersion.CHROME) {
254                         nyiAlerts = BrowserVersionClassRunner.firstDefinedOrGiven(expectedAlerts, htmlUnitNYI.CHROME());
255                     }
256 
257                     simulatedProperties = stringAsArray(String.join(",", nyiAlerts));
258                 }
259 
260                 final List<String> erroredProperties = new ArrayList<>(simulatedProperties);
261                 erroredProperties.removeAll(realProperties);
262 
263                 final List<String> implementedProperties = new ArrayList<>(simulatedProperties);
264                 implementedProperties.retainAll(realProperties);
265 
266                 counts[1] += implementedProperties.size();
267                 counts[0] += realProperties.size();
268 
269                 htmlDetails(method.getName(), html, realProperties, implementedProperties, erroredProperties);
270 
271                 dataset.addValue(implementedProperties.size(), "Implemented", method.getName());
272                 dataset.addValue(realProperties.size(),
273                         browserVersion.getNickname().replace("FF", "Firefox "),
274                        method.getName());
275                 dataset.addValue(erroredProperties.size(), "Should not be implemented", method.getName());
276             }
277         }
278     }
279 
280     private static void saveChart(final DefaultCategoryDataset dataset) throws IOException {
281         final JFreeChart chart = ChartFactory.createBarChart(
282             "HtmlUnit implemented properties and methods for " + BROWSER_VERSION_.getNickname(), "Objects",
283             "Count", dataset, PlotOrientation.HORIZONTAL, true, true, false);
284         final CategoryPlot plot = (CategoryPlot) chart.getPlot();
285         final NumberAxis axis = (NumberAxis) plot.getRangeAxis();
286         axis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());
287         final LayeredBarRenderer renderer = new LayeredBarRenderer();
288         plot.setRenderer(renderer);
289         plot.setRowRenderingOrder(SortOrder.DESCENDING);
290         renderer.setSeriesPaint(0, new GradientPaint(0, 0, Color.green, 0, 0, new Color(0, 64, 0)));
291         renderer.setSeriesPaint(1, new GradientPaint(0, 0, Color.blue, 0, 0, new Color(0, 0, 64)));
292         renderer.setSeriesPaint(2, new GradientPaint(0, 0, Color.red, 0, 0, new Color(64, 0, 0)));
293         ImageIO.write(chart.createBufferedImage(1200, 2400), "png",
294             new File(getTargetDirectory() + "/ownproperties-" + BROWSER_VERSION_.getNickname() + ".png"));
295     }
296 
297     /**
298      * Returns the 'target' directory.
299      * @return the 'target' directory
300      */
301     public static String getTargetDirectory() {
302         final String dirName = "./target";
303         final File dir = new File(dirName);
304         if (!dir.exists()) {
305             if (!dir.mkdir()) {
306                 throw new RuntimeException("Could not create artifacts directory");
307             }
308         }
309         return dirName;
310     }
311 
312     private static StringBuilder htmlHeader() {
313         final StringBuilder html = new StringBuilder();
314         html.append("<html><head>\n");
315         html.append("<style type=\"text/css\">\n");
316         html.append("table.bottomBorder { border-collapse:collapse; }\n");
317         html.append("table.bottomBorder td, table.bottomBorder th { "
318                             + "border-bottom:1px dotted black;padding:5px; }\n");
319         html.append("table.bottomBorder td.numeric { text-align:right; }\n");
320         html.append("</style>\n");
321         html.append("</head><body>\n");
322 
323         html.append("<div align='center'>").append("<h2>")
324         .append("HtmlUnit implemented properties and methods for " + BROWSER_VERSION_.getNickname())
325         .append("</h2>").append("</div>\n");
326         return html;
327     }
328 
329     private static StringBuilder overview(final int[] counts) {
330         final StringBuilder html = new StringBuilder();
331         html.append("<table class='bottomBorder'>");
332         html.append("<tr>\n");
333 
334         html.append("<th>Total Implemented:</th>\n");
335         html.append("<td>" + counts[1])
336             .append(" (" + Math.round(((double) counts[1]) / counts[0] * 100))
337             .append("%)</td>\n");
338 
339         html.append("</tr>\n");
340         html.append("</table>\n");
341 
342         html.append("<p><br></p>\n");
343 
344         return html;
345     }
346 
347     private static StringBuilder htmlFooter() {
348         final StringBuilder html = new StringBuilder();
349 
350         html.append("<br>").append("Legend:").append("<br>")
351         .append("<span style='color: blue'>").append("To be implemented").append("</span>").append("<br>")
352         .append("<span style='color: green'>").append("Implemented").append("</span>").append("<br>")
353         .append("<span style='color: red'>").append("Should not be implemented").append("</span>");
354         html.append("\n");
355 
356         html.append("</body>\n");
357         html.append("</html>\n");
358         return html;
359     }
360 
361     private static StringBuilder htmlDetailsHeader() {
362         final StringBuilder html = new StringBuilder();
363 
364         html.append("<table class='bottomBorder' width='100%'>");
365         html.append("<tr>\n");
366         html.append("<th>Class</th><th>Methods/Properties</th><th>Counts</th>\n");
367         html.append("</tr>");
368         return html;
369     }
370 
371     private static StringBuilder htmlDetails(final String name, final StringBuilder html,
372             final List<String> realProperties,
373             final List<String> implementedProperties, final List<String> erroredProperties) {
374         html.append("<tr>").append('\n').append("<td rowspan='2'>").append("<a name='" + name + "'>").append(name)
375             .append("</a>").append("</td>").append('\n').append("<td>");
376         int implementedCount = 0;
377 
378         if (realProperties.isEmpty()) {
379             html.append("&nbsp;");
380         }
381         else if (realProperties.size() == 1
382                 && realProperties.contains("exception")
383                 && implementedProperties.size() == 1
384                 && implementedProperties.contains("exception")
385                 && erroredProperties.size() == 0) {
386             html.append("&nbsp;");
387         }
388         else {
389             for (int i = 0; i < realProperties.size(); i++) {
390                 final String color;
391                 if (implementedProperties.contains(realProperties.get(i))) {
392                     color = "green";
393                     implementedCount++;
394                 }
395                 else {
396                     color = "blue";
397                 }
398                 html.append("<span style='color: " + color + "'>").append(realProperties.get(i)).append("</span>");
399                 if (i < realProperties.size() - 1) {
400                     html.append(',').append(' ');
401                 }
402             }
403         }
404 
405         html.append("</td>").append("<td>").append(implementedCount).append('/')
406             .append(realProperties.size()).append("</td>").append("</tr>").append('\n');
407         html.append("<tr>").append("<td>");
408         for (int i = 0; i < erroredProperties.size(); i++) {
409             html.append("<span style='color: red'>").append(erroredProperties.get(i)).append("</span>");
410             if (i < erroredProperties.size() - 1) {
411                 html.append(',').append(' ');
412             }
413         }
414         if (erroredProperties.isEmpty()) {
415             html.append("&nbsp;");
416         }
417         html.append("</td>")
418             .append("<td>").append(erroredProperties.size()).append("</td>").append("</tr>\n");
419 
420         return html;
421     }
422 
423     private static StringBuilder htmlDetailsFooter() {
424         final StringBuilder html = new StringBuilder();
425         html.append("</table>");
426         return html;
427     }
428 
429     /**
430      * @throws Exception if the test fails
431      */
432     @Test
433     @Alerts(CHROME = "assignedSlot[GCE],constructor(),splitText(),wholeText[GCE]",
434             EDGE = "assignedSlot[GCE],constructor(),splitText(),wholeText[GCE]",
435             FF = "assignedSlot[GCE],constructor(),splitText(),wholeText[GCE]",
436             FF_ESR = "assignedSlot[GCE],constructor(),splitText(),wholeText[GCE]")
437     @HtmlUnitNYI(CHROME = "constructor(),splitText(),wholeText[GCE]",
438             EDGE = "constructor(),splitText(),wholeText[GCE]",
439             FF_ESR = "constructor(),splitText(),wholeText[GCE]",
440             FF = "constructor(),splitText(),wholeText[GCE]")
441     public void text() throws Exception {
442         testString("", "document.createTextNode('some text')");
443     }
444 
445     /**
446      * @throws Exception if the test fails
447      */
448     @Test
449     @Alerts(CHROME = "constructor(),localName[GCE],name[GCE],namespaceURI[GCE],ownerElement[GCE],prefix[GCE],"
450                 + "specified[GCE],"
451                 + "value[GSCE]",
452             EDGE = "constructor(),localName[GCE],name[GCE],namespaceURI[GCE],ownerElement[GCE],prefix[GCE],"
453                 + "specified[GCE],"
454                 + "value[GSCE]",
455             FF = "constructor(),localName[GCE],name[GCE],namespaceURI[GCE],ownerElement[GCE],prefix[GCE],"
456                 + "specified[GCE],"
457                 + "value[GSCE]",
458             FF_ESR = "constructor(),localName[GCE],name[GCE],namespaceURI[GCE],ownerElement[GCE],prefix[GCE],"
459                 + "specified[GCE],"
460                 + "value[GSCE]")
461     public void attr() throws Exception {
462         testString("", "document.createAttribute('some_attrib')");
463     }
464 
465     /**
466      * @throws Exception if the test fails
467      */
468     @Test
469     @Alerts(CHROME = "constructor()",
470             EDGE = "constructor()",
471             FF = "constructor()",
472             FF_ESR = "constructor()")
473     public void comment() throws Exception {
474         testString("", "document.createComment('come_comment')");
475     }
476 
477     /**
478      * @throws Exception if the test fails
479      */
480     @Test
481     @Alerts(CHROME = "constructor()",
482             EDGE = "constructor()",
483             FF = "constructor()",
484             FF_ESR = "constructor()")
485     public void unknown() throws Exception {
486         testString("", "unknown");
487     }
488 
489     /**
490      * @throws Exception if the test fails
491      */
492     @Test
493     @Alerts(CHROME = "constructor()",
494             EDGE = "constructor()",
495             FF = "constructor()",
496             FF_ESR = "constructor()")
497     public void htmlElement() throws Exception {
498         testString("", "unknown");
499     }
500 
501     /**
502      * Test {@link org.htmlunit.javascript.host.Element}.
503      *
504      * @throws Exception if the test fails
505      */
506     @Test
507     @Alerts(CHROME = "after(),animate(),append(),ariaActiveDescendantElement[GSCE],ariaAtomic[GSCE],"
508                 + "ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE],ariaBrailleRoleDescription[GSCE],ariaBusy[GSCE],"
509                 + "ariaChecked[GSCE],ariaColCount[GSCE],ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],"
510                 + "ariaControlsElements[GSCE],ariaCurrent[GSCE],ariaDescribedByElements[GSCE],ariaDescription[GSCE],"
511                 + "ariaDetailsElements[GSCE],ariaDisabled[GSCE],ariaErrorMessageElements[GSCE],ariaExpanded[GSCE],"
512                 + "ariaFlowToElements[GSCE],ariaHasPopup[GSCE],ariaHidden[GSCE],ariaInvalid[GSCE],"
513                 + "ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLabelledByElements[GSCE],ariaLevel[GSCE],"
514                 + "ariaLive[GSCE],ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],"
515                 + "ariaOrientation[GSCE],ariaPlaceholder[GSCE],ariaPosInSet[GSCE],ariaPressed[GSCE],"
516                 + "ariaReadOnly[GSCE],ariaRelevant[GSCE],ariaRequired[GSCE],ariaRoleDescription[GSCE],"
517                 + "ariaRowCount[GSCE],ariaRowIndex[GSCE],ariaRowIndexText[GSCE],ariaRowSpan[GSCE],"
518                 + "ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],ariaValueMax[GSCE],ariaValueMin[GSCE],"
519                 + "ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
520                 + "checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],"
521                 + "clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),computedStyleMap(),"
522                 + "constructor(),currentCSSZoom[GCE],elementTiming[GSCE],firstElementChild[GCE],getAnimations(),"
523                 + "getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
524                 + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
525                 + "getElementsByTagNameNS(),getHTML(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
526                 + "hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
527                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),moveBefore(),"
528                 + "namespaceURI[GCE],nextElementSibling[GCE],onbeforecopy[GSCE],onbeforecut[GSCE],"
529                 + "onbeforepaste[GSCE],onfullscreenchange[GSCE],onfullscreenerror[GSCE],onsearch[GSCE],"
530                 + "onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],"
531                 + "prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),"
532                 + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
533                 + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),"
534                 + "scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],"
535                 + "scrollTo(),scrollTop[GSCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
536                 + "setAttributeNodeNS(),setAttributeNS(),setHTMLUnsafe(),setPointerCapture(),shadowRoot[GCE],"
537                 + "slot[GSCE],tagName[GCE],toggleAttribute(),webkitMatchesSelector(),webkitRequestFullScreen(),"
538                 + "webkitRequestFullscreen()",
539             EDGE = "after(),animate(),append(),ariaActiveDescendantElement[GSCE],ariaAtomic[GSCE],"
540                 + "ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE],ariaBrailleRoleDescription[GSCE],ariaBusy[GSCE],"
541                 + "ariaChecked[GSCE],ariaColCount[GSCE],ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],"
542                 + "ariaControlsElements[GSCE],ariaCurrent[GSCE],ariaDescribedByElements[GSCE],ariaDescription[GSCE],"
543                 + "ariaDetailsElements[GSCE],ariaDisabled[GSCE],ariaErrorMessageElements[GSCE],ariaExpanded[GSCE],"
544                 + "ariaFlowToElements[GSCE],ariaHasPopup[GSCE],ariaHidden[GSCE],ariaInvalid[GSCE],"
545                 + "ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLabelledByElements[GSCE],ariaLevel[GSCE],"
546                 + "ariaLive[GSCE],ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],"
547                 + "ariaOrientation[GSCE],ariaPlaceholder[GSCE],ariaPosInSet[GSCE],ariaPressed[GSCE],"
548                 + "ariaReadOnly[GSCE],ariaRelevant[GSCE],ariaRequired[GSCE],ariaRoleDescription[GSCE],"
549                 + "ariaRowCount[GSCE],ariaRowIndex[GSCE],ariaRowIndexText[GSCE],ariaRowSpan[GSCE],"
550                 + "ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],ariaValueMax[GSCE],ariaValueMin[GSCE],"
551                 + "ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
552                 + "checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],"
553                 + "clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),computedStyleMap(),"
554                 + "constructor(),currentCSSZoom[GCE],elementTiming[GSCE],firstElementChild[GCE],getAnimations(),"
555                 + "getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
556                 + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
557                 + "getElementsByTagNameNS(),getHTML(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
558                 + "hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
559                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),moveBefore(),"
560                 + "namespaceURI[GCE],nextElementSibling[GCE],onbeforecopy[GSCE],onbeforecut[GSCE],"
561                 + "onbeforepaste[GSCE],onfullscreenchange[GSCE],onfullscreenerror[GSCE],onsearch[GSCE],"
562                 + "onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],"
563                 + "prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),"
564                 + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
565                 + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),"
566                 + "scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],"
567                 + "scrollTo(),scrollTop[GSCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
568                 + "setAttributeNodeNS(),setAttributeNS(),setHTMLUnsafe(),setPointerCapture(),shadowRoot[GCE],"
569                 + "slot[GSCE],tagName[GCE],toggleAttribute(),webkitMatchesSelector(),webkitRequestFullScreen(),"
570                 + "webkitRequestFullscreen()",
571             FF = "after(),animate(),append(),ariaActiveDescendantElement[GSCE],ariaAtomic[GSCE],"
572                 + "ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE],ariaBrailleRoleDescription[GSCE],ariaBusy[GSCE],"
573                 + "ariaChecked[GSCE],ariaColCount[GSCE],ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],"
574                 + "ariaControlsElements[GSCE],ariaCurrent[GSCE],ariaDescribedByElements[GSCE],ariaDescription[GSCE],"
575                 + "ariaDetailsElements[GSCE],ariaDisabled[GSCE],ariaErrorMessageElements[GSCE],ariaExpanded[GSCE],"
576                 + "ariaFlowToElements[GSCE],ariaHasPopup[GSCE],ariaHidden[GSCE],ariaInvalid[GSCE],"
577                 + "ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLabelledByElements[GSCE],ariaLevel[GSCE],"
578                 + "ariaLive[GSCE],ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],"
579                 + "ariaOrientation[GSCE],ariaOwnsElements[GSCE],ariaPlaceholder[GSCE],ariaPosInSet[GSCE],"
580                 + "ariaPressed[GSCE],ariaReadOnly[GSCE],ariaRelevant[GSCE],ariaRequired[GSCE],"
581                 + "ariaRoleDescription[GSCE],ariaRowCount[GSCE],ariaRowIndex[GSCE],ariaRowIndexText[GSCE],"
582                 + "ariaRowSpan[GSCE],ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],ariaValueMax[GSCE],"
583                 + "ariaValueMin[GSCE],ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],attachShadow(),"
584                 + "attributes[GCE],before(),checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],"
585                 + "className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),"
586                 + "constructor(),currentCSSZoom[GCE],firstElementChild[GCE],getAnimations(),getAttribute(),"
587                 + "getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
588                 + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
589                 + "getElementsByTagNameNS(),getHTML(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
590                 + "hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
591                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),mozMatchesSelector(),"
592                 + "mozRequestFullScreen(),namespaceURI[GCE],nextElementSibling[GCE],onfullscreenchange[GSCE],"
593                 + "onfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],prefix[GCE],prepend(),"
594                 + "previousElementSibling[GCE],querySelector(),querySelectorAll(),releaseCapture(),"
595                 + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
596                 + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),"
597                 + "scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],scrollTo(),"
598                 + "scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
599                 + "setAttributeNodeNS(),setAttributeNS(),setCapture(),setHTMLUnsafe(),setPointerCapture(),"
600                 + "shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute(),"
601                 + "webkitMatchesSelector()",
602             FF_ESR = "after(),animate(),append(),ariaAtomic[GSCE],ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE],"
603                 + "ariaBrailleRoleDescription[GSCE],ariaBusy[GSCE],ariaChecked[GSCE],ariaColCount[GSCE],"
604                 + "ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],ariaCurrent[GSCE],"
605                 + "ariaDescription[GSCE],ariaDisabled[GSCE],ariaExpanded[GSCE],ariaHasPopup[GSCE],ariaHidden[GSCE],"
606                 + "ariaInvalid[GSCE],ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLevel[GSCE],ariaLive[GSCE],"
607                 + "ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],ariaOrientation[GSCE],"
608                 + "ariaPlaceholder[GSCE],ariaPosInSet[GSCE],ariaPressed[GSCE],ariaReadOnly[GSCE],ariaRelevant[GSCE],"
609                 + "ariaRequired[GSCE],ariaRoleDescription[GSCE],ariaRowCount[GSCE],ariaRowIndex[GSCE],"
610                 + "ariaRowIndexText[GSCE],ariaRowSpan[GSCE],ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],"
611                 + "ariaValueMax[GSCE],ariaValueMin[GSCE],ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],"
612                 + "attachShadow(),attributes[GCE],before(),checkVisibility(),childElementCount[GCE],children[GCE],"
613                 + "classList[GSCE],className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],"
614                 + "clientWidth[GCE],closest(),constructor(),currentCSSZoom[GCE],firstElementChild[GCE],"
615                 + "getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),"
616                 + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
617                 + "getElementsByTagName(),getElementsByTagNameNS(),getHTML(),hasAttribute(),hasAttributeNS(),"
618                 + "hasAttributes(),hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),"
619                 + "insertAdjacentHTML(),insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),"
620                 + "mozMatchesSelector(),mozRequestFullScreen(),namespaceURI[GCE],nextElementSibling[GCE],"
621                 + "onfullscreenchange[GSCE],onfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],prefix[GCE],"
622                 + "prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),releaseCapture(),"
623                 + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
624                 + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),"
625                 + "scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],scrollTo(),"
626                 + "scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
627                 + "setAttributeNodeNS(),setAttributeNS(),setCapture(),setHTMLUnsafe(),setPointerCapture(),"
628                 + "shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute(),"
629                 + "webkitMatchesSelector()")
630     @HtmlUnitNYI(CHROME = "after(),append(),attributes[GCE],before(),childElementCount[GCE],children[GCE],"
631                 + "classList[GCE],className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],"
632                 + "clientWidth[GCE],closest(),constructor(),firstElementChild[GCE],getAttribute(),getAttributeNode(),"
633                 + "getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects(),"
634                 + "getElementsByClassName(),getElementsByTagName(),getElementsByTagNameNS(),getHTML(),"
635                 + "hasAttribute(),hasAttributeNS(),hasAttributes(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),"
636                 + "insertAdjacentHTML(),insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),"
637                 + "namespaceURI[GCE],nextElementSibling[GCE],onbeforecopy[GSCE],onbeforecut[GSCE],onbeforepaste[GSCE],"
638                 + "onsearch[GSCE],onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],outerHTML[GSCE],"
639                 + "prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),remove(),"
640                 + "removeAttribute(),removeAttributeNode(),removeAttributeNS(),replaceChildren(),replaceWith(),"
641                 + "scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollIntoViewIfNeeded(),"
642                 + "scrollLeft[GSCE],scrollTo(),scrollTop[GSCE],"
643                 + "scrollWidth[GCE],setAttribute(),setAttributeNode(),setAttributeNS(),tagName[GCE],"
644                 + "toggleAttribute(),webkitMatchesSelector()",
645             EDGE = "after(),append(),attributes[GCE],before(),childElementCount[GCE],children[GCE],"
646                 + "classList[GCE],className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],"
647                 + "clientWidth[GCE],closest(),constructor(),firstElementChild[GCE],getAttribute(),getAttributeNode(),"
648                 + "getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects(),"
649                 + "getElementsByClassName(),getElementsByTagName(),getElementsByTagNameNS(),getHTML(),"
650                 + "hasAttribute(),hasAttributeNS(),hasAttributes(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),"
651                 + "insertAdjacentHTML(),insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),"
652                 + "namespaceURI[GCE],nextElementSibling[GCE],onbeforecopy[GSCE],onbeforecut[GSCE],onbeforepaste[GSCE],"
653                 + "onsearch[GSCE],onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],outerHTML[GSCE],"
654                 + "prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),remove(),"
655                 + "removeAttribute(),removeAttributeNode(),removeAttributeNS(),replaceChildren(),replaceWith(),"
656                 + "scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollIntoViewIfNeeded(),"
657                 + "scrollLeft[GSCE],scrollTo(),scrollTop[GSCE],"
658                 + "scrollWidth[GCE],setAttribute(),setAttributeNode(),setAttributeNS(),tagName[GCE],"
659                 + "toggleAttribute(),webkitMatchesSelector()",
660             FF = "after(),append(),attributes[GCE],before(),childElementCount[GCE],children[GCE],classList[GCE],"
661                 + "className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),"
662                 + "constructor(),firstElementChild[GCE],getAttribute(),getAttributeNode(),getAttributeNodeNS(),"
663                 + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
664                 + "getElementsByTagName(),getElementsByTagNameNS(),"
665                 + "getHTML(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
666                 + "id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),"
667                 + "lastElementChild[GCE],localName[GCE],matches(),mozMatchesSelector(),namespaceURI[GCE],"
668                 + "nextElementSibling[GCE],outerHTML[GSCE],prefix[GCE],prepend(),previousElementSibling[GCE],"
669                 + "querySelector(),querySelectorAll(),releaseCapture(),remove(),removeAttribute(),"
670                 + "removeAttributeNode(),removeAttributeNS(),replaceChildren(),replaceWith(),"
671                 + "scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollTo(),scrollTop[GSCE],"
672                 + "scrollWidth[GCE],setAttribute(),"
673                 + "setAttributeNode(),setAttributeNS(),setCapture(),tagName[GCE],toggleAttribute(),"
674                 + "webkitMatchesSelector()",
675             FF_ESR = "after(),append(),attributes[GCE],before(),childElementCount[GCE],children[GCE],classList[GCE],"
676                 + "className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),"
677                 + "constructor(),firstElementChild[GCE],getAttribute(),getAttributeNode(),getAttributeNodeNS(),"
678                 + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
679                 + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
680                 + "id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),"
681                 + "lastElementChild[GCE],localName[GCE],matches(),mozMatchesSelector(),namespaceURI[GCE],"
682                 + "nextElementSibling[GCE],outerHTML[GSCE],prefix[GCE],prepend(),previousElementSibling[GCE],"
683                 + "querySelector(),querySelectorAll(),releaseCapture(),remove(),removeAttribute(),"
684                 + "removeAttributeNode(),removeAttributeNS(),replaceChildren(),replaceWith(),"
685                 + "scroll(),scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollTo(),scrollTop[GSCE],"
686                 + "scrollWidth[GCE],setAttribute(),"
687                 + "setAttributeNode(),setAttributeNS(),setCapture(),tagName[GCE],toggleAttribute(),"
688                 + "webkitMatchesSelector()")
689     public void element() throws Exception {
690         testString("", "element");
691     }
692 
693     /**
694      * Test {@link org.htmlunit.javascript.host.Element}.
695      *
696      * @throws Exception if the test fails
697      */
698     @Test
699     @Alerts(CHROME = "after(),animate(),append(),ariaActiveDescendantElement[GSCE],ariaAtomic[GSCE],"
700                 + "ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE],ariaBrailleRoleDescription[GSCE],ariaBusy[GSCE],"
701                 + "ariaChecked[GSCE],ariaColCount[GSCE],ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],"
702                 + "ariaControlsElements[GSCE],ariaCurrent[GSCE],ariaDescribedByElements[GSCE],ariaDescription[GSCE],"
703                 + "ariaDetailsElements[GSCE],ariaDisabled[GSCE],ariaErrorMessageElements[GSCE],ariaExpanded[GSCE],"
704                 + "ariaFlowToElements[GSCE],ariaHasPopup[GSCE],ariaHidden[GSCE],ariaInvalid[GSCE],"
705                 + "ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLabelledByElements[GSCE],ariaLevel[GSCE],"
706                 + "ariaLive[GSCE],ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],"
707                 + "ariaOrientation[GSCE],ariaPlaceholder[GSCE],ariaPosInSet[GSCE],ariaPressed[GSCE],"
708                 + "ariaReadOnly[GSCE],ariaRelevant[GSCE],ariaRequired[GSCE],ariaRoleDescription[GSCE],"
709                 + "ariaRowCount[GSCE],ariaRowIndex[GSCE],ariaRowIndexText[GSCE],ariaRowSpan[GSCE],"
710                 + "ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],ariaValueMax[GSCE],ariaValueMin[GSCE],"
711                 + "ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
712                 + "checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],"
713                 + "clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),computedStyleMap(),"
714                 + "constructor(),currentCSSZoom[GCE],elementTiming[GSCE],firstElementChild[GCE],getAnimations(),"
715                 + "getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
716                 + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
717                 + "getElementsByTagNameNS(),getHTML(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
718                 + "hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
719                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),moveBefore(),"
720                 + "namespaceURI[GCE],nextElementSibling[GCE],onbeforecopy[GSCE],onbeforecut[GSCE],"
721                 + "onbeforepaste[GSCE],onfullscreenchange[GSCE],onfullscreenerror[GSCE],onsearch[GSCE],"
722                 + "onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],"
723                 + "prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),"
724                 + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
725                 + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),"
726                 + "scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],"
727                 + "scrollTo(),scrollTop[GSCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
728                 + "setAttributeNodeNS(),setAttributeNS(),setHTMLUnsafe(),setPointerCapture(),shadowRoot[GCE],"
729                 + "slot[GSCE],tagName[GCE],toggleAttribute(),webkitMatchesSelector(),webkitRequestFullScreen(),"
730                 + "webkitRequestFullscreen()",
731             EDGE = "after(),animate(),append(),ariaActiveDescendantElement[GSCE],ariaAtomic[GSCE],"
732                 + "ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE],ariaBrailleRoleDescription[GSCE],ariaBusy[GSCE],"
733                 + "ariaChecked[GSCE],ariaColCount[GSCE],ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],"
734                 + "ariaControlsElements[GSCE],ariaCurrent[GSCE],ariaDescribedByElements[GSCE],ariaDescription[GSCE],"
735                 + "ariaDetailsElements[GSCE],ariaDisabled[GSCE],ariaErrorMessageElements[GSCE],ariaExpanded[GSCE],"
736                 + "ariaFlowToElements[GSCE],ariaHasPopup[GSCE],ariaHidden[GSCE],ariaInvalid[GSCE],"
737                 + "ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLabelledByElements[GSCE],ariaLevel[GSCE],"
738                 + "ariaLive[GSCE],ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],"
739                 + "ariaOrientation[GSCE],ariaPlaceholder[GSCE],ariaPosInSet[GSCE],ariaPressed[GSCE],"
740                 + "ariaReadOnly[GSCE],ariaRelevant[GSCE],ariaRequired[GSCE],ariaRoleDescription[GSCE],"
741                 + "ariaRowCount[GSCE],ariaRowIndex[GSCE],ariaRowIndexText[GSCE],ariaRowSpan[GSCE],"
742                 + "ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],ariaValueMax[GSCE],ariaValueMin[GSCE],"
743                 + "ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],attachShadow(),attributes[GCE],before(),"
744                 + "checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],className[GSCE],"
745                 + "clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),computedStyleMap(),"
746                 + "constructor(),currentCSSZoom[GCE],elementTiming[GSCE],firstElementChild[GCE],getAnimations(),"
747                 + "getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
748                 + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
749                 + "getElementsByTagNameNS(),getHTML(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
750                 + "hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
751                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),moveBefore(),"
752                 + "namespaceURI[GCE],nextElementSibling[GCE],onbeforecopy[GSCE],onbeforecut[GSCE],"
753                 + "onbeforepaste[GSCE],onfullscreenchange[GSCE],onfullscreenerror[GSCE],onsearch[GSCE],"
754                 + "onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],"
755                 + "prefix[GCE],prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),"
756                 + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
757                 + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),"
758                 + "scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],"
759                 + "scrollTo(),scrollTop[GSCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
760                 + "setAttributeNodeNS(),setAttributeNS(),setHTMLUnsafe(),setPointerCapture(),shadowRoot[GCE],"
761                 + "slot[GSCE],tagName[GCE],toggleAttribute(),webkitMatchesSelector(),webkitRequestFullScreen(),"
762                 + "webkitRequestFullscreen()",
763             FF = "after(),animate(),append(),ariaActiveDescendantElement[GSCE],ariaAtomic[GSCE],"
764                 + "ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE],ariaBrailleRoleDescription[GSCE],ariaBusy[GSCE],"
765                 + "ariaChecked[GSCE],ariaColCount[GSCE],ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],"
766                 + "ariaControlsElements[GSCE],ariaCurrent[GSCE],ariaDescribedByElements[GSCE],ariaDescription[GSCE],"
767                 + "ariaDetailsElements[GSCE],ariaDisabled[GSCE],ariaErrorMessageElements[GSCE],ariaExpanded[GSCE],"
768                 + "ariaFlowToElements[GSCE],ariaHasPopup[GSCE],ariaHidden[GSCE],ariaInvalid[GSCE],"
769                 + "ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLabelledByElements[GSCE],ariaLevel[GSCE],"
770                 + "ariaLive[GSCE],ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],"
771                 + "ariaOrientation[GSCE],ariaOwnsElements[GSCE],ariaPlaceholder[GSCE],ariaPosInSet[GSCE],"
772                 + "ariaPressed[GSCE],ariaReadOnly[GSCE],ariaRelevant[GSCE],ariaRequired[GSCE],"
773                 + "ariaRoleDescription[GSCE],ariaRowCount[GSCE],ariaRowIndex[GSCE],ariaRowIndexText[GSCE],"
774                 + "ariaRowSpan[GSCE],ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],ariaValueMax[GSCE],"
775                 + "ariaValueMin[GSCE],ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],attachShadow(),"
776                 + "attributes[GCE],before(),checkVisibility(),childElementCount[GCE],children[GCE],classList[GSCE],"
777                 + "className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),"
778                 + "constructor(),currentCSSZoom[GCE],firstElementChild[GCE],getAnimations(),getAttribute(),"
779                 + "getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),"
780                 + "getBoundingClientRect(),getClientRects(),getElementsByClassName(),getElementsByTagName(),"
781                 + "getElementsByTagNameNS(),getHTML(),hasAttribute(),hasAttributeNS(),hasAttributes(),"
782                 + "hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
783                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),mozMatchesSelector(),"
784                 + "mozRequestFullScreen(),namespaceURI[GCE],nextElementSibling[GCE],onfullscreenchange[GSCE],"
785                 + "onfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],prefix[GCE],prepend(),"
786                 + "previousElementSibling[GCE],querySelector(),querySelectorAll(),releaseCapture(),"
787                 + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
788                 + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),"
789                 + "scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],scrollTo(),"
790                 + "scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
791                 + "setAttributeNodeNS(),setAttributeNS(),setCapture(),setHTMLUnsafe(),setPointerCapture(),"
792                 + "shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute(),"
793                 + "webkitMatchesSelector()",
794             FF_ESR = "after(),animate(),append(),ariaAtomic[GSCE],ariaAutoComplete[GSCE],ariaBrailleLabel[GSCE],"
795                 + "ariaBrailleRoleDescription[GSCE],ariaBusy[GSCE],ariaChecked[GSCE],ariaColCount[GSCE],"
796                 + "ariaColIndex[GSCE],ariaColIndexText[GSCE],ariaColSpan[GSCE],ariaCurrent[GSCE],"
797                 + "ariaDescription[GSCE],ariaDisabled[GSCE],ariaExpanded[GSCE],ariaHasPopup[GSCE],ariaHidden[GSCE],"
798                 + "ariaInvalid[GSCE],ariaKeyShortcuts[GSCE],ariaLabel[GSCE],ariaLevel[GSCE],ariaLive[GSCE],"
799                 + "ariaModal[GSCE],ariaMultiLine[GSCE],ariaMultiSelectable[GSCE],ariaOrientation[GSCE],"
800                 + "ariaPlaceholder[GSCE],ariaPosInSet[GSCE],ariaPressed[GSCE],ariaReadOnly[GSCE],ariaRelevant[GSCE],"
801                 + "ariaRequired[GSCE],ariaRoleDescription[GSCE],ariaRowCount[GSCE],ariaRowIndex[GSCE],"
802                 + "ariaRowIndexText[GSCE],ariaRowSpan[GSCE],ariaSelected[GSCE],ariaSetSize[GSCE],ariaSort[GSCE],"
803                 + "ariaValueMax[GSCE],ariaValueMin[GSCE],ariaValueNow[GSCE],ariaValueText[GSCE],assignedSlot[GCE],"
804                 + "attachShadow(),attributes[GCE],before(),checkVisibility(),childElementCount[GCE],children[GCE],"
805                 + "classList[GSCE],className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],"
806                 + "clientWidth[GCE],closest(),constructor(),currentCSSZoom[GCE],firstElementChild[GCE],"
807                 + "getAnimations(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS(),"
808                 + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
809                 + "getElementsByTagName(),getElementsByTagNameNS(),getHTML(),hasAttribute(),hasAttributeNS(),"
810                 + "hasAttributes(),hasPointerCapture(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),"
811                 + "insertAdjacentHTML(),insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),"
812                 + "mozMatchesSelector(),mozRequestFullScreen(),namespaceURI[GCE],nextElementSibling[GCE],"
813                 + "onfullscreenchange[GSCE],onfullscreenerror[GSCE],outerHTML[GSCE],part[GSCE],prefix[GCE],"
814                 + "prepend(),previousElementSibling[GCE],querySelector(),querySelectorAll(),releaseCapture(),"
815                 + "releasePointerCapture(),remove(),removeAttribute(),removeAttributeNode(),removeAttributeNS(),"
816                 + "replaceChildren(),replaceWith(),requestFullscreen(),requestPointerLock(),role[GSCE],scroll(),"
817                 + "scrollBy(),scrollHeight[GCE],scrollIntoView(),scrollLeft[GSCE],scrollLeftMax[GCE],scrollTo(),"
818                 + "scrollTop[GSCE],scrollTopMax[GCE],scrollWidth[GCE],setAttribute(),setAttributeNode(),"
819                 + "setAttributeNodeNS(),setAttributeNS(),setCapture(),setHTMLUnsafe(),setPointerCapture(),"
820                 + "shadowRoot[GCE],slot[GSCE],tagName[GCE],toggleAttribute(),"
821                 + "webkitMatchesSelector()")
822     @HtmlUnitNYI(CHROME = "after(),append(),attributes[GCE],before(),childElementCount[GCE],"
823                 + "children[GCE],classList[GCE],"
824                 + "className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),"
825                 + "constructor(),firstElementChild[GCE],getAttribute(),getAttributeNode(),getAttributeNodeNS(),"
826                 + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
827                 + "getElementsByTagName(),getElementsByTagNameNS(),getHTML(),"
828                 + "hasAttribute(),hasAttributeNS(),"
829                 + "hasAttributes(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
830                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),namespaceURI[GCE],"
831                 + "nextElementSibling[GCE],onbeforecopy[GSCE],onbeforecut[GSCE],onbeforepaste[GSCE],onsearch[GSCE],"
832                 + "onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],outerHTML[GSCE],prefix[GCE],prepend(),"
833                 + "previousElementSibling[GCE],querySelector(),querySelectorAll(),remove(),removeAttribute(),"
834                 + "removeAttributeNode(),removeAttributeNS(),replaceChildren(),replaceWith(),"
835                 + "scroll(),scrollBy(),scrollHeight[GCE],"
836                 + "scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],scrollTo(),"
837                 + "scrollTop[GSCE],scrollWidth[GCE],"
838                 + "setAttribute(),setAttributeNode(),setAttributeNS(),"
839                 + "tagName[GCE],toggleAttribute(),webkitMatchesSelector()",
840             EDGE = "after(),append(),attributes[GCE],before(),childElementCount[GCE],"
841                 + "children[GCE],classList[GCE],"
842                 + "className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),"
843                 + "constructor(),firstElementChild[GCE],getAttribute(),getAttributeNode(),getAttributeNodeNS(),"
844                 + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
845                 + "getElementsByTagName(),getElementsByTagNameNS(),getHTML(),"
846                 + "hasAttribute(),hasAttributeNS(),"
847                 + "hasAttributes(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
848                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],matches(),namespaceURI[GCE],"
849                 + "nextElementSibling[GCE],onbeforecopy[GSCE],onbeforecut[GSCE],onbeforepaste[GSCE],onsearch[GSCE],"
850                 + "onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],outerHTML[GSCE],prefix[GCE],prepend(),"
851                 + "previousElementSibling[GCE],querySelector(),querySelectorAll(),remove(),removeAttribute(),"
852                 + "removeAttributeNode(),removeAttributeNS(),replaceChildren(),replaceWith(),"
853                 + "scroll(),scrollBy(),scrollHeight[GCE],"
854                 + "scrollIntoView(),scrollIntoViewIfNeeded(),scrollLeft[GSCE],scrollTo(),"
855                 + "scrollTop[GSCE],scrollWidth[GCE],"
856                 + "setAttribute(),setAttributeNode(),setAttributeNS(),"
857                 + "tagName[GCE],toggleAttribute(),webkitMatchesSelector()",
858             FF_ESR = "after(),append(),attributes[GCE],before(),childElementCount[GCE],"
859                 + "children[GCE],classList[GCE],"
860                 + "className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),"
861                 + "constructor(),firstElementChild[GCE],getAttribute(),getAttributeNode(),getAttributeNodeNS(),"
862                 + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
863                 + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),"
864                 + "hasAttributes(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
865                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],"
866                 + "matches(),mozMatchesSelector(),namespaceURI[GCE],"
867                 + "nextElementSibling[GCE],outerHTML[GSCE],prefix[GCE],prepend(),"
868                 + "previousElementSibling[GCE],querySelector(),querySelectorAll(),releaseCapture(),"
869                 + "remove(),removeAttribute(),"
870                 + "removeAttributeNode(),removeAttributeNS(),replaceChildren(),replaceWith(),"
871                 + "scroll(),scrollBy(),scrollHeight[GCE],"
872                 + "scrollIntoView(),scrollLeft[GSCE],scrollTo(),scrollTop[GSCE],scrollWidth[GCE],"
873                 + "setAttribute(),setAttributeNode(),setAttributeNS(),setCapture(),"
874                 + "tagName[GCE],toggleAttribute(),webkitMatchesSelector()",
875             FF = "after(),append(),attributes[GCE],before(),childElementCount[GCE],"
876                 + "children[GCE],classList[GCE],"
877                 + "className[GSCE],clientHeight[GCE],clientLeft[GCE],clientTop[GCE],clientWidth[GCE],closest(),"
878                 + "constructor(),firstElementChild[GCE],getAttribute(),getAttributeNode(),getAttributeNodeNS(),"
879                 + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName(),"
880                 + "getElementsByTagName(),getElementsByTagNameNS(),getHTML(),hasAttribute(),hasAttributeNS(),"
881                 + "hasAttributes(),id[GSCE],innerHTML[GSCE],insertAdjacentElement(),insertAdjacentHTML(),"
882                 + "insertAdjacentText(),lastElementChild[GCE],localName[GCE],"
883                 + "matches(),mozMatchesSelector(),namespaceURI[GCE],"
884                 + "nextElementSibling[GCE],outerHTML[GSCE],prefix[GCE],prepend(),"
885                 + "previousElementSibling[GCE],querySelector(),querySelectorAll(),releaseCapture(),"
886                 + "remove(),removeAttribute(),"
887                 + "removeAttributeNode(),removeAttributeNS(),replaceChildren(),replaceWith(),"
888                 + "scroll(),scrollBy(),scrollHeight[GCE],"
889                 + "scrollIntoView(),scrollLeft[GSCE],scrollTo(),scrollTop[GSCE],scrollWidth[GCE],"
890                 + "setAttribute(),setAttributeNode(),setAttributeNS(),setCapture(),"
891                 + "tagName[GCE],toggleAttribute(),webkitMatchesSelector()")
892     public void element2() throws Exception {
893         testString("", "element, document.createDocumentFragment()");
894     }
895 
896     /**
897      * @throws Exception if the test fails
898      */
899     @Test
900     @Alerts(CHROME = "TypeError",
901             EDGE = "TypeError",
902             FF = "TypeError",
903             FF_ESR = "TypeError")
904     public void currentStyle() throws Exception {
905         testString("", "document.body.currentStyle");
906     }
907 
908     /**
909      * @throws Exception if the test fails
910      */
911     @Test
912     @Alerts(CHROME = "AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
913                 + "CAPTURING_PHASE[E],composed[GCE],composedPath(),constructor(),currentTarget[GCE],"
914                 + "defaultPrevented[GCE],eventPhase[GCE],initEvent(),NONE[E],preventDefault(),returnValue[GSCE],"
915                 + "srcElement[GCE],stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],"
916                 + "type[GCE]",
917             EDGE = "AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
918                 + "CAPTURING_PHASE[E],composed[GCE],composedPath(),constructor(),currentTarget[GCE],"
919                 + "defaultPrevented[GCE],eventPhase[GCE],initEvent(),NONE[E],preventDefault(),returnValue[GSCE],"
920                 + "srcElement[GCE],stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],"
921                 + "type[GCE]",
922             FF = "ALT_MASK[E],AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
923                 + "CAPTURING_PHASE[E],composed[GCE],composedPath(),constructor(),CONTROL_MASK[E],currentTarget[GCE],"
924                 + "defaultPrevented[GCE],eventPhase[GCE],explicitOriginalTarget[GCE],initEvent(),META_MASK[E],"
925                 + "NONE[E],originalTarget[GCE],preventDefault(),returnValue[GSCE],SHIFT_MASK[E],srcElement[GCE],"
926                 + "stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],"
927                 + "type[GCE]",
928             FF_ESR = "ALT_MASK[E],AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
929                 + "CAPTURING_PHASE[E],composed[GCE],composedPath(),constructor(),CONTROL_MASK[E],currentTarget[GCE],"
930                 + "defaultPrevented[GCE],eventPhase[GCE],explicitOriginalTarget[GCE],initEvent(),META_MASK[E],"
931                 + "NONE[E],originalTarget[GCE],preventDefault(),returnValue[GSCE],SHIFT_MASK[E],srcElement[GCE],"
932                 + "stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],"
933                 + "type[GCE]")
934     @HtmlUnitNYI(CHROME = "AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
935                 + "CAPTURING_PHASE[E],composed[GCE],constructor(),currentTarget[GCE],"
936                 + "defaultPrevented[GCE],eventPhase[GCE],initEvent(),NONE[E],preventDefault(),"
937                 + "returnValue[GSCE],srcElement[GCE],stopImmediatePropagation(),stopPropagation(),"
938                 + "target[GCE],timeStamp[GCE],type[GCE]",
939             EDGE = "AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
940                 + "CAPTURING_PHASE[E],composed[GCE],constructor(),currentTarget[GCE],"
941                 + "defaultPrevented[GCE],eventPhase[GCE],initEvent(),NONE[E],preventDefault(),"
942                 + "returnValue[GSCE],srcElement[GCE],stopImmediatePropagation(),stopPropagation(),"
943                 + "target[GCE],timeStamp[GCE],type[GCE]",
944             FF = "ALT_MASK[E],AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
945                 + "CAPTURING_PHASE[E],composed[GCE],constructor(),CONTROL_MASK[E],currentTarget[GCE],"
946                 + "defaultPrevented[GCE],eventPhase[GCE],initEvent(),META_MASK[E],NONE[E],preventDefault(),"
947                 + "returnValue[GSCE],SHIFT_MASK[E],srcElement[GCE],stopImmediatePropagation(),stopPropagation(),"
948                 + "target[GCE],timeStamp[GCE],type[GCE]",
949             FF_ESR = "ALT_MASK[E],AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
950                 + "CAPTURING_PHASE[E],composed[GCE],constructor(),CONTROL_MASK[E],currentTarget[GCE],"
951                 + "defaultPrevented[GCE],eventPhase[GCE],initEvent(),META_MASK[E],NONE[E],preventDefault(),"
952                 + "returnValue[GSCE],SHIFT_MASK[E],srcElement[GCE],stopImmediatePropagation(),stopPropagation(),"
953                 + "target[GCE],timeStamp[GCE],type[GCE]")
954     public void event() throws Exception {
955         testString("", "event");
956     }
957 
958     /**
959      * @throws Exception if the test fails
960      */
961     @Test
962     @Alerts(CHROME = "constructor(),PERSISTENT[E],TEMPORARY[E]",
963             EDGE = "constructor(),PERSISTENT[E],TEMPORARY[E]",
964             FF = "constructor()",
965             FF_ESR = "constructor()")
966     @HtmlUnitNYI(CHROME = "alert(),atob(),blur(),btoa(),cancelAnimationFrame(),captureEvents(),clearInterval(),"
967                 + "clearTimeout(),clientInformation[GSCE],close(),closed[GCE],confirm(),constructor(),crypto[GCE],"
968                 + "devicePixelRatio[GCE],document[GCE],event[GCE],external[GCE],find(),focus(),frameElement[GCE],"
969                 + "frames[GCE],getComputedStyle(),getSelection(),history[GCE],innerHeight[GSCE],innerWidth[GSCE],"
970                 + "isSecureContext[GCE],length[GCE],localStorage[GCE],location[GSCE],matchMedia(),moveBy(),"
971                 + "moveTo(),name[GSCE],navigator[GCE],offscreenBuffering[GCE],onabort[GSCE],onanimationend[GSCE],"
972                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],onbeforeunload[GSCE],"
973                 + "onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
974                 + "onclose[GSCE],oncontextmenu[GSCE],oncuechange[GSCE],ondblclick[GSCE],ondevicemotion[GSCE],"
975                 + "ondeviceorientation[GSCE],ondeviceorientationabsolute[GSCE],ondrag[GSCE],ondragend[GSCE],"
976                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
977                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
978                 + "ongotpointercapture[GSCE],onhashchange[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
979                 + "onkeypress[GSCE],onkeyup[GSCE],onlanguagechange[GSCE],onload[GSCE],onloadeddata[GSCE],"
980                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmessage[GSCE],"
981                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
982                 + "onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],onoffline[GSCE],ononline[GSCE],"
983                 + "onpagehide[GSCE],onpageshow[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
984                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
985                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onpopstate[GSCE],"
986                 + "onprogress[GSCE],onratechange[GSCE],onrejectionhandled[GSCE],onreset[GSCE],onresize[GSCE],"
987                 + "onscroll[GSCE],onsearch[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onstalled[GSCE],"
988                 + "onstorage[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
989                 + "ontransitionend[GSCE],onunhandledrejection[GSCE],onunload[GSCE],onvolumechange[GSCE],"
990                 + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
991                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],open(),opener[GSCE],"
992                 + "outerHeight[GSCE],outerWidth[GSCE],pageXOffset[GCE],pageYOffset[GCE],parent[GCE],"
993                 + "performance[GSCE],PERSISTENT[E],postMessage(),print(),prompt(),releaseEvents(),"
994                 + "requestAnimationFrame(),resizeBy(),resizeTo(),screen[GCE],scroll(),scrollBy(),scrollTo(),"
995                 + "scrollX[GCE],scrollY[GCE],self[GCE],sessionStorage[GCE],setInterval(),setTimeout(),"
996                 + "speechSynthesis[GCE],status[GSCE],stop(),styleMedia[GCE],TEMPORARY[E],top[GSCE],window[GCE]",
997             EDGE = "alert(),atob(),blur(),btoa(),cancelAnimationFrame(),captureEvents(),clearInterval(),"
998                 + "clearTimeout(),clientInformation[GSCE],close(),closed[GCE],confirm(),constructor(),crypto[GCE],"
999                 + "devicePixelRatio[GCE],document[GCE],event[GCE],external[GCE],find(),focus(),frameElement[GCE],"
1000                 + "frames[GCE],getComputedStyle(),getSelection(),history[GCE],innerHeight[GSCE],innerWidth[GSCE],"
1001                 + "isSecureContext[GCE],length[GCE],localStorage[GCE],location[GSCE],matchMedia(),moveBy(),"
1002                 + "moveTo(),name[GSCE],navigator[GCE],offscreenBuffering[GCE],onabort[GSCE],onanimationend[GSCE],"
1003                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],onbeforeunload[GSCE],"
1004                 + "onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
1005                 + "onclose[GSCE],oncontextmenu[GSCE],oncuechange[GSCE],ondblclick[GSCE],ondevicemotion[GSCE],"
1006                 + "ondeviceorientation[GSCE],ondeviceorientationabsolute[GSCE],ondrag[GSCE],ondragend[GSCE],"
1007                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
1008                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1009                 + "ongotpointercapture[GSCE],onhashchange[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1010                 + "onkeypress[GSCE],onkeyup[GSCE],onlanguagechange[GSCE],onload[GSCE],onloadeddata[GSCE],"
1011                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmessage[GSCE],"
1012                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
1013                 + "onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],onoffline[GSCE],ononline[GSCE],"
1014                 + "onpagehide[GSCE],onpageshow[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1015                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1016                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onpopstate[GSCE],"
1017                 + "onprogress[GSCE],onratechange[GSCE],onrejectionhandled[GSCE],onreset[GSCE],onresize[GSCE],"
1018                 + "onscroll[GSCE],onsearch[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onstalled[GSCE],"
1019                 + "onstorage[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
1020                 + "ontransitionend[GSCE],onunhandledrejection[GSCE],onunload[GSCE],onvolumechange[GSCE],"
1021                 + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
1022                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],open(),opener[GSCE],"
1023                 + "outerHeight[GSCE],outerWidth[GSCE],pageXOffset[GCE],pageYOffset[GCE],parent[GCE],"
1024                 + "performance[GSCE],PERSISTENT[E],postMessage(),print(),prompt(),releaseEvents(),"
1025                 + "requestAnimationFrame(),resizeBy(),resizeTo(),screen[GCE],scroll(),scrollBy(),scrollTo(),"
1026                 + "scrollX[GCE],scrollY[GCE],self[GCE],sessionStorage[GCE],setInterval(),setTimeout(),"
1027                 + "speechSynthesis[GCE],status[GSCE],stop(),styleMedia[GCE],TEMPORARY[E],top[GSCE],window[GCE]",
1028             FF = "alert(),atob(),blur(),btoa(),cancelAnimationFrame(),captureEvents(),"
1029                 + "clearInterval(),clearTimeout(),clientInformation[GSCE],close(),closed[GCE],confirm(),constructor(),"
1030                 + "controllers[GSCE],"
1031                 + "crypto[GCE],devicePixelRatio[GCE],document[GCE],dump(),event[GCE],external[GCE],"
1032                 + "find(),focus(),frameElement[GCE],frames[GCE],getComputedStyle(),getSelection(),history[GCE],"
1033                 + "innerHeight[GSCE],innerWidth[GSCE],isSecureContext[GCE],length[GCE],localStorage[GCE],"
1034                 + "location[GSCE],matchMedia(),moveBy(),moveTo(),mozInnerScreenX[GCE],mozInnerScreenY[GCE],"
1035                 + "name[GSCE],navigator[GCE],netscape[GCE],onabort[GSCE],onafterprint[GSCE],onanimationend[GSCE],"
1036                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onbeforeprint[GSCE],onbeforeunload[GSCE],"
1037                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
1038                 + "oncontextmenu[GSCE],ondblclick[GSCE],ondevicemotion[GSCE],"
1039                 + "ondeviceorientation[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],"
1040                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
1041                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onhashchange[GSCE],oninput[GSCE],"
1042                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onlanguagechange[GSCE],onload[GSCE],"
1043                 + "onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],onmessage[GSCE],onmousedown[GSCE],"
1044                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
1045                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onoffline[GSCE],"
1046                 + "ononline[GSCE],onpagehide[GSCE],onpageshow[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1047                 + "onpopstate[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
1048                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onstalled[GSCE],onstorage[GSCE],onsubmit[GSCE],"
1049                 + "onsuspend[GSCE],ontimeupdate[GSCE],onunload[GSCE],onvolumechange[GSCE],"
1050                 + "onwaiting[GSCE],onwheel[GSCE],open(),opener[GSCE],outerHeight[GSCE],outerWidth[GSCE],"
1051                 + "pageXOffset[GCE],pageYOffset[GCE],parent[GCE],performance[GSCE],postMessage(),print(),prompt(),"
1052                 + "releaseEvents(),requestAnimationFrame(),resizeBy(),resizeTo(),screen[GCE],scroll(),scrollBy(),"
1053                 + "scrollByLines(),scrollByPages(),scrollTo(),scrollX[GCE],scrollY[GCE],self[GCE],sessionStorage[GCE],"
1054                 + "setInterval(),setTimeout(),status[GSCE],stop(),top[GSCE],window[GCE]",
1055             FF_ESR = "alert(),atob(),blur(),btoa(),cancelAnimationFrame(),captureEvents(),"
1056                 + "clearInterval(),clearTimeout(),clientInformation[GCE],close(),closed[GCE],confirm(),constructor(),"
1057                 + "controllers[GSCE],"
1058                 + "crypto[GCE],devicePixelRatio[GCE],document[GCE],dump(),event[GCE],external[GCE],"
1059                 + "find(),focus(),frameElement[GCE],frames[GCE],getComputedStyle(),getSelection(),history[GCE],"
1060                 + "innerHeight[GSCE],innerWidth[GSCE],isSecureContext[GCE],length[GCE],localStorage[GCE],"
1061                 + "location[GSCE],matchMedia(),moveBy(),moveTo(),mozInnerScreenX[GCE],mozInnerScreenY[GCE],"
1062                 + "name[GSCE],navigator[GCE],netscape[GCE],onabort[GSCE],onafterprint[GSCE],onanimationend[GSCE],"
1063                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onbeforeprint[GSCE],onbeforeunload[GSCE],"
1064                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
1065                 + "oncontextmenu[GSCE],ondblclick[GSCE],ondevicemotion[GSCE],"
1066                 + "ondeviceorientation[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],"
1067                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
1068                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onhashchange[GSCE],oninput[GSCE],"
1069                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onlanguagechange[GSCE],onload[GSCE],"
1070                 + "onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],onmessage[GSCE],onmousedown[GSCE],"
1071                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
1072                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onoffline[GSCE],"
1073                 + "ononline[GSCE],onpagehide[GSCE],onpageshow[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1074                 + "onpopstate[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
1075                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onstalled[GSCE],onstorage[GSCE],onsubmit[GSCE],"
1076                 + "onsuspend[GSCE],ontimeupdate[GSCE],onunload[GSCE],onvolumechange[GSCE],"
1077                 + "onwaiting[GSCE],onwheel[GSCE],open(),opener[GSCE],outerHeight[GSCE],outerWidth[GSCE],"
1078                 + "pageXOffset[GCE],pageYOffset[GCE],parent[GCE],performance[GSCE],postMessage(),print(),prompt(),"
1079                 + "releaseEvents(),requestAnimationFrame(),resizeBy(),resizeTo(),screen[GCE],scroll(),scrollBy(),"
1080                 + "scrollByLines(),scrollByPages(),scrollTo(),scrollX[GCE],scrollY[GCE],self[GCE],sessionStorage[GCE],"
1081                 + "setInterval(),setTimeout(),status[GSCE],stop(),top[GSCE],window[GCE]")
1082     public void window() throws Exception {
1083         testString("", "window");
1084     }
1085 
1086     /**
1087      * Test {@link org.htmlunit.html.HtmlAbbreviated}.
1088      *
1089      * @throws Exception if the test fails
1090      */
1091     @Test
1092     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
1093                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1094                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1095                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1096                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1097                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1098                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
1099                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1100                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1101                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1102                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
1103                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1104                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1105                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1106                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
1107                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
1108                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1109                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1110                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
1111                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
1112                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
1113                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1114                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1115                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1116                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1117                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1118                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1119                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
1120                 + "virtualKeyboardPolicy[GSCE],"
1121                 + "writingSuggestions[GSCE]",
1122             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
1123                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1124                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1125                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1126                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1127                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1128                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
1129                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1130                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1131                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1132                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
1133                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1134                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1135                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1136                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
1137                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
1138                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1139                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1140                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
1141                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
1142                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
1143                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1144                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1145                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1146                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1147                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1148                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1149                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
1150                 + "virtualKeyboardPolicy[GSCE],"
1151                 + "writingSuggestions[GSCE]",
1152             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
1153                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
1154                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1155                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1156                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1157                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1158                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
1159                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1160                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1161                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1162                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1163                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
1164                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
1165                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1166                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
1167                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
1168                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
1169                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
1170                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
1171                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1172                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
1173                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
1174                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
1175                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
1176                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
1177                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
1178                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
1179                 + "togglePopover(),"
1180                 + "translate[GSCE]",
1181             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
1182                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1183                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
1184                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
1185                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
1186                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1187                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
1188                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
1189                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1190                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
1191                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
1192                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
1193                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1194                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
1195                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1196                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1197                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1198                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1199                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1200                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
1201                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1202                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1203                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1204                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1205                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1206                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1207                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
1208                 + "translate[GSCE]")
1209     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
1210                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1211                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1212                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1213                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1214                 + "offsetTop[GCE],offsetWidth[GCE],"
1215                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1216                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
1217                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1218                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
1219                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
1220                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1221                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1222                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1223                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
1224                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1225                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
1226                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1227                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1228                 + "onpointermove[GSCE],onpointerout[GSCE],"
1229                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1230                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
1231                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
1232                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
1233                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
1234                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
1235                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
1236             EDGE = "accessKey[GSCE],autofocus[GSCE],"
1237                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1238                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1239                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1240                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1241                 + "offsetTop[GCE],offsetWidth[GCE],"
1242                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1243                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
1244                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1245                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
1246                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
1247                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1248                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1249                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1250                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
1251                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1252                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
1253                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1254                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1255                 + "onpointermove[GSCE],onpointerout[GSCE],"
1256                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1257                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
1258                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
1259                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
1260                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
1261                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
1262                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
1263             FF = "accessKey[GSCE],autofocus[GSCE],"
1264                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1265                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1266                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1267                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1268                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1269                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1270                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
1271                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
1272                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1273                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
1274                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1275                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1276                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
1277                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1278                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1279                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1280                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1281                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
1282                 + "onseeked[GSCE],onseeking[GSCE],"
1283                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1284                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
1285                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
1286                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
1287             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
1288                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1289                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1290                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1291                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1292                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1293                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1294                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
1295                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
1296                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1297                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
1298                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1299                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1300                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
1301                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1302                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1303                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1304                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1305                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
1306                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1307                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
1308                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
1309                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
1310     public void abbr() throws Exception {
1311         test("abbr");
1312     }
1313 
1314     /**
1315      * Test {@link org.htmlunit.html.HtmlAcronym}.
1316      *
1317      * @throws Exception if the test fails
1318      */
1319     @Test
1320     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
1321                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1322                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1323                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1324                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1325                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1326                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
1327                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1328                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1329                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1330                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
1331                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1332                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1333                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1334                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
1335                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
1336                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1337                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1338                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
1339                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
1340                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
1341                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1342                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1343                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1344                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1345                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1346                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1347                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
1348                 + "virtualKeyboardPolicy[GSCE],"
1349                 + "writingSuggestions[GSCE]",
1350             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
1351                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1352                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1353                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1354                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1355                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1356                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
1357                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1358                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1359                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1360                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
1361                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1362                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1363                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1364                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
1365                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
1366                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1367                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1368                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
1369                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
1370                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
1371                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1372                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1373                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1374                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1375                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1376                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1377                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
1378                 + "virtualKeyboardPolicy[GSCE],"
1379                 + "writingSuggestions[GSCE]",
1380             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
1381                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
1382                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1383                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1384                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1385                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1386                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
1387                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1388                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1389                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1390                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1391                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
1392                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
1393                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1394                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
1395                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
1396                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
1397                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
1398                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
1399                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1400                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
1401                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
1402                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
1403                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
1404                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
1405                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
1406                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
1407                 + "togglePopover(),"
1408                 + "translate[GSCE]",
1409             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
1410                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1411                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
1412                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
1413                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
1414                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1415                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
1416                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
1417                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1418                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
1419                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
1420                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
1421                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1422                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
1423                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1424                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1425                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1426                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1427                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1428                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
1429                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1430                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1431                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1432                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1433                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1434                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1435                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
1436                 + "translate[GSCE]")
1437     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
1438                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1439                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1440                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1441                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1442                 + "offsetTop[GCE],offsetWidth[GCE],"
1443                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1444                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
1445                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1446                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
1447                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
1448                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1449                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1450                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1451                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
1452                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1453                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
1454                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1455                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1456                 + "onpointermove[GSCE],onpointerout[GSCE],"
1457                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1458                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
1459                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
1460                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
1461                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
1462                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
1463                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
1464             EDGE = "accessKey[GSCE],autofocus[GSCE],"
1465                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1466                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1467                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1468                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1469                 + "offsetTop[GCE],offsetWidth[GCE],"
1470                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1471                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
1472                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1473                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
1474                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
1475                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1476                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1477                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1478                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
1479                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1480                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
1481                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1482                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1483                 + "onpointermove[GSCE],onpointerout[GSCE],"
1484                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1485                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
1486                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
1487                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
1488                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
1489                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
1490                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
1491             FF = "accessKey[GSCE],autofocus[GSCE],"
1492                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1493                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1494                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1495                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1496                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1497                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1498                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
1499                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
1500                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1501                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
1502                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1503                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1504                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
1505                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1506                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1507                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1508                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1509                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
1510                 + "onseeked[GSCE],onseeking[GSCE],"
1511                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1512                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
1513                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
1514                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
1515             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
1516                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1517                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1518                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1519                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1520                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1521                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1522                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
1523                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
1524                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1525                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
1526                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1527                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1528                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
1529                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1530                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1531                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1532                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1533                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
1534                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1535                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
1536                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
1537                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
1538     public void acronym() throws Exception {
1539         test("acronym");
1540     }
1541 
1542     /**
1543      * Test {@link org.htmlunit.html.HtmlAnchor}.
1544      *
1545      * @throws Exception if the test fails
1546      */
1547     @Test
1548     @Alerts(CHROME = "attributionSrc[GSCE],charset[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],"
1549                 + "host[GSCE],hostname[GSCE],href[GSCE],hreflang[GSCE],name[GSCE],origin[GCE],password[GSCE],"
1550                 + "pathname[GSCE],ping[GSCE],port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],"
1551                 + "rev[GSCE],search[GSCE],shape[GSCE],target[GSCE],text[GSCE],toString(),type[GSCE],"
1552                 + "username[GSCE]",
1553             EDGE = "attributionSrc[GSCE],charset[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],"
1554                 + "host[GSCE],hostname[GSCE],href[GSCE],hreflang[GSCE],name[GSCE],origin[GCE],password[GSCE],"
1555                 + "pathname[GSCE],ping[GSCE],port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],"
1556                 + "rev[GSCE],search[GSCE],shape[GSCE],target[GSCE],text[GSCE],toString(),type[GSCE],"
1557                 + "username[GSCE]",
1558             FF = "charset[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],hostname[GSCE],"
1559                 + "href[GSCE],hreflang[GSCE],name[GSCE],origin[GCE],password[GSCE],pathname[GSCE],ping[GSCE],"
1560                 + "port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],rev[GSCE],search[GSCE],"
1561                 + "shape[GSCE],target[GSCE],text[GSCE],toString(),type[GSCE],"
1562                 + "username[GSCE]",
1563             FF_ESR = "charset[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],hostname[GSCE],"
1564                 + "href[GSCE],hreflang[GSCE],name[GSCE],origin[GCE],password[GSCE],pathname[GSCE],ping[GSCE],"
1565                 + "port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],rev[GSCE],search[GSCE],"
1566                 + "shape[GSCE],target[GSCE],text[GSCE],toString(),type[GSCE],"
1567                 + "username[GSCE]")
1568     @HtmlUnitNYI(CHROME = "charset[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],"
1569                 + "hostname[GSCE],href[GSCE],hreflang[GSCE],name[GSCE],origin[GCE],password[GSCE],"
1570                 + "pathname[GSCE],ping[GSCE],port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],"
1571                 + "rev[GSCE],search[GSCE],shape[GSCE],target[GSCE],text[GSCE],type[GSCE],username[GSCE]",
1572             EDGE = "charset[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],"
1573                 + "hostname[GSCE],href[GSCE],hreflang[GSCE],name[GSCE],origin[GCE],password[GSCE],"
1574                 + "pathname[GSCE],ping[GSCE],port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],"
1575                 + "rev[GSCE],search[GSCE],shape[GSCE],target[GSCE],text[GSCE],type[GSCE],username[GSCE]",
1576             FF = "charset[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],hostname[GSCE],"
1577                 + "href[GSCE],hreflang[GSCE],name[GSCE],origin[GCE],password[GSCE],"
1578                 + "pathname[GSCE],ping[GSCE],port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],"
1579                 + "rev[GSCE],search[GSCE],shape[GSCE],target[GSCE],text[GSCE],type[GSCE],username[GSCE]",
1580             FF_ESR = "charset[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],hostname[GSCE],"
1581                 + "href[GSCE],hreflang[GSCE],name[GSCE],origin[GCE],password[GSCE],"
1582                 + "pathname[GSCE],ping[GSCE],port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],"
1583                 + "rev[GSCE],search[GSCE],shape[GSCE],target[GSCE],text[GSCE],type[GSCE],username[GSCE]")
1584     public void a() throws Exception {
1585         test("a");
1586     }
1587 
1588     /**
1589      * Test {@link org.htmlunit.html.HtmlAddress}.
1590      *
1591      * @throws Exception if the test fails
1592      */
1593     @Test
1594     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
1595                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1596                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1597                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1598                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1599                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1600                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
1601                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1602                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1603                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1604                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
1605                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1606                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1607                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1608                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
1609                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
1610                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1611                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1612                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
1613                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
1614                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
1615                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1616                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1617                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1618                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1619                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1620                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1621                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
1622                 + "virtualKeyboardPolicy[GSCE],"
1623                 + "writingSuggestions[GSCE]",
1624             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
1625                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1626                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1627                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1628                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1629                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1630                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
1631                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1632                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1633                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1634                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
1635                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1636                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1637                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1638                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
1639                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
1640                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1641                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1642                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
1643                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
1644                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
1645                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1646                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1647                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1648                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1649                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1650                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1651                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
1652                 + "virtualKeyboardPolicy[GSCE],"
1653                 + "writingSuggestions[GSCE]",
1654             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
1655                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
1656                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1657                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1658                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1659                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1660                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
1661                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1662                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1663                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1664                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1665                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
1666                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
1667                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1668                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
1669                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
1670                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
1671                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
1672                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
1673                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1674                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
1675                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
1676                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
1677                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
1678                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
1679                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
1680                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
1681                 + "togglePopover(),"
1682                 + "translate[GSCE]",
1683             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
1684                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1685                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
1686                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
1687                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
1688                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1689                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
1690                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
1691                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1692                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
1693                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
1694                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
1695                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1696                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
1697                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1698                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1699                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1700                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1701                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1702                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
1703                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1704                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1705                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1706                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1707                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1708                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1709                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
1710                 + "translate[GSCE]")
1711     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
1712                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1713                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1714                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1715                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1716                 + "offsetTop[GCE],offsetWidth[GCE],"
1717                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1718                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
1719                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1720                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
1721                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
1722                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1723                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1724                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1725                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
1726                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1727                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
1728                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1729                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1730                 + "onpointermove[GSCE],onpointerout[GSCE],"
1731                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1732                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
1733                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
1734                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
1735                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
1736                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
1737                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
1738             EDGE = "accessKey[GSCE],autofocus[GSCE],"
1739                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1740                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1741                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1742                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1743                 + "offsetTop[GCE],offsetWidth[GCE],"
1744                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1745                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
1746                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1747                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
1748                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
1749                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1750                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1751                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1752                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
1753                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1754                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
1755                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1756                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1757                 + "onpointermove[GSCE],onpointerout[GSCE],"
1758                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1759                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
1760                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
1761                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
1762                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
1763                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
1764                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
1765             FF = "accessKey[GSCE],autofocus[GSCE],"
1766                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1767                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1768                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1769                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1770                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1771                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1772                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
1773                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
1774                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1775                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
1776                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1777                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1778                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
1779                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1780                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1781                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1782                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1783                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
1784                 + "onseeked[GSCE],onseeking[GSCE],"
1785                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1786                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
1787                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
1788                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
1789             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
1790                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1791                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1792                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1793                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1794                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1795                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1796                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
1797                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
1798                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1799                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
1800                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1801                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1802                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
1803                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1804                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1805                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1806                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1807                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
1808                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1809                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
1810                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
1811                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
1812     public void address() throws Exception {
1813         test("address");
1814     }
1815 
1816     /**
1817      * Test {@link org.htmlunit.html.HtmlApplet}.
1818      *
1819      * @throws Exception if the test fails
1820      */
1821     @Test
1822     @Alerts(CHROME = "constructor()",
1823             EDGE = "constructor()",
1824             FF = "constructor()",
1825             FF_ESR = "constructor()")
1826     public void applet() throws Exception {
1827         test("applet");
1828     }
1829 
1830     /**
1831      * Test {@link org.htmlunit.html.HtmlArea}.
1832      *
1833      * @throws Exception if the test fails
1834      */
1835     @Test
1836     @Alerts(CHROME = "alt[GSCE],attributionSrc[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],"
1837                 + "hostname[GSCE],href[GSCE],noHref[GSCE],origin[GCE],password[GSCE],pathname[GSCE],ping[GSCE],"
1838                 + "port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],search[GSCE],shape[GSCE],"
1839                 + "target[GSCE],toString(),"
1840                 + "username[GSCE]",
1841             EDGE = "alt[GSCE],attributionSrc[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],"
1842                 + "hostname[GSCE],href[GSCE],noHref[GSCE],origin[GCE],password[GSCE],pathname[GSCE],ping[GSCE],"
1843                 + "port[GSCE],protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],search[GSCE],shape[GSCE],"
1844                 + "target[GSCE],toString(),"
1845                 + "username[GSCE]",
1846             FF = "alt[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],hostname[GSCE],"
1847                 + "href[GSCE],noHref[GSCE],origin[GCE],password[GSCE],pathname[GSCE],ping[GSCE],port[GSCE],"
1848                 + "protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],search[GSCE],shape[GSCE],"
1849                 + "target[GSCE],toString(),"
1850                 + "username[GSCE]",
1851             FF_ESR = "alt[GSCE],constructor(),coords[GSCE],download[GSCE],hash[GSCE],host[GSCE],hostname[GSCE],"
1852                 + "href[GSCE],noHref[GSCE],origin[GCE],password[GSCE],pathname[GSCE],ping[GSCE],port[GSCE],"
1853                 + "protocol[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],search[GSCE],shape[GSCE],"
1854                 + "target[GSCE],toString(),"
1855                 + "username[GSCE]")
1856     @HtmlUnitNYI(CHROME = "alt[GSCE],constructor(),coords[GSCE],rel[GSCE],relList[GCE]",
1857             EDGE = "alt[GSCE],constructor(),coords[GSCE],rel[GSCE],relList[GCE]",
1858             FF_ESR = "alt[GSCE],constructor(),coords[GSCE],rel[GSCE],relList[GCE]",
1859             FF = "alt[GSCE],constructor(),coords[GSCE],rel[GSCE],relList[GCE]")
1860     public void area() throws Exception {
1861         test("area");
1862     }
1863 
1864     /**
1865      * Test {@link org.htmlunit.html.HtmlArticle}.
1866      *
1867      * @throws Exception if the test fails
1868      */
1869     @Test
1870     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
1871                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1872                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1873                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1874                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1875                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1876                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
1877                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1878                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1879                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1880                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
1881                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1882                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1883                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1884                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
1885                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
1886                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1887                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1888                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
1889                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
1890                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
1891                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1892                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1893                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1894                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1895                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1896                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1897                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
1898                 + "virtualKeyboardPolicy[GSCE],"
1899                 + "writingSuggestions[GSCE]",
1900             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
1901                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1902                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1903                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1904                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1905                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1906                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
1907                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1908                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1909                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1910                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
1911                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1912                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
1913                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
1914                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
1915                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
1916                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1917                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1918                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
1919                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
1920                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
1921                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1922                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1923                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1924                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1925                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1926                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1927                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
1928                 + "virtualKeyboardPolicy[GSCE],"
1929                 + "writingSuggestions[GSCE]",
1930             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
1931                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
1932                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
1933                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
1934                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
1935                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1936                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
1937                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
1938                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
1939                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
1940                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
1941                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
1942                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
1943                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
1944                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
1945                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
1946                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
1947                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
1948                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
1949                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
1950                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
1951                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
1952                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
1953                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
1954                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
1955                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
1956                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
1957                 + "togglePopover(),"
1958                 + "translate[GSCE]",
1959             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
1960                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
1961                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
1962                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
1963                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
1964                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
1965                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
1966                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
1967                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1968                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
1969                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
1970                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
1971                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
1972                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
1973                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
1974                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
1975                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
1976                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
1977                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
1978                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
1979                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
1980                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
1981                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
1982                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
1983                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
1984                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
1985                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
1986                 + "translate[GSCE]")
1987     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
1988                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
1989                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
1990                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
1991                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
1992                 + "offsetTop[GCE],offsetWidth[GCE],"
1993                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
1994                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
1995                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
1996                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
1997                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
1998                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
1999                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2000                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2001                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2002                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2003                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2004                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2005                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2006                 + "onpointermove[GSCE],onpointerout[GSCE],"
2007                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2008                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2009                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2010                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2011                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2012                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2013                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2014             EDGE = "accessKey[GSCE],autofocus[GSCE],"
2015                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2016                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2017                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2018                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2019                 + "offsetTop[GCE],offsetWidth[GCE],"
2020                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2021                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
2022                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2023                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
2024                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
2025                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2026                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2027                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2028                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2029                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2030                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2031                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2032                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2033                 + "onpointermove[GSCE],onpointerout[GSCE],"
2034                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2035                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2036                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2037                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2038                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2039                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2040                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2041             FF = "accessKey[GSCE],autofocus[GSCE],"
2042                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2043                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2044                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2045                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2046                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2047                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2048                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
2049                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
2050                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2051                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
2052                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2053                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2054                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
2055                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2056                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2057                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2058                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2059                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
2060                 + "onseeked[GSCE],onseeking[GSCE],"
2061                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2062                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
2063                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
2064                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2065             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
2066                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2067                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2068                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2069                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2070                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2071                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2072                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
2073                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
2074                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2075                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
2076                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2077                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2078                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
2079                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2080                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2081                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2082                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2083                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
2084                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2085                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
2086                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
2087                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
2088     public void article() throws Exception {
2089         test("article");
2090     }
2091 
2092     /**
2093      * Test {@link org.htmlunit.html.HtmlAside}.
2094      *
2095      * @throws Exception if the test fails
2096      */
2097     @Test
2098     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
2099                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2100                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2101                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2102                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2103                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2104                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
2105                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2106                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2107                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2108                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
2109                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2110                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2111                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2112                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
2113                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
2114                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2115                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2116                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
2117                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
2118                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
2119                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2120                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2121                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2122                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2123                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2124                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2125                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
2126                 + "virtualKeyboardPolicy[GSCE],"
2127                 + "writingSuggestions[GSCE]",
2128             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
2129                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2130                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2131                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2132                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2133                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2134                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
2135                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2136                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2137                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2138                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
2139                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2140                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2141                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2142                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
2143                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
2144                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2145                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2146                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
2147                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
2148                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
2149                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2150                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2151                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2152                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2153                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2154                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2155                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
2156                 + "virtualKeyboardPolicy[GSCE],"
2157                 + "writingSuggestions[GSCE]",
2158             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
2159                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
2160                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2161                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2162                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2163                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2164                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
2165                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2166                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2167                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2168                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2169                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
2170                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
2171                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2172                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
2173                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
2174                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
2175                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
2176                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
2177                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2178                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
2179                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
2180                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
2181                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
2182                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
2183                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
2184                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
2185                 + "togglePopover(),"
2186                 + "translate[GSCE]",
2187             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
2188                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2189                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
2190                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
2191                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
2192                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2193                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
2194                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
2195                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2196                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
2197                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
2198                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
2199                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2200                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
2201                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2202                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2203                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2204                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2205                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2206                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
2207                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2208                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2209                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2210                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2211                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2212                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2213                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
2214                 + "translate[GSCE]")
2215     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
2216                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2217                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2218                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2219                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2220                 + "offsetTop[GCE],offsetWidth[GCE],"
2221                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2222                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
2223                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2224                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
2225                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
2226                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2227                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2228                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2229                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2230                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2231                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2232                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2233                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2234                 + "onpointermove[GSCE],onpointerout[GSCE],"
2235                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2236                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2237                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2238                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2239                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2240                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2241                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2242             EDGE = "accessKey[GSCE],autofocus[GSCE],"
2243                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2244                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2245                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2246                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2247                 + "offsetTop[GCE],offsetWidth[GCE],"
2248                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2249                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
2250                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2251                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
2252                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
2253                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2254                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2255                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2256                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2257                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2258                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2259                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2260                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2261                 + "onpointermove[GSCE],onpointerout[GSCE],"
2262                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2263                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2264                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2265                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2266                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2267                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2268                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2269             FF = "accessKey[GSCE],autofocus[GSCE],"
2270                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2271                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2272                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2273                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2274                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2275                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2276                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
2277                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
2278                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2279                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
2280                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2281                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2282                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
2283                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2284                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2285                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2286                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2287                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
2288                 + "onseeked[GSCE],onseeking[GSCE],"
2289                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2290                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
2291                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
2292                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2293             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2294                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2295                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2296                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2297                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2298                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2299                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
2300                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
2301                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2302                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
2303                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2304                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2305                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
2306                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2307                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2308                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2309                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2310                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
2311                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2312                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
2313                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
2314                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
2315     public void aside() throws Exception {
2316         test("aside");
2317     }
2318 
2319     /**
2320      * Test {@link org.htmlunit.html.HtmlAudio}.
2321      *
2322      * @throws Exception if the test fails
2323      */
2324     @Test
2325     @Alerts(CHROME = "constructor()",
2326             EDGE = "constructor()",
2327             FF = "constructor()",
2328             FF_ESR = "constructor()")
2329     public void audio() throws Exception {
2330         test("audio");
2331     }
2332 
2333     /**
2334      * Test {@link org.htmlunit.html.HtmlBackgroundSound}.
2335      *
2336      * @throws Exception if the test fails
2337      */
2338     @Test
2339     @Alerts(CHROME = "constructor()",
2340             EDGE = "constructor()",
2341             FF = "constructor()",
2342             FF_ESR = "constructor()")
2343     public void bgsound() throws Exception {
2344         test("bgsound");
2345     }
2346 
2347     /**
2348      * Test {@link org.htmlunit.html.HtmlBase}.
2349      *
2350      * @throws Exception if the test fails
2351      */
2352     @Test
2353     @Alerts(CHROME = "constructor(),href[GSCE],target[GSCE]",
2354             EDGE = "constructor(),href[GSCE],target[GSCE]",
2355             FF = "constructor(),href[GSCE],target[GSCE]",
2356             FF_ESR = "constructor(),href[GSCE],target[GSCE]")
2357     public void base() throws Exception {
2358         test("base");
2359     }
2360 
2361     /**
2362      * Test {@link org.htmlunit.html.HtmlBaseFont}.
2363      *
2364      * @throws Exception if the test fails
2365      */
2366     @Test
2367     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
2368                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2369                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2370                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2371                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2372                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2373                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
2374                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2375                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2376                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2377                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
2378                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2379                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2380                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2381                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
2382                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
2383                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2384                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2385                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
2386                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
2387                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
2388                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2389                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2390                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2391                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2392                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2393                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2394                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
2395                 + "virtualKeyboardPolicy[GSCE],"
2396                 + "writingSuggestions[GSCE]",
2397             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
2398                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2399                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2400                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2401                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2402                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2403                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
2404                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2405                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2406                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2407                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
2408                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2409                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2410                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2411                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
2412                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
2413                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2414                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2415                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
2416                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
2417                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
2418                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2419                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2420                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2421                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2422                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2423                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2424                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
2425                 + "virtualKeyboardPolicy[GSCE],"
2426                 + "writingSuggestions[GSCE]",
2427             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
2428                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
2429                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2430                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2431                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2432                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2433                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
2434                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2435                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2436                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2437                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2438                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
2439                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
2440                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2441                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
2442                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
2443                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
2444                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
2445                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
2446                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2447                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
2448                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
2449                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
2450                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
2451                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
2452                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
2453                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
2454                 + "togglePopover(),"
2455                 + "translate[GSCE]",
2456             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
2457                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2458                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
2459                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
2460                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
2461                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2462                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
2463                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
2464                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2465                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
2466                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
2467                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
2468                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2469                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
2470                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2471                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2472                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2473                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2474                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2475                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
2476                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2477                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2478                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2479                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2480                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2481                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2482                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
2483                 + "translate[GSCE]")
2484     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
2485                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2486                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2487                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2488                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2489                 + "offsetTop[GCE],offsetWidth[GCE],"
2490                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2491                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
2492                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2493                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
2494                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
2495                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2496                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2497                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2498                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2499                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2500                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2501                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2502                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2503                 + "onpointermove[GSCE],onpointerout[GSCE],"
2504                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2505                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2506                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2507                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2508                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2509                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2510                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2511             EDGE = "accessKey[GSCE],autofocus[GSCE],"
2512                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2513                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2514                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2515                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2516                 + "offsetTop[GCE],offsetWidth[GCE],"
2517                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2518                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
2519                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2520                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
2521                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
2522                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2523                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2524                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2525                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2526                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2527                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2528                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2529                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2530                 + "onpointermove[GSCE],onpointerout[GSCE],"
2531                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2532                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2533                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2534                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2535                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2536                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2537                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2538             FF = "accessKey[GSCE],autofocus[GSCE],"
2539                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2540                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2541                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2542                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2543                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2544                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2545                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
2546                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
2547                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2548                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
2549                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2550                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2551                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
2552                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2553                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2554                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2555                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2556                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
2557                 + "onseeked[GSCE],onseeking[GSCE],"
2558                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2559                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
2560                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
2561                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2562             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
2563                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2564                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2565                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2566                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2567                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2568                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2569                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
2570                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
2571                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2572                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
2573                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2574                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2575                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
2576                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2577                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2578                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2579                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2580                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
2581                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2582                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
2583                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
2584                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
2585     public void basefont() throws Exception {
2586         test("basefont");
2587     }
2588 
2589     /**
2590      * Test {@link org.htmlunit.html.HtmlBidirectionalIsolation}.
2591      *
2592      * @throws Exception if the test fails
2593      */
2594     @Test
2595     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
2596                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2597                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2598                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2599                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2600                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2601                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
2602                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2603                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2604                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2605                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
2606                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2607                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2608                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2609                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
2610                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
2611                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2612                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2613                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
2614                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
2615                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
2616                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2617                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2618                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2619                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2620                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2621                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2622                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
2623                 + "virtualKeyboardPolicy[GSCE],"
2624                 + "writingSuggestions[GSCE]",
2625             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
2626                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2627                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2628                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2629                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2630                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2631                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
2632                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2633                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2634                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2635                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
2636                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2637                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2638                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2639                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
2640                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
2641                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2642                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2643                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
2644                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
2645                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
2646                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2647                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2648                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2649                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2650                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2651                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2652                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
2653                 + "virtualKeyboardPolicy[GSCE],"
2654                 + "writingSuggestions[GSCE]",
2655             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
2656                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
2657                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2658                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2659                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2660                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2661                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
2662                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2663                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2664                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2665                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2666                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
2667                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
2668                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2669                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
2670                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
2671                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
2672                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
2673                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
2674                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2675                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
2676                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
2677                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
2678                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
2679                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
2680                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
2681                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
2682                 + "togglePopover(),"
2683                 + "translate[GSCE]",
2684             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
2685                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2686                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
2687                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
2688                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
2689                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2690                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
2691                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
2692                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2693                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
2694                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
2695                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
2696                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2697                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
2698                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2699                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2700                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2701                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2702                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2703                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
2704                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2705                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2706                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2707                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2708                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2709                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2710                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
2711                 + "translate[GSCE]")
2712     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
2713                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2714                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2715                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2716                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2717                 + "offsetTop[GCE],offsetWidth[GCE],"
2718                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2719                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
2720                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2721                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
2722                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
2723                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2724                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2725                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2726                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2727                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2728                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2729                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2730                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2731                 + "onpointermove[GSCE],onpointerout[GSCE],"
2732                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2733                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2734                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2735                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2736                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2737                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2738                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2739             EDGE = "accessKey[GSCE],autofocus[GSCE],"
2740                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2741                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2742                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2743                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2744                 + "offsetTop[GCE],offsetWidth[GCE],"
2745                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2746                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
2747                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2748                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
2749                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
2750                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2751                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2752                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2753                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2754                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2755                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2756                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2757                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2758                 + "onpointermove[GSCE],onpointerout[GSCE],"
2759                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2760                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2761                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2762                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2763                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2764                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2765                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2766             FF = "accessKey[GSCE],autofocus[GSCE],"
2767                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2768                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2769                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2770                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2771                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2772                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2773                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
2774                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
2775                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2776                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
2777                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2778                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2779                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
2780                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2781                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2782                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2783                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2784                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
2785                 + "onseeked[GSCE],onseeking[GSCE],"
2786                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2787                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
2788                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
2789                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2790             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2791                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2792                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2793                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2794                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2795                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2796                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
2797                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
2798                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2799                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
2800                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2801                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2802                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
2803                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2804                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2805                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2806                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2807                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
2808                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2809                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
2810                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
2811                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
2812     public void bdi() throws Exception {
2813         test("bdi");
2814     }
2815 
2816     /**
2817      * Test {@link org.htmlunit.html.HtmlBidirectionalOverride}.
2818      *
2819      * @throws Exception if the test fails
2820      */
2821     @Test
2822     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
2823                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2824                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2825                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2826                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2827                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2828                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
2829                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2830                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2831                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2832                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
2833                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2834                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2835                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2836                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
2837                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
2838                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2839                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2840                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
2841                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
2842                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
2843                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2844                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2845                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2846                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2847                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2848                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2849                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
2850                 + "virtualKeyboardPolicy[GSCE],"
2851                 + "writingSuggestions[GSCE]",
2852             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
2853                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2854                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2855                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2856                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2857                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2858                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
2859                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2860                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2861                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2862                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
2863                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2864                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
2865                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
2866                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
2867                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
2868                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2869                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2870                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
2871                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
2872                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
2873                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2874                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2875                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2876                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2877                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2878                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2879                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
2880                 + "virtualKeyboardPolicy[GSCE],"
2881                 + "writingSuggestions[GSCE]",
2882             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
2883                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
2884                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
2885                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
2886                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2887                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2888                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
2889                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
2890                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
2891                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
2892                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
2893                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
2894                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
2895                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2896                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
2897                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
2898                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
2899                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
2900                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
2901                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2902                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
2903                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
2904                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
2905                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
2906                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
2907                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
2908                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
2909                 + "togglePopover(),"
2910                 + "translate[GSCE]",
2911             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
2912                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
2913                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
2914                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
2915                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
2916                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
2917                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
2918                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
2919                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2920                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
2921                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
2922                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
2923                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2924                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
2925                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2926                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
2927                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2928                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2929                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
2930                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
2931                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
2932                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
2933                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
2934                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
2935                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
2936                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
2937                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
2938                 + "translate[GSCE]")
2939     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
2940                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2941                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2942                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2943                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2944                 + "offsetTop[GCE],offsetWidth[GCE],"
2945                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2946                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
2947                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2948                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
2949                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
2950                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2951                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2952                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2953                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2954                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2955                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2956                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2957                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2958                 + "onpointermove[GSCE],onpointerout[GSCE],"
2959                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2960                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2961                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2962                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2963                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2964                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2965                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2966             EDGE = "accessKey[GSCE],autofocus[GSCE],"
2967                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2968                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2969                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2970                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2971                 + "offsetTop[GCE],offsetWidth[GCE],"
2972                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
2973                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
2974                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
2975                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
2976                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
2977                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
2978                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
2979                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
2980                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
2981                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
2982                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
2983                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
2984                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
2985                 + "onpointermove[GSCE],onpointerout[GSCE],"
2986                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
2987                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
2988                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
2989                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
2990                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
2991                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
2992                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
2993             FF = "accessKey[GSCE],autofocus[GSCE],"
2994                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
2995                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
2996                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
2997                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
2998                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
2999                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3000                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
3001                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
3002                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3003                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
3004                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3005                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3006                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
3007                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3008                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3009                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3010                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3011                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
3012                 + "onseeked[GSCE],onseeking[GSCE],"
3013                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3014                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
3015                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
3016                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3017             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3018                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3019                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3020                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3021                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3022                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3023                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
3024                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
3025                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3026                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
3027                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3028                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3029                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
3030                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3031                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3032                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3033                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3034                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
3035                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3036                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
3037                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
3038                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
3039     public void bdo() throws Exception {
3040         test("bdo");
3041     }
3042 
3043     /**
3044      * Test {@link org.htmlunit.html.HtmlBig}.
3045      *
3046      * @throws Exception if the test fails
3047      */
3048     @Test
3049     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
3050                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3051                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3052                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3053                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3054                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3055                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
3056                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3057                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3058                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3059                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
3060                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3061                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3062                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3063                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
3064                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
3065                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3066                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3067                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
3068                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
3069                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
3070                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3071                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3072                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3073                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3074                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3075                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3076                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
3077                 + "virtualKeyboardPolicy[GSCE],"
3078                 + "writingSuggestions[GSCE]",
3079             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
3080                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3081                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3082                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3083                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3084                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3085                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
3086                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3087                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3088                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3089                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
3090                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3091                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3092                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3093                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
3094                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
3095                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3096                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3097                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
3098                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
3099                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
3100                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3101                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3102                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3103                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3104                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3105                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3106                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
3107                 + "virtualKeyboardPolicy[GSCE],"
3108                 + "writingSuggestions[GSCE]",
3109             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
3110                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
3111                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3112                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3113                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3114                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3115                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
3116                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3117                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3118                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3119                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3120                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
3121                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
3122                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3123                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
3124                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
3125                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
3126                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
3127                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
3128                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3129                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
3130                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
3131                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
3132                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
3133                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
3134                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
3135                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
3136                 + "togglePopover(),"
3137                 + "translate[GSCE]",
3138             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
3139                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3140                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
3141                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
3142                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
3143                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3144                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
3145                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
3146                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3147                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
3148                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
3149                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
3150                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3151                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
3152                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3153                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3154                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3155                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3156                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3157                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
3158                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3159                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3160                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3161                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3162                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3163                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3164                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
3165                 + "translate[GSCE]")
3166     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
3167                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3168                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3169                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3170                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3171                 + "offsetTop[GCE],offsetWidth[GCE],"
3172                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3173                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
3174                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3175                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
3176                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
3177                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3178                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3179                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3180                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
3181                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3182                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
3183                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3184                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3185                 + "onpointermove[GSCE],onpointerout[GSCE],"
3186                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3187                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
3188                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
3189                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
3190                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
3191                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
3192                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3193             EDGE = "accessKey[GSCE],autofocus[GSCE],"
3194                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3195                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3196                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3197                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3198                 + "offsetTop[GCE],offsetWidth[GCE],"
3199                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3200                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
3201                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3202                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
3203                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
3204                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3205                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3206                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3207                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
3208                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3209                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
3210                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3211                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3212                 + "onpointermove[GSCE],onpointerout[GSCE],"
3213                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3214                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
3215                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
3216                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
3217                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
3218                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
3219                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3220             FF = "accessKey[GSCE],autofocus[GSCE],"
3221                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3222                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3223                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3224                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3225                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3226                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3227                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
3228                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
3229                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3230                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
3231                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3232                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3233                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
3234                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3235                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3236                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3237                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3238                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
3239                 + "onseeked[GSCE],onseeking[GSCE],"
3240                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3241                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
3242                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
3243                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3244             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3245                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3246                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3247                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3248                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3249                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3250                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
3251                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
3252                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3253                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
3254                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3255                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3256                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
3257                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3258                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3259                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3260                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3261                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
3262                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3263                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
3264                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
3265                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
3266     public void big() throws Exception {
3267         test("big");
3268     }
3269 
3270     /**
3271      * Test {@link org.htmlunit.html.HtmlBlink}.
3272      *
3273      * @throws Exception if the test fails
3274      */
3275     @Test
3276     @Alerts(CHROME = "constructor()",
3277             EDGE = "constructor()",
3278             FF = "constructor()",
3279             FF_ESR = "constructor()")
3280     public void blink() throws Exception {
3281         test("blink");
3282     }
3283 
3284     /**
3285      * Test {@link org.htmlunit.html.HtmlBlockQuote}.
3286      *
3287      * @throws Exception if the test fails
3288      */
3289     @Test
3290     @Alerts(CHROME = "cite[GSCE],constructor()",
3291             EDGE = "cite[GSCE],constructor()",
3292             FF = "cite[GSCE],constructor()",
3293             FF_ESR = "cite[GSCE],constructor()")
3294     public void blockquote() throws Exception {
3295         test("blockquote");
3296     }
3297 
3298     /**
3299      * Test {@link org.htmlunit.html.HtmlBody}.
3300      *
3301      * @throws Exception if the test fails
3302      */
3303     @Test
3304     @Alerts(CHROME = "aLink[GSCE],background[GSCE],bgColor[GSCE],constructor(),link[GSCE],onafterprint[GSCE],"
3305                 + "onbeforeprint[GSCE],onbeforeunload[GSCE],onblur[GSCE],onerror[GSCE],onfocus[GSCE],"
3306                 + "onhashchange[GSCE],onlanguagechange[GSCE],onload[GSCE],onmessage[GSCE],onmessageerror[GSCE],"
3307                 + "onoffline[GSCE],ononline[GSCE],onpagehide[GSCE],onpageshow[GSCE],onpopstate[GSCE],"
3308                 + "onrejectionhandled[GSCE],onresize[GSCE],onscroll[GSCE],onstorage[GSCE],"
3309                 + "onunhandledrejection[GSCE],onunload[GSCE],text[GSCE],"
3310                 + "vLink[GSCE]",
3311             EDGE = "aLink[GSCE],background[GSCE],bgColor[GSCE],constructor(),link[GSCE],onafterprint[GSCE],"
3312                 + "onbeforeprint[GSCE],onbeforeunload[GSCE],onblur[GSCE],onerror[GSCE],onfocus[GSCE],"
3313                 + "onhashchange[GSCE],onlanguagechange[GSCE],onload[GSCE],onmessage[GSCE],onmessageerror[GSCE],"
3314                 + "onoffline[GSCE],ononline[GSCE],onpagehide[GSCE],onpageshow[GSCE],onpopstate[GSCE],"
3315                 + "onrejectionhandled[GSCE],onresize[GSCE],onscroll[GSCE],onstorage[GSCE],"
3316                 + "onunhandledrejection[GSCE],onunload[GSCE],text[GSCE],"
3317                 + "vLink[GSCE]",
3318             FF = "aLink[GSCE],background[GSCE],bgColor[GSCE],constructor(),link[GSCE],onafterprint[GSCE],"
3319                 + "onbeforeprint[GSCE],onbeforeunload[GSCE],ongamepadconnected[GSCE],ongamepaddisconnected[GSCE],"
3320                 + "onhashchange[GSCE],onlanguagechange[GSCE],onmessage[GSCE],onmessageerror[GSCE],onoffline[GSCE],"
3321                 + "ononline[GSCE],onpagehide[GSCE],onpageshow[GSCE],onpopstate[GSCE],onrejectionhandled[GSCE],"
3322                 + "onstorage[GSCE],onunhandledrejection[GSCE],onunload[GSCE],text[GSCE],"
3323                 + "vLink[GSCE]",
3324             FF_ESR = "aLink[GSCE],background[GSCE],bgColor[GSCE],constructor(),link[GSCE],onafterprint[GSCE],"
3325                 + "onbeforeprint[GSCE],onbeforeunload[GSCE],ongamepadconnected[GSCE],ongamepaddisconnected[GSCE],"
3326                 + "onhashchange[GSCE],onlanguagechange[GSCE],onmessage[GSCE],onmessageerror[GSCE],onoffline[GSCE],"
3327                 + "ononline[GSCE],onpagehide[GSCE],onpageshow[GSCE],onpopstate[GSCE],onrejectionhandled[GSCE],"
3328                 + "onstorage[GSCE],onunhandledrejection[GSCE],onunload[GSCE],text[GSCE],"
3329                 + "vLink[GSCE]")
3330     public void body() throws Exception {
3331         test("body");
3332     }
3333 
3334     /**
3335      * Test {@link org.htmlunit.html.HtmlBold}.
3336      *
3337      * @throws Exception if the test fails
3338      */
3339     @Test
3340     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
3341                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3342                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3343                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3344                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3345                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3346                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
3347                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3348                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3349                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3350                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
3351                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3352                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3353                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3354                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
3355                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
3356                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3357                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3358                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
3359                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
3360                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
3361                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3362                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3363                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3364                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3365                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3366                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3367                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
3368                 + "virtualKeyboardPolicy[GSCE],"
3369                 + "writingSuggestions[GSCE]",
3370             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
3371                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3372                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3373                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3374                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3375                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3376                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
3377                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3378                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3379                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3380                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
3381                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3382                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3383                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3384                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
3385                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
3386                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3387                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3388                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
3389                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
3390                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
3391                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3392                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3393                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3394                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3395                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3396                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3397                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
3398                 + "virtualKeyboardPolicy[GSCE],"
3399                 + "writingSuggestions[GSCE]",
3400             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
3401                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
3402                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3403                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3404                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3405                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3406                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
3407                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3408                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3409                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3410                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3411                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
3412                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
3413                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3414                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
3415                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
3416                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
3417                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
3418                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
3419                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3420                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
3421                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
3422                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
3423                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
3424                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
3425                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
3426                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
3427                 + "togglePopover(),"
3428                 + "translate[GSCE]",
3429             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
3430                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3431                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
3432                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
3433                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
3434                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3435                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
3436                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
3437                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3438                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
3439                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
3440                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
3441                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3442                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
3443                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3444                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3445                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3446                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3447                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3448                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
3449                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3450                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3451                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3452                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3453                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3454                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3455                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
3456                 + "translate[GSCE]")
3457     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
3458                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3459                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3460                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3461                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3462                 + "offsetTop[GCE],offsetWidth[GCE],"
3463                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3464                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
3465                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3466                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
3467                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
3468                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3469                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3470                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3471                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
3472                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3473                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
3474                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3475                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3476                 + "onpointermove[GSCE],onpointerout[GSCE],"
3477                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3478                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
3479                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
3480                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
3481                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
3482                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
3483                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3484             EDGE = "accessKey[GSCE],autofocus[GSCE],"
3485                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3486                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3487                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3488                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3489                 + "offsetTop[GCE],offsetWidth[GCE],"
3490                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3491                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
3492                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3493                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
3494                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
3495                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3496                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3497                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3498                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
3499                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3500                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
3501                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3502                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3503                 + "onpointermove[GSCE],onpointerout[GSCE],"
3504                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3505                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
3506                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
3507                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
3508                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
3509                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
3510                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3511             FF = "accessKey[GSCE],autofocus[GSCE],"
3512                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3513                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3514                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3515                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3516                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3517                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3518                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
3519                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
3520                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3521                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
3522                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3523                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3524                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
3525                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3526                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3527                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3528                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3529                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
3530                 + "onseeked[GSCE],onseeking[GSCE],"
3531                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3532                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
3533                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
3534                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3535             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
3536                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3537                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3538                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3539                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3540                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3541                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3542                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
3543                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
3544                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3545                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
3546                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3547                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3548                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
3549                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3550                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3551                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3552                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3553                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
3554                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3555                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
3556                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
3557                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
3558     public void b() throws Exception {
3559         test("b");
3560     }
3561 
3562     /**
3563      * Test {@link org.htmlunit.html.HtmlBreak}.
3564      *
3565      * @throws Exception if the test fails
3566      */
3567     @Test
3568     @Alerts(CHROME = "clear[GSCE],constructor()",
3569             EDGE = "clear[GSCE],constructor()",
3570             FF = "clear[GSCE],constructor()",
3571             FF_ESR = "clear[GSCE],constructor()")
3572     public void br() throws Exception {
3573         test("br");
3574     }
3575 
3576     /**
3577      * Test {@link org.htmlunit.html.HtmlButton}.
3578      *
3579      * @throws Exception if the test fails
3580      */
3581     @Test
3582     @Alerts(CHROME = "checkValidity(),command[GSCE],commandForElement[GSCE],constructor(),disabled[GSCE],form[GCE],"
3583                 + "formAction[GSCE],formEnctype[GSCE],formMethod[GSCE],formNoValidate[GSCE],formTarget[GSCE],"
3584                 + "labels[GCE],name[GSCE],popoverTargetAction[GSCE],popoverTargetElement[GSCE],reportValidity(),"
3585                 + "setCustomValidity(),type[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],"
3586                 + "willValidate[GCE]",
3587             EDGE = "checkValidity(),command[GSCE],commandForElement[GSCE],constructor(),disabled[GSCE],form[GCE],"
3588                 + "formAction[GSCE],formEnctype[GSCE],formMethod[GSCE],formNoValidate[GSCE],formTarget[GSCE],"
3589                 + "labels[GCE],name[GSCE],popoverTargetAction[GSCE],popoverTargetElement[GSCE],reportValidity(),"
3590                 + "setCustomValidity(),type[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],"
3591                 + "willValidate[GCE]",
3592             FF = "checkValidity(),constructor(),disabled[GSCE],form[GCE],formAction[GSCE],formEnctype[GSCE],"
3593                 + "formMethod[GSCE],formNoValidate[GSCE],formTarget[GSCE],labels[GCE],name[GSCE],"
3594                 + "popoverTargetAction[GSCE],popoverTargetElement[GSCE],reportValidity(),setCustomValidity(),"
3595                 + "type[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],"
3596                 + "willValidate[GCE]",
3597             FF_ESR = "checkValidity(),constructor(),disabled[GSCE],form[GCE],formAction[GSCE],formEnctype[GSCE],"
3598                 + "formMethod[GSCE],formNoValidate[GSCE],formTarget[GSCE],labels[GCE],name[GSCE],"
3599                 + "popoverTargetAction[GSCE],popoverTargetElement[GSCE],reportValidity(),setCustomValidity(),"
3600                 + "type[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],"
3601                 + "willValidate[GCE]")
3602     @HtmlUnitNYI(CHROME = "checkValidity(),constructor(),disabled[GSCE],form[GCE],formNoValidate[GSCE],"
3603                 + "labels[GCE],name[GSCE],setCustomValidity(),type[GSCE],validity[GCE],value[GSCE],willValidate[GCE]",
3604             EDGE = "checkValidity(),constructor(),disabled[GSCE],form[GCE],formNoValidate[GSCE],"
3605                 + "labels[GCE],name[GSCE],setCustomValidity(),type[GSCE],validity[GCE],value[GSCE],willValidate[GCE]",
3606             FF_ESR = "checkValidity(),constructor(),disabled[GSCE],form[GCE],formNoValidate[GSCE],"
3607                 + "labels[GCE],name[GSCE],setCustomValidity(),type[GSCE],validity[GCE],value[GSCE],willValidate[GCE]",
3608             FF = "checkValidity(),constructor(),disabled[GSCE],form[GCE],formNoValidate[GSCE],"
3609                 + "labels[GCE],name[GSCE],setCustomValidity(),type[GSCE],validity[GCE],value[GSCE],willValidate[GCE]")
3610     public void button() throws Exception {
3611         test("button");
3612     }
3613 
3614     /**
3615      * Test {@link org.htmlunit.html.HtmlCanvas}.
3616      *
3617      * @throws Exception if the test fails
3618      */
3619     @Test
3620     @Alerts(CHROME = "captureStream(),constructor(),getContext(),height[GSCE],toBlob(),toDataURL(),"
3621                 + "transferControlToOffscreen(),"
3622                 + "width[GSCE]",
3623             EDGE = "captureStream(),constructor(),getContext(),height[GSCE],toBlob(),toDataURL(),"
3624                 + "transferControlToOffscreen(),"
3625                 + "width[GSCE]",
3626             FF = "captureStream(),constructor(),getContext(),height[GSCE],mozOpaque[GSCE],mozPrintCallback[GSCE],"
3627                 + "toBlob(),toDataURL(),transferControlToOffscreen(),"
3628                 + "width[GSCE]",
3629             FF_ESR = "captureStream(),constructor(),getContext(),height[GSCE],mozOpaque[GSCE],mozPrintCallback[GSCE],"
3630                 + "toBlob(),toDataURL(),transferControlToOffscreen(),"
3631                 + "width[GSCE]")
3632     @HtmlUnitNYI(CHROME = "constructor(),getContext(),height[GSCE],toDataURL(),width[GSCE]",
3633             EDGE = "constructor(),getContext(),height[GSCE],toDataURL(),width[GSCE]",
3634             FF_ESR = "constructor(),getContext(),height[GSCE],toDataURL(),width[GSCE]",
3635             FF = "constructor(),getContext(),height[GSCE],toDataURL(),width[GSCE]")
3636     public void canvas() throws Exception {
3637         test("canvas");
3638     }
3639 
3640     /**
3641      * Test {@link org.htmlunit.html.HtmlCaption}.
3642      *
3643      * @throws Exception if the test fails
3644      */
3645     @Test
3646     @Alerts(CHROME = "align[GSCE],constructor()",
3647             EDGE = "align[GSCE],constructor()",
3648             FF = "align[GSCE],constructor()",
3649             FF_ESR = "align[GSCE],constructor()")
3650     public void caption() throws Exception {
3651         test("caption");
3652     }
3653 
3654     /**
3655      * Test {@link org.htmlunit.html.HtmlCenter}.
3656      *
3657      * @throws Exception if the test fails
3658      */
3659     @Test
3660     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
3661                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3662                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3663                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3664                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3665                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3666                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
3667                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3668                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3669                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3670                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
3671                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3672                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3673                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3674                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
3675                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
3676                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3677                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3678                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
3679                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
3680                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
3681                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3682                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3683                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3684                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3685                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3686                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3687                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
3688                 + "virtualKeyboardPolicy[GSCE],"
3689                 + "writingSuggestions[GSCE]",
3690             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
3691                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3692                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3693                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3694                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3695                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3696                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
3697                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3698                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3699                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3700                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
3701                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3702                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3703                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3704                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
3705                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
3706                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3707                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3708                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
3709                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
3710                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
3711                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3712                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3713                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3714                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3715                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3716                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3717                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
3718                 + "virtualKeyboardPolicy[GSCE],"
3719                 + "writingSuggestions[GSCE]",
3720             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
3721                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
3722                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3723                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3724                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3725                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3726                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
3727                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3728                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3729                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3730                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3731                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
3732                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
3733                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3734                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
3735                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
3736                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
3737                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
3738                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
3739                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3740                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
3741                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
3742                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
3743                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
3744                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
3745                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
3746                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
3747                 + "togglePopover(),"
3748                 + "translate[GSCE]",
3749             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
3750                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3751                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
3752                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
3753                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
3754                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3755                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
3756                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
3757                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3758                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
3759                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
3760                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
3761                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3762                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
3763                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3764                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3765                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3766                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3767                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3768                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
3769                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3770                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3771                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3772                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3773                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3774                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3775                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
3776                 + "translate[GSCE]")
3777     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
3778                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3779                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3780                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3781                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3782                 + "offsetTop[GCE],offsetWidth[GCE],"
3783                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3784                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
3785                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3786                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
3787                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
3788                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3789                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3790                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3791                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
3792                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3793                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
3794                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3795                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3796                 + "onpointermove[GSCE],onpointerout[GSCE],"
3797                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3798                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
3799                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
3800                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
3801                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
3802                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
3803                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3804             EDGE = "accessKey[GSCE],autofocus[GSCE],"
3805                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3806                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3807                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3808                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3809                 + "offsetTop[GCE],offsetWidth[GCE],"
3810                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3811                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
3812                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3813                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
3814                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
3815                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3816                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3817                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3818                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
3819                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3820                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
3821                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3822                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3823                 + "onpointermove[GSCE],onpointerout[GSCE],"
3824                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3825                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
3826                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
3827                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
3828                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
3829                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
3830                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3831             FF = "accessKey[GSCE],autofocus[GSCE],"
3832                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3833                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3834                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3835                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3836                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3837                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3838                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
3839                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
3840                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3841                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
3842                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3843                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3844                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
3845                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3846                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3847                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3848                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3849                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
3850                 + "onseeked[GSCE],onseeking[GSCE],"
3851                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3852                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
3853                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
3854                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
3855             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
3856                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
3857                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
3858                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
3859                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
3860                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3861                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3862                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
3863                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
3864                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3865                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
3866                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3867                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3868                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
3869                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3870                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3871                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3872                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3873                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
3874                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3875                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
3876                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
3877                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
3878     public void center() throws Exception {
3879         test("center");
3880     }
3881 
3882     /**
3883      * Test {@link org.htmlunit.html.HtmlCitation}.
3884      *
3885      * @throws Exception if the test fails
3886      */
3887     @Test
3888     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
3889                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3890                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3891                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3892                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3893                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3894                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
3895                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3896                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3897                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3898                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
3899                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3900                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3901                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3902                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
3903                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
3904                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3905                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3906                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
3907                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
3908                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
3909                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3910                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3911                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3912                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3913                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3914                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3915                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
3916                 + "virtualKeyboardPolicy[GSCE],"
3917                 + "writingSuggestions[GSCE]",
3918             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
3919                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3920                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3921                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3922                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3923                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3924                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
3925                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3926                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3927                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3928                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
3929                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
3930                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
3931                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
3932                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
3933                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
3934                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3935                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3936                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
3937                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
3938                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
3939                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3940                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3941                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
3942                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
3943                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
3944                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
3945                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
3946                 + "virtualKeyboardPolicy[GSCE],"
3947                 + "writingSuggestions[GSCE]",
3948             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
3949                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
3950                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
3951                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
3952                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
3953                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
3954                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
3955                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
3956                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
3957                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
3958                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
3959                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
3960                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
3961                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
3962                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
3963                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
3964                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
3965                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
3966                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
3967                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
3968                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
3969                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
3970                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
3971                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
3972                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
3973                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
3974                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
3975                 + "togglePopover(),"
3976                 + "translate[GSCE]",
3977             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
3978                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
3979                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
3980                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
3981                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
3982                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
3983                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
3984                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
3985                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
3986                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
3987                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
3988                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
3989                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
3990                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
3991                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
3992                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
3993                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
3994                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
3995                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
3996                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
3997                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
3998                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
3999                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4000                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4001                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4002                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4003                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
4004                 + "translate[GSCE]")
4005     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
4006                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4007                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4008                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4009                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4010                 + "offsetTop[GCE],offsetWidth[GCE],"
4011                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4012                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
4013                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4014                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
4015                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
4016                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4017                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4018                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4019                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
4020                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4021                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
4022                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4023                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4024                 + "onpointermove[GSCE],onpointerout[GSCE],"
4025                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4026                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
4027                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
4028                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
4029                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
4030                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
4031                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4032             EDGE = "accessKey[GSCE],autofocus[GSCE],"
4033                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4034                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4035                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4036                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4037                 + "offsetTop[GCE],offsetWidth[GCE],"
4038                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4039                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
4040                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4041                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
4042                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
4043                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4044                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4045                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4046                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
4047                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4048                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
4049                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4050                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4051                 + "onpointermove[GSCE],onpointerout[GSCE],"
4052                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4053                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
4054                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
4055                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
4056                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
4057                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
4058                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4059             FF = "accessKey[GSCE],autofocus[GSCE],"
4060                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4061                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4062                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4063                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4064                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4065                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4066                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
4067                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
4068                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4069                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
4070                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4071                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4072                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
4073                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4074                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4075                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4076                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4077                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
4078                 + "onseeked[GSCE],onseeking[GSCE],"
4079                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4080                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
4081                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
4082                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4083             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4084                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4085                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4086                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4087                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4088                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4089                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
4090                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
4091                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4092                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
4093                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4094                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4095                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
4096                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4097                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4098                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4099                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4100                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
4101                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4102                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
4103                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
4104                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
4105     public void cite() throws Exception {
4106         test("cite");
4107     }
4108 
4109     /**
4110      * Test {@link org.htmlunit.html.HtmlCode}.
4111      *
4112      * @throws Exception if the test fails
4113      */
4114     @Test
4115     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
4116                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4117                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4118                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4119                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4120                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4121                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
4122                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4123                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4124                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4125                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
4126                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4127                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4128                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4129                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
4130                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
4131                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4132                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4133                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
4134                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
4135                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
4136                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4137                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4138                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4139                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4140                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4141                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4142                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
4143                 + "virtualKeyboardPolicy[GSCE],"
4144                 + "writingSuggestions[GSCE]",
4145             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
4146                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4147                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4148                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4149                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4150                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4151                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
4152                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4153                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4154                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4155                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
4156                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4157                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4158                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4159                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
4160                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
4161                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4162                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4163                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
4164                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
4165                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
4166                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4167                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4168                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4169                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4170                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4171                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4172                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
4173                 + "virtualKeyboardPolicy[GSCE],"
4174                 + "writingSuggestions[GSCE]",
4175             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
4176                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
4177                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4178                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4179                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4180                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4181                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
4182                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4183                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4184                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4185                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4186                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
4187                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
4188                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4189                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
4190                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
4191                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
4192                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
4193                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
4194                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4195                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
4196                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
4197                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
4198                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
4199                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
4200                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
4201                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
4202                 + "togglePopover(),"
4203                 + "translate[GSCE]",
4204             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
4205                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4206                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
4207                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
4208                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
4209                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4210                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
4211                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
4212                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4213                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
4214                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
4215                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
4216                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4217                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
4218                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4219                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4220                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4221                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4222                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4223                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
4224                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4225                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4226                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4227                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4228                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4229                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4230                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
4231                 + "translate[GSCE]")
4232     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
4233                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4234                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4235                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4236                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4237                 + "offsetTop[GCE],offsetWidth[GCE],"
4238                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4239                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
4240                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4241                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
4242                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
4243                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4244                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4245                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4246                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
4247                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4248                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
4249                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4250                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4251                 + "onpointermove[GSCE],onpointerout[GSCE],"
4252                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4253                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
4254                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
4255                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
4256                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
4257                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
4258                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4259             EDGE = "accessKey[GSCE],autofocus[GSCE],"
4260                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4261                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4262                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4263                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4264                 + "offsetTop[GCE],offsetWidth[GCE],"
4265                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4266                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
4267                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4268                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
4269                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
4270                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4271                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4272                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4273                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
4274                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4275                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
4276                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4277                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4278                 + "onpointermove[GSCE],onpointerout[GSCE],"
4279                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4280                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
4281                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
4282                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
4283                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
4284                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
4285                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4286             FF = "accessKey[GSCE],autofocus[GSCE],"
4287                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4288                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4289                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4290                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4291                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4292                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4293                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
4294                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
4295                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4296                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
4297                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4298                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4299                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
4300                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4301                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4302                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4303                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4304                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
4305                 + "onseeked[GSCE],onseeking[GSCE],"
4306                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4307                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
4308                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
4309                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4310             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4311                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4312                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4313                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4314                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4315                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4316                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
4317                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
4318                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4319                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
4320                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4321                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4322                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
4323                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4324                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4325                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4326                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4327                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
4328                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4329                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
4330                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
4331                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
4332     public void code() throws Exception {
4333         test("code");
4334     }
4335 
4336     /**
4337      * Test {@link org.htmlunit.html.HtmlCommand}.
4338      *
4339      * @throws Exception if the test fails
4340      */
4341     @Test
4342     @Alerts(CHROME = "constructor()",
4343             EDGE = "constructor()",
4344             FF = "constructor()",
4345             FF_ESR = "constructor()")
4346     public void command() throws Exception {
4347         test("command");
4348     }
4349 
4350     /**
4351      * Test {@link org.htmlunit.html.HtmlDataList}.
4352      *
4353      * @throws Exception if the test fails
4354      */
4355     @Test
4356     @Alerts(CHROME = "constructor(),options[GCE]",
4357             EDGE = "constructor(),options[GCE]",
4358             FF = "constructor(),options[GCE]",
4359             FF_ESR = "constructor(),options[GCE]")
4360     public void datalist() throws Exception {
4361         test("datalist");
4362     }
4363 
4364     /**
4365      * Test {@link org.htmlunit.html.HtmlDefinition}.
4366      *
4367      * @throws Exception if the test fails
4368      */
4369     @Test
4370     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
4371                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4372                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4373                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4374                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4375                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4376                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
4377                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4378                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4379                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4380                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
4381                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4382                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4383                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4384                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
4385                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
4386                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4387                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4388                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
4389                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
4390                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
4391                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4392                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4393                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4394                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4395                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4396                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4397                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
4398                 + "virtualKeyboardPolicy[GSCE],"
4399                 + "writingSuggestions[GSCE]",
4400             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
4401                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4402                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4403                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4404                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4405                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4406                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
4407                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4408                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4409                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4410                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
4411                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4412                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4413                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4414                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
4415                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
4416                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4417                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4418                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
4419                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
4420                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
4421                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4422                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4423                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4424                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4425                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4426                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4427                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
4428                 + "virtualKeyboardPolicy[GSCE],"
4429                 + "writingSuggestions[GSCE]",
4430             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
4431                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
4432                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4433                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4434                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4435                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4436                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
4437                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4438                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4439                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4440                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4441                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
4442                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
4443                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4444                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
4445                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
4446                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
4447                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
4448                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
4449                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4450                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
4451                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
4452                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
4453                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
4454                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
4455                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
4456                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
4457                 + "togglePopover(),"
4458                 + "translate[GSCE]",
4459             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
4460                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4461                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
4462                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
4463                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
4464                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4465                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
4466                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
4467                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4468                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
4469                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
4470                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
4471                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4472                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
4473                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4474                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4475                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4476                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4477                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4478                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
4479                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4480                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4481                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4482                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4483                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4484                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4485                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
4486                 + "translate[GSCE]")
4487     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
4488                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4489                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4490                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4491                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4492                 + "offsetTop[GCE],offsetWidth[GCE],"
4493                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4494                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
4495                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4496                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
4497                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
4498                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4499                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4500                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4501                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
4502                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4503                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
4504                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4505                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4506                 + "onpointermove[GSCE],onpointerout[GSCE],"
4507                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4508                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
4509                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
4510                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
4511                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
4512                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
4513                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4514             EDGE = "accessKey[GSCE],autofocus[GSCE],"
4515                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4516                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4517                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4518                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4519                 + "offsetTop[GCE],offsetWidth[GCE],"
4520                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4521                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
4522                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4523                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
4524                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
4525                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4526                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4527                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4528                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
4529                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4530                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
4531                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4532                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4533                 + "onpointermove[GSCE],onpointerout[GSCE],"
4534                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4535                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
4536                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
4537                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
4538                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
4539                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
4540                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4541             FF = "accessKey[GSCE],autofocus[GSCE],"
4542                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4543                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4544                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4545                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4546                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4547                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4548                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
4549                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
4550                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4551                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
4552                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4553                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4554                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
4555                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4556                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4557                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4558                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4559                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
4560                 + "onseeked[GSCE],onseeking[GSCE],"
4561                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4562                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
4563                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
4564                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4565             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4566                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4567                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4568                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4569                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4570                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4571                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
4572                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
4573                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4574                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
4575                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4576                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4577                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
4578                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4579                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4580                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4581                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4582                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
4583                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4584                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
4585                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
4586                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
4587     public void dfn() throws Exception {
4588         test("dfn");
4589     }
4590 
4591     /**
4592      * Test {@link org.htmlunit.html.HtmlDefinitionDescription}.
4593      *
4594      * @throws Exception if the test fails
4595      */
4596     @Test
4597     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
4598                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4599                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4600                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4601                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4602                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4603                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
4604                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4605                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4606                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4607                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
4608                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4609                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4610                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4611                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
4612                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
4613                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4614                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4615                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
4616                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
4617                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
4618                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4619                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4620                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4621                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4622                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4623                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4624                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
4625                 + "virtualKeyboardPolicy[GSCE],"
4626                 + "writingSuggestions[GSCE]",
4627             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
4628                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4629                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4630                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4631                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4632                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4633                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
4634                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4635                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4636                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4637                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
4638                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4639                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4640                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4641                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
4642                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
4643                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4644                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4645                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
4646                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
4647                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
4648                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4649                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4650                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4651                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4652                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4653                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4654                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
4655                 + "virtualKeyboardPolicy[GSCE],"
4656                 + "writingSuggestions[GSCE]",
4657             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
4658                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
4659                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4660                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4661                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4662                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4663                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
4664                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4665                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4666                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4667                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4668                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
4669                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
4670                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4671                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
4672                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
4673                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
4674                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
4675                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
4676                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4677                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
4678                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
4679                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
4680                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
4681                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
4682                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
4683                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
4684                 + "togglePopover(),"
4685                 + "translate[GSCE]",
4686             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
4687                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4688                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
4689                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
4690                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
4691                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4692                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
4693                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
4694                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4695                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
4696                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
4697                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
4698                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4699                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
4700                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4701                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4702                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4703                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4704                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4705                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
4706                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4707                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4708                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4709                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4710                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4711                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4712                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
4713                 + "translate[GSCE]")
4714     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
4715                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4716                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4717                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4718                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4719                 + "offsetTop[GCE],offsetWidth[GCE],"
4720                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4721                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
4722                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4723                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
4724                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
4725                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4726                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4727                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4728                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
4729                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4730                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
4731                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4732                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4733                 + "onpointermove[GSCE],onpointerout[GSCE],"
4734                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4735                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
4736                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
4737                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
4738                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
4739                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
4740                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4741             EDGE = "accessKey[GSCE],autofocus[GSCE],"
4742                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4743                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4744                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4745                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4746                 + "offsetTop[GCE],offsetWidth[GCE],"
4747                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4748                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
4749                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
4750                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
4751                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
4752                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4753                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
4754                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4755                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
4756                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
4757                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
4758                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4759                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4760                 + "onpointermove[GSCE],onpointerout[GSCE],"
4761                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4762                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
4763                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
4764                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
4765                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
4766                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
4767                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4768             FF = "accessKey[GSCE],autofocus[GSCE],"
4769                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4770                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4771                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4772                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4773                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4774                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4775                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
4776                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
4777                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4778                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
4779                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4780                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4781                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
4782                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4783                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4784                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4785                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4786                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
4787                 + "onseeked[GSCE],onseeking[GSCE],"
4788                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4789                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
4790                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
4791                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
4792             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
4793                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
4794                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
4795                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
4796                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
4797                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4798                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4799                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
4800                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
4801                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4802                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
4803                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4804                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4805                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
4806                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
4807                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4808                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4809                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
4810                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
4811                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4812                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
4813                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
4814                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
4815     public void dd() throws Exception {
4816         test("dd");
4817     }
4818 
4819     /**
4820      * Test {@link org.htmlunit.html.HtmlDeletedText}.
4821      *
4822      * @throws Exception if the test fails
4823      */
4824     @Test
4825     @Alerts(CHROME = "cite[GSCE],constructor(),dateTime[GSCE]",
4826             EDGE = "cite[GSCE],constructor(),dateTime[GSCE]",
4827             FF = "cite[GSCE],constructor(),dateTime[GSCE]",
4828             FF_ESR = "cite[GSCE],constructor(),dateTime[GSCE]")
4829     public void del() throws Exception {
4830         test("del");
4831     }
4832 
4833     /**
4834      * Test {@link org.htmlunit.html.HtmlDetails}.
4835      *
4836      * @throws Exception if the test fails
4837      */
4838     @Test
4839     @Alerts(CHROME = "constructor(),name[GSCE],open[GSCE]",
4840             EDGE = "constructor(),name[GSCE],open[GSCE]",
4841             FF = "constructor(),name[GSCE],open[GSCE]",
4842             FF_ESR = "constructor(),open[GSCE]")
4843     public void details() throws Exception {
4844         test("details");
4845     }
4846 
4847     /**
4848      * Test {@link org.htmlunit.html.HtmlDialog}.
4849      *
4850      * @throws Exception if the test fails
4851      */
4852     @Test
4853     @Alerts(CHROME = "close(),closedBy[GSCE],constructor(),open[GSCE],requestClose(),returnValue[GSCE],show(),"
4854                 + "showModal()",
4855             EDGE = "close(),closedBy[GSCE],constructor(),open[GSCE],requestClose(),returnValue[GSCE],show(),"
4856                 + "showModal()",
4857             FF = "close(),constructor(),open[GSCE],returnValue[GSCE],show(),showModal()",
4858             FF_ESR = "close(),constructor(),open[GSCE],returnValue[GSCE],show(),showModal()")
4859     @HtmlUnitNYI(CHROME = "close(),constructor(),open[GSCE],returnValue[GSCE],show(),showModal()",
4860             EDGE = "close(),constructor(),open[GSCE],returnValue[GSCE],show(),showModal()")
4861     public void dialog() throws Exception {
4862         test("dialog");
4863     }
4864 
4865     /**
4866      * Test {@link org.htmlunit.html.HtmlDirectory}.
4867      *
4868      * @throws Exception if the test fails
4869      */
4870     @Test
4871     @Alerts(CHROME = "compact[GSCE],constructor()",
4872             EDGE = "compact[GSCE],constructor()",
4873             FF = "compact[GSCE],constructor()",
4874             FF_ESR = "compact[GSCE],constructor()")
4875     public void dir() throws Exception {
4876         test("dir");
4877     }
4878 
4879     /**
4880      * Test {@link org.htmlunit.html.HtmlDivision}.
4881      *
4882      * @throws Exception if the test fails
4883      */
4884     @Test
4885     @Alerts(CHROME = "align[GSCE],constructor()",
4886             EDGE = "align[GSCE],constructor()",
4887             FF = "align[GSCE],constructor()",
4888             FF_ESR = "align[GSCE],constructor()")
4889     public void div() throws Exception {
4890         test("div");
4891     }
4892 
4893     /**
4894      * Test {@link org.htmlunit.html.HtmlDefinitionList}.
4895      *
4896      * @throws Exception if the test fails
4897      */
4898     @Test
4899     @Alerts(CHROME = "compact[GSCE],constructor()",
4900             EDGE = "compact[GSCE],constructor()",
4901             FF = "compact[GSCE],constructor()",
4902             FF_ESR = "compact[GSCE],constructor()")
4903     public void dl() throws Exception {
4904         test("dl");
4905     }
4906 
4907     /**
4908      * Test {@link org.htmlunit.html.HtmlDefinitionTerm}.
4909      *
4910      * @throws Exception if the test fails
4911      */
4912     @Test
4913     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
4914                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4915                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4916                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4917                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4918                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4919                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
4920                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4921                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4922                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4923                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
4924                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4925                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4926                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4927                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
4928                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
4929                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4930                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4931                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
4932                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
4933                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
4934                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4935                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4936                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4937                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4938                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4939                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4940                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
4941                 + "virtualKeyboardPolicy[GSCE],"
4942                 + "writingSuggestions[GSCE]",
4943             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
4944                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
4945                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4946                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4947                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4948                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
4949                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
4950                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4951                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4952                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4953                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
4954                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
4955                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
4956                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
4957                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
4958                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
4959                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
4960                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
4961                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
4962                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
4963                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
4964                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
4965                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
4966                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
4967                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
4968                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
4969                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
4970                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
4971                 + "virtualKeyboardPolicy[GSCE],"
4972                 + "writingSuggestions[GSCE]",
4973             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
4974                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
4975                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
4976                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
4977                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
4978                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
4979                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
4980                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
4981                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
4982                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
4983                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
4984                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
4985                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
4986                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
4987                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
4988                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
4989                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
4990                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
4991                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
4992                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
4993                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
4994                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
4995                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
4996                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
4997                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
4998                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
4999                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
5000                 + "togglePopover(),"
5001                 + "translate[GSCE]",
5002             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
5003                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5004                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
5005                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
5006                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
5007                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5008                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
5009                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
5010                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5011                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
5012                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
5013                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
5014                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5015                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
5016                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5017                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5018                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5019                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5020                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5021                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
5022                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5023                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5024                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5025                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5026                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5027                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5028                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
5029                 + "translate[GSCE]")
5030     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
5031                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5032                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5033                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5034                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5035                 + "offsetTop[GCE],offsetWidth[GCE],"
5036                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5037                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
5038                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5039                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
5040                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
5041                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5042                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5043                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5044                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
5045                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5046                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
5047                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5048                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5049                 + "onpointermove[GSCE],onpointerout[GSCE],"
5050                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5051                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
5052                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
5053                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
5054                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
5055                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
5056                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5057             EDGE = "accessKey[GSCE],autofocus[GSCE],"
5058                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5059                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5060                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5061                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5062                 + "offsetTop[GCE],offsetWidth[GCE],"
5063                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5064                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
5065                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5066                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
5067                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
5068                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5069                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5070                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5071                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
5072                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5073                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
5074                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5075                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5076                 + "onpointermove[GSCE],onpointerout[GSCE],"
5077                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5078                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
5079                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
5080                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
5081                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
5082                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
5083                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5084             FF = "accessKey[GSCE],autofocus[GSCE],"
5085                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5086                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5087                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5088                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5089                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5090                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5091                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
5092                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
5093                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5094                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
5095                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5096                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5097                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
5098                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5099                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5100                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5101                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5102                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
5103                 + "onseeked[GSCE],onseeking[GSCE],"
5104                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5105                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
5106                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
5107                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5108             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
5109                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5110                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5111                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5112                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5113                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5114                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5115                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
5116                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
5117                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5118                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
5119                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5120                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5121                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
5122                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5123                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5124                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5125                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5126                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
5127                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5128                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
5129                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
5130                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
5131     public void dt() throws Exception {
5132         test("dt");
5133     }
5134 
5135     /**
5136      * Test {@link org.htmlunit.html.HtmlEmbed}.
5137      *
5138      * @throws Exception if the test fails
5139      */
5140     @Test
5141     @Alerts(CHROME = "align[GSCE],constructor(),getSVGDocument(),height[GSCE],name[GSCE],src[GSCE],type[GSCE],"
5142                 + "width[GSCE]",
5143             EDGE = "align[GSCE],constructor(),getSVGDocument(),height[GSCE],name[GSCE],src[GSCE],type[GSCE],"
5144                 + "width[GSCE]",
5145             FF = "align[GSCE],constructor(),getSVGDocument(),height[GSCE],name[GSCE],src[GSCE],type[GSCE],"
5146                 + "width[GSCE]",
5147             FF_ESR = "align[GSCE],constructor(),getSVGDocument(),height[GSCE],name[GSCE],src[GSCE],type[GSCE],"
5148                 + "width[GSCE]")
5149     @HtmlUnitNYI(CHROME = "align[GSCE],constructor(),height[GSCE],name[GSCE],width[GSCE]",
5150             EDGE = "align[GSCE],constructor(),height[GSCE],name[GSCE],width[GSCE]",
5151             FF_ESR = "align[GSCE],constructor(),height[GSCE],name[GSCE],width[GSCE]",
5152             FF = "align[GSCE],constructor(),height[GSCE],name[GSCE],width[GSCE]")
5153     public void embed() throws Exception {
5154         test("embed");
5155     }
5156 
5157     /**
5158      * Test {@link org.htmlunit.html.HtmlEmphasis}.
5159      *
5160      * @throws Exception if the test fails
5161      */
5162     @Test
5163     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
5164                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5165                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5166                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5167                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5168                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5169                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
5170                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5171                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5172                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5173                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
5174                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5175                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5176                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5177                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
5178                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
5179                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5180                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5181                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
5182                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
5183                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
5184                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5185                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5186                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5187                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5188                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5189                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5190                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
5191                 + "virtualKeyboardPolicy[GSCE],"
5192                 + "writingSuggestions[GSCE]",
5193             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
5194                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5195                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5196                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5197                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5198                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5199                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
5200                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5201                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5202                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5203                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
5204                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5205                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5206                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5207                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
5208                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
5209                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5210                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5211                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
5212                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
5213                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
5214                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5215                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5216                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5217                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5218                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5219                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5220                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
5221                 + "virtualKeyboardPolicy[GSCE],"
5222                 + "writingSuggestions[GSCE]",
5223             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
5224                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
5225                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5226                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5227                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5228                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5229                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
5230                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5231                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5232                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5233                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5234                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
5235                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
5236                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5237                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
5238                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
5239                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
5240                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
5241                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
5242                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5243                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
5244                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
5245                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
5246                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
5247                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
5248                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
5249                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
5250                 + "togglePopover(),"
5251                 + "translate[GSCE]",
5252             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
5253                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5254                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
5255                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
5256                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
5257                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5258                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
5259                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
5260                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5261                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
5262                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
5263                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
5264                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5265                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
5266                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5267                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5268                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5269                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5270                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5271                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
5272                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5273                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5274                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5275                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5276                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5277                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5278                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
5279                 + "translate[GSCE]")
5280     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
5281                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5282                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5283                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5284                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5285                 + "offsetTop[GCE],offsetWidth[GCE],"
5286                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5287                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
5288                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5289                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
5290                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
5291                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5292                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5293                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5294                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
5295                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5296                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
5297                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5298                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5299                 + "onpointermove[GSCE],onpointerout[GSCE],"
5300                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5301                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
5302                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
5303                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
5304                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
5305                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
5306                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5307             EDGE = "accessKey[GSCE],autofocus[GSCE],"
5308                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5309                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5310                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5311                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5312                 + "offsetTop[GCE],offsetWidth[GCE],"
5313                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5314                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
5315                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5316                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
5317                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
5318                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5319                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5320                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5321                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
5322                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5323                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
5324                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5325                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5326                 + "onpointermove[GSCE],onpointerout[GSCE],"
5327                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5328                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
5329                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
5330                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
5331                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
5332                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
5333                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5334             FF = "accessKey[GSCE],autofocus[GSCE],"
5335                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5336                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5337                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5338                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5339                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5340                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5341                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
5342                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
5343                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5344                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
5345                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5346                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5347                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
5348                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5349                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5350                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5351                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5352                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
5353                 + "onseeked[GSCE],onseeking[GSCE],"
5354                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5355                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
5356                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
5357                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5358             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5359                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5360                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5361                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5362                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5363                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5364                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
5365                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
5366                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5367                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
5368                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5369                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5370                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
5371                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5372                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5373                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5374                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5375                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
5376                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5377                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
5378                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
5379                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
5380     public void em() throws Exception {
5381         test("em");
5382     }
5383 
5384     /**
5385      * Test {@link org.htmlunit.html.HtmlFieldSet}.
5386      *
5387      * @throws Exception if the test fails
5388      */
5389     @Test
5390     @Alerts(CHROME = "checkValidity(),constructor(),disabled[GSCE],elements[GCE],form[GCE],name[GSCE],reportValidity(),"
5391                 + "setCustomValidity(),type[GCE],validationMessage[GCE],validity[GCE],"
5392                 + "willValidate[GCE]",
5393             EDGE = "checkValidity(),constructor(),disabled[GSCE],elements[GCE],form[GCE],name[GSCE],reportValidity(),"
5394                 + "setCustomValidity(),type[GCE],validationMessage[GCE],validity[GCE],"
5395                 + "willValidate[GCE]",
5396             FF = "checkValidity(),constructor(),disabled[GSCE],elements[GCE],form[GCE],name[GSCE],reportValidity(),"
5397                 + "setCustomValidity(),type[GCE],validationMessage[GCE],validity[GCE],"
5398                 + "willValidate[GCE]",
5399             FF_ESR = "checkValidity(),constructor(),disabled[GSCE],elements[GCE],form[GCE],name[GSCE],reportValidity(),"
5400                 + "setCustomValidity(),type[GCE],validationMessage[GCE],validity[GCE],"
5401                 + "willValidate[GCE]")
5402     @HtmlUnitNYI(CHROME = "checkValidity(),constructor(),disabled[GSCE],form[GCE],name[GSCE],"
5403                 + "setCustomValidity(),validity[GCE],willValidate[GCE]",
5404             EDGE = "checkValidity(),constructor(),disabled[GSCE],form[GCE],name[GSCE],"
5405                 + "setCustomValidity(),validity[GCE],willValidate[GCE]",
5406             FF_ESR = "checkValidity(),constructor(),disabled[GSCE],form[GCE],name[GSCE],"
5407                 + "setCustomValidity(),validity[GCE],willValidate[GCE]",
5408             FF = "checkValidity(),constructor(),disabled[GSCE],form[GCE],name[GSCE],"
5409                 + "setCustomValidity(),validity[GCE],willValidate[GCE]")
5410     public void fieldset() throws Exception {
5411         test("fieldset");
5412     }
5413 
5414     /**
5415      * Test {@link org.htmlunit.html.HtmlFigureCaption}.
5416      *
5417      * @throws Exception if the test fails
5418      */
5419     @Test
5420     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
5421                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5422                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5423                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5424                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5425                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5426                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
5427                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5428                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5429                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5430                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
5431                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5432                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5433                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5434                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
5435                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
5436                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5437                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5438                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
5439                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
5440                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
5441                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5442                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5443                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5444                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5445                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5446                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5447                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
5448                 + "virtualKeyboardPolicy[GSCE],"
5449                 + "writingSuggestions[GSCE]",
5450             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
5451                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5452                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5453                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5454                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5455                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5456                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
5457                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5458                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5459                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5460                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
5461                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5462                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5463                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5464                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
5465                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
5466                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5467                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5468                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
5469                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
5470                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
5471                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5472                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5473                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5474                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5475                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5476                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5477                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
5478                 + "virtualKeyboardPolicy[GSCE],"
5479                 + "writingSuggestions[GSCE]",
5480             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
5481                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
5482                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5483                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5484                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5485                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5486                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
5487                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5488                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5489                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5490                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5491                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
5492                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
5493                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5494                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
5495                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
5496                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
5497                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
5498                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
5499                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5500                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
5501                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
5502                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
5503                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
5504                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
5505                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
5506                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
5507                 + "togglePopover(),"
5508                 + "translate[GSCE]",
5509             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
5510                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5511                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
5512                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
5513                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
5514                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5515                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
5516                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
5517                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5518                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
5519                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
5520                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
5521                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5522                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
5523                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5524                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5525                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5526                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5527                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5528                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
5529                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5530                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5531                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5532                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5533                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5534                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5535                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
5536                 + "translate[GSCE]")
5537     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
5538                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5539                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5540                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5541                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5542                 + "offsetTop[GCE],offsetWidth[GCE],"
5543                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5544                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
5545                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5546                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
5547                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
5548                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5549                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5550                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5551                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
5552                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5553                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
5554                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5555                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5556                 + "onpointermove[GSCE],onpointerout[GSCE],"
5557                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5558                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
5559                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
5560                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
5561                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
5562                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
5563                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5564             EDGE = "accessKey[GSCE],autofocus[GSCE],"
5565                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5566                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5567                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5568                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5569                 + "offsetTop[GCE],offsetWidth[GCE],"
5570                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5571                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
5572                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5573                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
5574                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
5575                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5576                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5577                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5578                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
5579                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5580                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
5581                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5582                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5583                 + "onpointermove[GSCE],onpointerout[GSCE],"
5584                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5585                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
5586                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
5587                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
5588                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
5589                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
5590                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5591             FF = "accessKey[GSCE],autofocus[GSCE],"
5592                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5593                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5594                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5595                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5596                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5597                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5598                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
5599                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
5600                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5601                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
5602                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5603                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5604                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
5605                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5606                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5607                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5608                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5609                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
5610                 + "onseeked[GSCE],onseeking[GSCE],"
5611                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5612                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
5613                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
5614                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5615             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5616                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5617                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5618                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5619                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5620                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5621                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
5622                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
5623                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5624                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
5625                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5626                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5627                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
5628                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5629                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5630                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5631                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5632                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
5633                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5634                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
5635                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
5636                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
5637     public void figcaption() throws Exception {
5638         test("figcaption");
5639     }
5640 
5641     /**
5642      * Test {@link org.htmlunit.html.HtmlFigure}.
5643      *
5644      * @throws Exception if the test fails
5645      */
5646     @Test
5647     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
5648                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5649                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5650                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5651                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5652                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5653                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
5654                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5655                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5656                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5657                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
5658                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5659                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5660                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5661                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
5662                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
5663                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5664                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5665                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
5666                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
5667                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
5668                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5669                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5670                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5671                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5672                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5673                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5674                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
5675                 + "virtualKeyboardPolicy[GSCE],"
5676                 + "writingSuggestions[GSCE]",
5677             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
5678                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5679                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5680                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5681                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5682                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5683                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
5684                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5685                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5686                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5687                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
5688                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5689                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5690                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5691                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
5692                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
5693                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5694                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5695                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
5696                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
5697                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
5698                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5699                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5700                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5701                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5702                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5703                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5704                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
5705                 + "virtualKeyboardPolicy[GSCE],"
5706                 + "writingSuggestions[GSCE]",
5707             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
5708                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
5709                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5710                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5711                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5712                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5713                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
5714                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5715                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5716                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5717                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5718                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
5719                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
5720                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5721                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
5722                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
5723                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
5724                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
5725                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
5726                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5727                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
5728                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
5729                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
5730                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
5731                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
5732                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
5733                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
5734                 + "togglePopover(),"
5735                 + "translate[GSCE]",
5736             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
5737                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5738                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
5739                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
5740                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
5741                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5742                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
5743                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
5744                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5745                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
5746                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
5747                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
5748                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5749                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
5750                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5751                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5752                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5753                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5754                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5755                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
5756                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5757                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5758                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5759                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5760                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5761                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5762                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
5763                 + "translate[GSCE]")
5764     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
5765                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5766                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5767                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5768                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5769                 + "offsetTop[GCE],offsetWidth[GCE],"
5770                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5771                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
5772                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5773                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
5774                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
5775                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5776                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5777                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5778                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
5779                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5780                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
5781                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5782                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5783                 + "onpointermove[GSCE],onpointerout[GSCE],"
5784                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5785                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
5786                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
5787                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
5788                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
5789                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
5790                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5791             EDGE = "accessKey[GSCE],autofocus[GSCE],"
5792                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5793                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5794                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5795                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5796                 + "offsetTop[GCE],offsetWidth[GCE],"
5797                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5798                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
5799                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
5800                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
5801                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
5802                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5803                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
5804                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
5805                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
5806                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
5807                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
5808                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5809                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5810                 + "onpointermove[GSCE],onpointerout[GSCE],"
5811                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
5812                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
5813                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
5814                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
5815                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
5816                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
5817                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5818             FF = "accessKey[GSCE],autofocus[GSCE],"
5819                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5820                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5821                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5822                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5823                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5824                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5825                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
5826                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
5827                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5828                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
5829                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5830                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5831                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
5832                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5833                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5834                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5835                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5836                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
5837                 + "onseeked[GSCE],onseeking[GSCE],"
5838                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5839                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
5840                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
5841                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
5842             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
5843                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
5844                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
5845                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
5846                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
5847                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5848                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
5849                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
5850                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
5851                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
5852                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
5853                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5854                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5855                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
5856                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
5857                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5858                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5859                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
5860                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
5861                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5862                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
5863                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
5864                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
5865     public void figure() throws Exception {
5866         test("figure");
5867     }
5868 
5869     /**
5870      * Test {@link org.htmlunit.html.HtmlFont}.
5871      *
5872      * @throws Exception if the test fails
5873      */
5874     @Test
5875     @Alerts(CHROME = "color[GSCE],constructor(),face[GSCE],size[GSCE]",
5876             EDGE = "color[GSCE],constructor(),face[GSCE],size[GSCE]",
5877             FF = "color[GSCE],constructor(),face[GSCE],size[GSCE]",
5878             FF_ESR = "color[GSCE],constructor(),face[GSCE],size[GSCE]")
5879     public void font() throws Exception {
5880         test("font");
5881     }
5882 
5883     /**
5884      * Test {@link org.htmlunit.html.HtmlForm}.
5885      *
5886      * @throws Exception if the test fails
5887      */
5888     @Test
5889     @Alerts(CHROME = "acceptCharset[GSCE],action[GSCE],autocomplete[GSCE],checkValidity(),constructor(),elements[GCE],"
5890                 + "encoding[GSCE],enctype[GSCE],length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],rel[GSCE],"
5891                 + "relList[GSCE],reportValidity(),requestSubmit(),reset(),submit(),"
5892                 + "target[GSCE]",
5893             EDGE = "acceptCharset[GSCE],action[GSCE],autocomplete[GSCE],checkValidity(),constructor(),elements[GCE],"
5894                 + "encoding[GSCE],enctype[GSCE],length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],rel[GSCE],"
5895                 + "relList[GSCE],reportValidity(),requestSubmit(),reset(),submit(),"
5896                 + "target[GSCE]",
5897             FF = "acceptCharset[GSCE],action[GSCE],autocomplete[GSCE],checkValidity(),constructor(),elements[GCE],"
5898                 + "encoding[GSCE],enctype[GSCE],length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],rel[GSCE],"
5899                 + "relList[GSCE],reportValidity(),requestSubmit(),reset(),submit(),"
5900                 + "target[GSCE]",
5901             FF_ESR = "acceptCharset[GSCE],action[GSCE],autocomplete[GSCE],checkValidity(),constructor(),elements[GCE],"
5902                 + "encoding[GSCE],enctype[GSCE],length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],rel[GSCE],"
5903                 + "relList[GSCE],reportValidity(),requestSubmit(),reset(),submit(),"
5904                 + "target[GSCE]")
5905     @HtmlUnitNYI(CHROME = "action[GSCE],checkValidity(),constructor(),elements[GCE],encoding[GSCE],enctype[GSCE],"
5906                 + "length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],rel[GSCE],relList[GSCE],"
5907                 + "requestSubmit(),reset(),submit(),target[GSCE]",
5908             EDGE = "action[GSCE],checkValidity(),constructor(),elements[GCE],encoding[GSCE],enctype[GSCE],"
5909                 + "length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],rel[GSCE],relList[GSCE],"
5910                 + "requestSubmit(),reset(),submit(),target[GSCE]",
5911             FF_ESR = "action[GSCE],checkValidity(),constructor(),elements[GCE],encoding[GSCE],enctype[GSCE],"
5912                 + "length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],rel[GSCE],relList[GSCE],"
5913                 + "requestSubmit(),reset(),submit(),target[GSCE]",
5914             FF = "action[GSCE],checkValidity(),constructor(),elements[GCE],encoding[GSCE],enctype[GSCE],"
5915                 + "length[GCE],method[GSCE],name[GSCE],noValidate[GSCE],rel[GSCE],relList[GSCE],"
5916                 + "requestSubmit(),reset(),submit(),target[GSCE]")
5917     public void form() throws Exception {
5918         test("form");
5919     }
5920 
5921     /**
5922      * Test {@link org.htmlunit.javascript.host.xml.FormData}.
5923      *
5924      * @throws Exception if the test fails
5925      */
5926     @Test
5927     @Alerts(CHROME = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),values()",
5928             EDGE = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),values()",
5929             FF = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),values()",
5930             FF_ESR = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),values()")
5931     public void formData() throws Exception {
5932         testString("", "new FormData()");
5933     }
5934 
5935     /**
5936      * Test {@link org.htmlunit.html.HtmlFooter}.
5937      *
5938      * @throws Exception if the test fails
5939      */
5940     @Test
5941     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
5942                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5943                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5944                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5945                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5946                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5947                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
5948                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5949                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5950                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5951                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
5952                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5953                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5954                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5955                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
5956                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
5957                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5958                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5959                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
5960                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
5961                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
5962                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5963                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5964                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5965                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5966                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5967                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5968                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
5969                 + "virtualKeyboardPolicy[GSCE],"
5970                 + "writingSuggestions[GSCE]",
5971             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
5972                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
5973                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
5974                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
5975                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
5976                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
5977                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
5978                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
5979                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
5980                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
5981                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
5982                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
5983                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
5984                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
5985                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
5986                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
5987                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
5988                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
5989                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
5990                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
5991                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
5992                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
5993                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
5994                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
5995                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
5996                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
5997                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
5998                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
5999                 + "virtualKeyboardPolicy[GSCE],"
6000                 + "writingSuggestions[GSCE]",
6001             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
6002                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
6003                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
6004                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
6005                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6006                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6007                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
6008                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6009                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
6010                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6011                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
6012                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
6013                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
6014                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6015                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
6016                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
6017                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
6018                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
6019                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
6020                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6021                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
6022                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
6023                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
6024                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
6025                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
6026                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
6027                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
6028                 + "togglePopover(),"
6029                 + "translate[GSCE]",
6030             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
6031                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
6032                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
6033                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
6034                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
6035                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
6036                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
6037                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
6038                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6039                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
6040                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
6041                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
6042                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6043                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
6044                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6045                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
6046                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6047                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6048                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
6049                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
6050                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
6051                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6052                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
6053                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
6054                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
6055                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
6056                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
6057                 + "translate[GSCE]")
6058     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
6059                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6060                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6061                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6062                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6063                 + "offsetTop[GCE],offsetWidth[GCE],"
6064                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6065                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
6066                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6067                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
6068                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
6069                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6070                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6071                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6072                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
6073                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6074                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
6075                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6076                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6077                 + "onpointermove[GSCE],onpointerout[GSCE],"
6078                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6079                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
6080                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
6081                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
6082                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
6083                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
6084                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
6085             EDGE = "accessKey[GSCE],autofocus[GSCE],"
6086                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6087                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6088                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6089                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6090                 + "offsetTop[GCE],offsetWidth[GCE],"
6091                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6092                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
6093                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6094                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
6095                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
6096                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6097                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6098                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6099                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
6100                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6101                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
6102                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6103                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6104                 + "onpointermove[GSCE],onpointerout[GSCE],"
6105                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6106                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
6107                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
6108                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
6109                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
6110                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
6111                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
6112             FF = "accessKey[GSCE],autofocus[GSCE],"
6113                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6114                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6115                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6116                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6117                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6118                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6119                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
6120                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
6121                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
6122                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
6123                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
6124                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
6125                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
6126                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
6127                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6128                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6129                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
6130                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
6131                 + "onseeked[GSCE],onseeking[GSCE],"
6132                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6133                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
6134                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
6135                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
6136             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
6137                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6138                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6139                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6140                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6141                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6142                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6143                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
6144                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
6145                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
6146                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
6147                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
6148                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
6149                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
6150                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
6151                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6152                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6153                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
6154                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
6155                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6156                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
6157                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
6158                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
6159     public void footer() throws Exception {
6160         test("footer");
6161     }
6162 
6163     /**
6164      * Test {@link org.htmlunit.html.HtmlFrame}.
6165      *
6166      * @throws Exception if the test fails
6167      */
6168     @Test
6169     @Alerts(CHROME = "constructor(),contentDocument[GCE],contentWindow[GCE],frameBorder[GSCE],longDesc[GSCE],"
6170                 + "marginHeight[GSCE],marginWidth[GSCE],name[GSCE],noResize[GSCE],scrolling[GSCE],"
6171                 + "src[GSCE]",
6172             EDGE = "constructor(),contentDocument[GCE],contentWindow[GCE],frameBorder[GSCE],longDesc[GSCE],"
6173                 + "marginHeight[GSCE],marginWidth[GSCE],name[GSCE],noResize[GSCE],scrolling[GSCE],"
6174                 + "src[GSCE]",
6175             FF = "constructor(),contentDocument[GCE],contentWindow[GCE],frameBorder[GSCE],longDesc[GSCE],"
6176                 + "marginHeight[GSCE],marginWidth[GSCE],name[GSCE],noResize[GSCE],scrolling[GSCE],"
6177                 + "src[GSCE]",
6178             FF_ESR = "constructor(),contentDocument[GCE],contentWindow[GCE],frameBorder[GSCE],longDesc[GSCE],"
6179                 + "marginHeight[GSCE],marginWidth[GSCE],name[GSCE],noResize[GSCE],scrolling[GSCE],"
6180                 + "src[GSCE]")
6181     @HtmlUnitNYI(CHROME = "constructor(),contentDocument[GCE],contentWindow[GCE],name[GSCE],src[GSCE]",
6182             EDGE = "constructor(),contentDocument[GCE],contentWindow[GCE],name[GSCE],src[GSCE]",
6183             FF_ESR = "constructor(),contentDocument[GCE],contentWindow[GCE],name[GSCE],src[GSCE]",
6184             FF = "constructor(),contentDocument[GCE],contentWindow[GCE],name[GSCE],src[GSCE]")
6185     public void frame() throws Exception {
6186         test("frame");
6187     }
6188 
6189     /**
6190      * Test {@link org.htmlunit.html.HtmlFrameSet}.
6191      *
6192      * @throws Exception if the test fails
6193      */
6194     @Test
6195     @Alerts(CHROME = "cols[GSCE],constructor(),onafterprint[GSCE],onbeforeprint[GSCE],onbeforeunload[GSCE],"
6196                 + "onblur[GSCE],onerror[GSCE],onfocus[GSCE],onhashchange[GSCE],onlanguagechange[GSCE],onload[GSCE],"
6197                 + "onmessage[GSCE],onmessageerror[GSCE],onoffline[GSCE],ononline[GSCE],onpagehide[GSCE],"
6198                 + "onpageshow[GSCE],onpopstate[GSCE],onrejectionhandled[GSCE],onresize[GSCE],onscroll[GSCE],"
6199                 + "onstorage[GSCE],onunhandledrejection[GSCE],onunload[GSCE],"
6200                 + "rows[GSCE]",
6201             EDGE = "cols[GSCE],constructor(),onafterprint[GSCE],onbeforeprint[GSCE],onbeforeunload[GSCE],"
6202                 + "onblur[GSCE],onerror[GSCE],onfocus[GSCE],onhashchange[GSCE],onlanguagechange[GSCE],onload[GSCE],"
6203                 + "onmessage[GSCE],onmessageerror[GSCE],onoffline[GSCE],ononline[GSCE],onpagehide[GSCE],"
6204                 + "onpageshow[GSCE],onpopstate[GSCE],onrejectionhandled[GSCE],onresize[GSCE],onscroll[GSCE],"
6205                 + "onstorage[GSCE],onunhandledrejection[GSCE],onunload[GSCE],"
6206                 + "rows[GSCE]",
6207             FF = "cols[GSCE],constructor(),onafterprint[GSCE],onbeforeprint[GSCE],onbeforeunload[GSCE],"
6208                 + "ongamepadconnected[GSCE],ongamepaddisconnected[GSCE],onhashchange[GSCE],onlanguagechange[GSCE],"
6209                 + "onmessage[GSCE],onmessageerror[GSCE],onoffline[GSCE],ononline[GSCE],onpagehide[GSCE],"
6210                 + "onpageshow[GSCE],onpopstate[GSCE],onrejectionhandled[GSCE],onstorage[GSCE],"
6211                 + "onunhandledrejection[GSCE],onunload[GSCE],"
6212                 + "rows[GSCE]",
6213             FF_ESR = "cols[GSCE],constructor(),onafterprint[GSCE],onbeforeprint[GSCE],onbeforeunload[GSCE],"
6214                 + "ongamepadconnected[GSCE],ongamepaddisconnected[GSCE],onhashchange[GSCE],onlanguagechange[GSCE],"
6215                 + "onmessage[GSCE],onmessageerror[GSCE],onoffline[GSCE],ononline[GSCE],onpagehide[GSCE],"
6216                 + "onpageshow[GSCE],onpopstate[GSCE],onrejectionhandled[GSCE],onstorage[GSCE],"
6217                 + "onunhandledrejection[GSCE],onunload[GSCE],"
6218                 + "rows[GSCE]")
6219     @HtmlUnitNYI(CHROME = "cols[GSCE],constructor(),onafterprint[GSCE],onbeforeprint[GSCE],onbeforeunload[GSCE],"
6220                 + "onhashchange[GSCE],onlanguagechange[GSCE],onmessage[GSCE],onmessageerror[GSCE],onoffline[GSCE],"
6221                 + "ononline[GSCE],onpagehide[GSCE],onpageshow[GSCE],onpopstate[GSCE],onrejectionhandled[GSCE],"
6222                 + "onstorage[GSCE],onunhandledrejection[GSCE],onunload[GSCE],rows[GSCE]",
6223             EDGE = "cols[GSCE],constructor(),onafterprint[GSCE],onbeforeprint[GSCE],onbeforeunload[GSCE],"
6224                 + "onhashchange[GSCE],onlanguagechange[GSCE],onmessage[GSCE],onmessageerror[GSCE],onoffline[GSCE],"
6225                 + "ononline[GSCE],onpagehide[GSCE],onpageshow[GSCE],onpopstate[GSCE],onrejectionhandled[GSCE],"
6226                 + "onstorage[GSCE],onunhandledrejection[GSCE],onunload[GSCE],rows[GSCE]")
6227     public void frameset() throws Exception {
6228         test("frameset");
6229     }
6230 
6231     /**
6232      * Test {@link org.htmlunit.html.HtmlHead}.
6233      *
6234      * @throws Exception if the test fails
6235      */
6236     @Test
6237     @Alerts(CHROME = "constructor()",
6238             EDGE = "constructor()",
6239             FF = "constructor()",
6240             FF_ESR = "constructor()")
6241     public void head() throws Exception {
6242         test("head");
6243     }
6244 
6245     /**
6246      * Test {@link org.htmlunit.html.HtmlHeader}.
6247      *
6248      * @throws Exception if the test fails
6249      */
6250     @Test
6251     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
6252                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
6253                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
6254                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
6255                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6256                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
6257                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
6258                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6259                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
6260                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6261                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
6262                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6263                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
6264                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
6265                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
6266                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
6267                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6268                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6269                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
6270                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
6271                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
6272                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
6273                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6274                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
6275                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
6276                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
6277                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
6278                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
6279                 + "virtualKeyboardPolicy[GSCE],"
6280                 + "writingSuggestions[GSCE]",
6281             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
6282                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
6283                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
6284                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
6285                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6286                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
6287                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
6288                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6289                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
6290                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6291                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
6292                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6293                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
6294                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
6295                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
6296                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
6297                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6298                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6299                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
6300                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
6301                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
6302                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
6303                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6304                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
6305                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
6306                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
6307                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
6308                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
6309                 + "virtualKeyboardPolicy[GSCE],"
6310                 + "writingSuggestions[GSCE]",
6311             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
6312                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
6313                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
6314                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
6315                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6316                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6317                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
6318                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6319                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
6320                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6321                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
6322                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
6323                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
6324                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6325                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
6326                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
6327                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
6328                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
6329                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
6330                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6331                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
6332                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
6333                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
6334                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
6335                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
6336                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
6337                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
6338                 + "togglePopover(),"
6339                 + "translate[GSCE]",
6340             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
6341                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
6342                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
6343                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
6344                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
6345                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
6346                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
6347                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
6348                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6349                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
6350                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
6351                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
6352                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6353                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
6354                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6355                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
6356                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6357                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6358                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
6359                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
6360                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
6361                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6362                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
6363                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
6364                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
6365                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
6366                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
6367                 + "translate[GSCE]")
6368     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
6369                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6370                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6371                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6372                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6373                 + "offsetTop[GCE],offsetWidth[GCE],"
6374                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6375                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
6376                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6377                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
6378                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
6379                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6380                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6381                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6382                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
6383                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6384                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
6385                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6386                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6387                 + "onpointermove[GSCE],onpointerout[GSCE],"
6388                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6389                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
6390                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
6391                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
6392                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
6393                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
6394                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
6395             EDGE = "accessKey[GSCE],autofocus[GSCE],"
6396                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6397                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6398                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6399                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6400                 + "offsetTop[GCE],offsetWidth[GCE],"
6401                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6402                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
6403                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6404                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
6405                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
6406                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6407                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6408                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6409                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
6410                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6411                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
6412                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6413                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6414                 + "onpointermove[GSCE],onpointerout[GSCE],"
6415                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6416                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
6417                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
6418                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
6419                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
6420                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
6421                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
6422             FF = "accessKey[GSCE],autofocus[GSCE],"
6423                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6424                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6425                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6426                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6427                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6428                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6429                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
6430                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
6431                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
6432                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
6433                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
6434                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
6435                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
6436                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
6437                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6438                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6439                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
6440                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
6441                 + "onseeked[GSCE],onseeking[GSCE],"
6442                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6443                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
6444                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
6445                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
6446             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
6447                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6448                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6449                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6450                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6451                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6452                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6453                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
6454                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
6455                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
6456                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
6457                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
6458                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
6459                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
6460                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
6461                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6462                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6463                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
6464                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
6465                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6466                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
6467                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
6468                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
6469     public void header() throws Exception {
6470         test("header");
6471     }
6472 
6473     /**
6474      * Test {@link org.htmlunit.html.HtmlHeading1}.
6475      *
6476      * @throws Exception if the test fails
6477      */
6478     @Test
6479     @Alerts(CHROME = "align[GSCE],constructor()",
6480             EDGE = "align[GSCE],constructor()",
6481             FF = "align[GSCE],constructor()",
6482             FF_ESR = "align[GSCE],constructor()")
6483     public void h1() throws Exception {
6484         test("h1");
6485     }
6486 
6487     /**
6488      * Test {@link org.htmlunit.html.HtmlHeading2}.
6489      *
6490      * @throws Exception if the test fails
6491      */
6492     @Test
6493     @Alerts(CHROME = "align[GSCE],constructor()",
6494             EDGE = "align[GSCE],constructor()",
6495             FF = "align[GSCE],constructor()",
6496             FF_ESR = "align[GSCE],constructor()")
6497     public void h2() throws Exception {
6498         test("h2");
6499     }
6500 
6501     /**
6502      * Test {@link org.htmlunit.html.HtmlHeading3}.
6503      *
6504      * @throws Exception if the test fails
6505      */
6506     @Test
6507     @Alerts(CHROME = "align[GSCE],constructor()",
6508             EDGE = "align[GSCE],constructor()",
6509             FF = "align[GSCE],constructor()",
6510             FF_ESR = "align[GSCE],constructor()")
6511     public void h3() throws Exception {
6512         test("h3");
6513     }
6514 
6515     /**
6516      * Test {@link org.htmlunit.html.HtmlHeading4}.
6517      *
6518      * @throws Exception if the test fails
6519      */
6520     @Test
6521     @Alerts(CHROME = "align[GSCE],constructor()",
6522             EDGE = "align[GSCE],constructor()",
6523             FF = "align[GSCE],constructor()",
6524             FF_ESR = "align[GSCE],constructor()")
6525     public void h4() throws Exception {
6526         test("h4");
6527     }
6528 
6529     /**
6530      * Test {@link org.htmlunit.html.HtmlHeading5}.
6531      *
6532      * @throws Exception if the test fails
6533      */
6534     @Test
6535     @Alerts(CHROME = "align[GSCE],constructor()",
6536             EDGE = "align[GSCE],constructor()",
6537             FF = "align[GSCE],constructor()",
6538             FF_ESR = "align[GSCE],constructor()")
6539     public void h5() throws Exception {
6540         test("h5");
6541     }
6542 
6543     /**
6544      * Test {@link org.htmlunit.html.HtmlHeading6}.
6545      *
6546      * @throws Exception if the test fails
6547      */
6548     @Test
6549     @Alerts(CHROME = "align[GSCE],constructor()",
6550             EDGE = "align[GSCE],constructor()",
6551             FF = "align[GSCE],constructor()",
6552             FF_ESR = "align[GSCE],constructor()")
6553     public void h6() throws Exception {
6554         test("h6");
6555     }
6556 
6557     /**
6558      * Test {@link org.htmlunit.html.HtmlHorizontalRule}.
6559      *
6560      * @throws Exception if the test fails
6561      */
6562     @Test
6563     @Alerts(CHROME = "align[GSCE],color[GSCE],constructor(),noShade[GSCE],size[GSCE],width[GSCE]",
6564             EDGE = "align[GSCE],color[GSCE],constructor(),noShade[GSCE],size[GSCE],width[GSCE]",
6565             FF = "align[GSCE],color[GSCE],constructor(),noShade[GSCE],size[GSCE],width[GSCE]",
6566             FF_ESR = "align[GSCE],color[GSCE],constructor(),noShade[GSCE],size[GSCE],width[GSCE]")
6567     @HtmlUnitNYI(CHROME = "align[GSCE],color[GSCE],constructor(),width[GSCE]",
6568             EDGE = "align[GSCE],color[GSCE],constructor(),width[GSCE]",
6569             FF_ESR = "align[GSCE],color[GSCE],constructor(),width[GSCE]",
6570             FF = "align[GSCE],color[GSCE],constructor(),width[GSCE]")
6571     public void hr() throws Exception {
6572         test("hr");
6573     }
6574 
6575     /**
6576      * Test {@link org.htmlunit.html.HtmlHtml}.
6577      *
6578      * @throws Exception if the test fails
6579      */
6580     @Test
6581     @Alerts(CHROME = "constructor(),version[GSCE]",
6582             EDGE = "constructor(),version[GSCE]",
6583             FF = "constructor(),version[GSCE]",
6584             FF_ESR = "constructor(),version[GSCE]")
6585     public void html() throws Exception {
6586         test("html");
6587     }
6588 
6589     /**
6590      * Test {@link org.htmlunit.html.HtmlInlineFrame}.
6591      *
6592      * @throws Exception if the test fails
6593      */
6594     @Test
6595     @Alerts(CHROME = "adAuctionHeaders[GSCE],align[GSCE],allow[GSCE],allowFullscreen[GSCE],allowPaymentRequest[GSCE],"
6596                 + "browsingTopics[GSCE],constructor(),contentDocument[GCE],contentWindow[GCE],credentialless[GSCE],"
6597                 + "csp[GSCE],featurePolicy[GCE],frameBorder[GSCE],getSVGDocument(),height[GSCE],loading[GSCE],"
6598                 + "longDesc[GSCE],marginHeight[GSCE],marginWidth[GSCE],name[GSCE],privateToken[GSCE],"
6599                 + "referrerPolicy[GSCE],sandbox[GSCE],scrolling[GSCE],sharedStorageWritable[GSCE],src[GSCE],"
6600                 + "srcdoc[GSCE],"
6601                 + "width[GSCE]",
6602             EDGE = "adAuctionHeaders[GSCE],align[GSCE],allow[GSCE],allowFullscreen[GSCE],allowPaymentRequest[GSCE],"
6603                 + "browsingTopics[GSCE],constructor(),contentDocument[GCE],contentWindow[GCE],credentialless[GSCE],"
6604                 + "csp[GSCE],featurePolicy[GCE],frameBorder[GSCE],getSVGDocument(),height[GSCE],loading[GSCE],"
6605                 + "longDesc[GSCE],marginHeight[GSCE],marginWidth[GSCE],name[GSCE],privateToken[GSCE],"
6606                 + "referrerPolicy[GSCE],sandbox[GSCE],scrolling[GSCE],sharedStorageWritable[GSCE],src[GSCE],"
6607                 + "srcdoc[GSCE],"
6608                 + "width[GSCE]",
6609             FF = "align[GSCE],allow[GSCE],allowFullscreen[GSCE],constructor(),contentDocument[GCE],"
6610                 + "contentWindow[GCE],frameBorder[GSCE],getSVGDocument(),height[GSCE],loading[GSCE],longDesc[GSCE],"
6611                 + "marginHeight[GSCE],marginWidth[GSCE],name[GSCE],referrerPolicy[GSCE],sandbox[GSCE],"
6612                 + "scrolling[GSCE],src[GSCE],srcdoc[GSCE],"
6613                 + "width[GSCE]",
6614             FF_ESR = "align[GSCE],allow[GSCE],allowFullscreen[GSCE],constructor(),contentDocument[GCE],"
6615                 + "contentWindow[GCE],frameBorder[GSCE],getSVGDocument(),height[GSCE],loading[GSCE],longDesc[GSCE],"
6616                 + "marginHeight[GSCE],marginWidth[GSCE],name[GSCE],referrerPolicy[GSCE],sandbox[GSCE],"
6617                 + "scrolling[GSCE],src[GSCE],srcdoc[GSCE],"
6618                 + "width[GSCE]")
6619     @HtmlUnitNYI(CHROME = "align[GSCE],constructor(),contentDocument[GCE],contentWindow[GCE],"
6620                 + "height[GSCE],name[GSCE],src[GSCE],width[GSCE]",
6621             EDGE = "align[GSCE],constructor(),contentDocument[GCE],contentWindow[GCE],"
6622                 + "height[GSCE],name[GSCE],src[GSCE],width[GSCE]",
6623             FF_ESR = "align[GSCE],constructor(),contentDocument[GCE],contentWindow[GCE],"
6624                 + "height[GSCE],name[GSCE],src[GSCE],width[GSCE]",
6625             FF = "align[GSCE],constructor(),contentDocument[GCE],contentWindow[GCE],"
6626                 + "height[GSCE],name[GSCE],src[GSCE],width[GSCE]")
6627     public void iframe() throws Exception {
6628         test("iframe");
6629     }
6630 
6631     /**
6632      * Test {@link org.htmlunit.html.HtmlInlineQuotation}.
6633      *
6634      * @throws Exception if the test fails
6635      */
6636     @Test
6637     @Alerts(CHROME = "cite[GSCE],constructor()",
6638             EDGE = "cite[GSCE],constructor()",
6639             FF = "cite[GSCE],constructor()",
6640             FF_ESR = "cite[GSCE],constructor()")
6641     public void q() throws Exception {
6642         test("q");
6643     }
6644 
6645     /**
6646      * Test {@link org.htmlunit.html.HtmlImage}.
6647      *
6648      * @throws Exception if the test fails
6649      */
6650     @Test
6651     @Alerts(CHROME = "align[GSCE],alt[GSCE],attributionSrc[GSCE],border[GSCE],browsingTopics[GSCE],complete[GCE],"
6652                 + "constructor(),crossOrigin[GSCE],currentSrc[GCE],decode(),decoding[GSCE],fetchPriority[GSCE],"
6653                 + "height[GSCE],hspace[GSCE],isMap[GSCE],loading[GSCE],longDesc[GSCE],lowsrc[GSCE],name[GSCE],"
6654                 + "naturalHeight[GCE],naturalWidth[GCE],referrerPolicy[GSCE],sharedStorageWritable[GSCE],"
6655                 + "sizes[GSCE],src[GSCE],srcset[GSCE],useMap[GSCE],vspace[GSCE],width[GSCE],x[GCE],"
6656                 + "y[GCE]",
6657             EDGE = "align[GSCE],alt[GSCE],attributionSrc[GSCE],border[GSCE],browsingTopics[GSCE],complete[GCE],"
6658                 + "constructor(),crossOrigin[GSCE],currentSrc[GCE],decode(),decoding[GSCE],fetchPriority[GSCE],"
6659                 + "height[GSCE],hspace[GSCE],isMap[GSCE],loading[GSCE],longDesc[GSCE],lowsrc[GSCE],name[GSCE],"
6660                 + "naturalHeight[GCE],naturalWidth[GCE],referrerPolicy[GSCE],sharedStorageWritable[GSCE],"
6661                 + "sizes[GSCE],src[GSCE],srcset[GSCE],useMap[GSCE],vspace[GSCE],width[GSCE],x[GCE],"
6662                 + "y[GCE]",
6663             FF = "align[GSCE],alt[GSCE],border[GSCE],complete[GCE],constructor(),crossOrigin[GSCE],currentSrc[GCE],"
6664                 + "decode(),decoding[GSCE],fetchPriority[GSCE],height[GSCE],hspace[GSCE],isMap[GSCE],loading[GSCE],"
6665                 + "longDesc[GSCE],lowsrc[GSCE],name[GSCE],naturalHeight[GCE],naturalWidth[GCE],referrerPolicy[GSCE],"
6666                 + "sizes[GSCE],src[GSCE],srcset[GSCE],useMap[GSCE],vspace[GSCE],width[GSCE],x[GCE],"
6667                 + "y[GCE]",
6668             FF_ESR = "align[GSCE],alt[GSCE],border[GSCE],complete[GCE],constructor(),crossOrigin[GSCE],currentSrc[GCE],"
6669                 + "decode(),decoding[GSCE],height[GSCE],hspace[GSCE],isMap[GSCE],loading[GSCE],longDesc[GSCE],"
6670                 + "lowsrc[GSCE],name[GSCE],naturalHeight[GCE],naturalWidth[GCE],referrerPolicy[GSCE],sizes[GSCE],"
6671                 + "src[GSCE],srcset[GSCE],useMap[GSCE],vspace[GSCE],width[GSCE],x[GCE],"
6672                 + "y[GCE]")
6673     @HtmlUnitNYI(CHROME = "align[GSCE],alt[GSCE],border[GSCE],complete[GCE],constructor(),height[GSCE],name[GSCE],"
6674                 + "naturalHeight[GCE],naturalWidth[GCE],src[GSCE],width[GSCE]",
6675             EDGE = "align[GSCE],alt[GSCE],border[GSCE],complete[GCE],constructor(),height[GSCE],name[GSCE],"
6676                 + "naturalHeight[GCE],naturalWidth[GCE],src[GSCE],width[GSCE]",
6677             FF_ESR = "align[GSCE],alt[GSCE],border[GSCE],complete[GCE],constructor(),height[GSCE],name[GSCE],"
6678                 + "naturalHeight[GCE],naturalWidth[GCE],src[GSCE],width[GSCE]",
6679             FF = "align[GSCE],alt[GSCE],border[GSCE],complete[GCE],constructor(),height[GSCE],name[GSCE],"
6680                 + "naturalHeight[GCE],naturalWidth[GCE],src[GSCE],width[GSCE]")
6681     public void img() throws Exception {
6682         test("img");
6683     }
6684 
6685     /**
6686      * Test {@link org.htmlunit.html.HtmlImage}.
6687      *
6688      * @throws Exception if the test fails
6689      */
6690     @Test
6691     @Alerts(CHROME = "constructor()",
6692             EDGE = "constructor()",
6693             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
6694                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
6695                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
6696                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
6697                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6698                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6699                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
6700                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6701                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
6702                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6703                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
6704                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
6705                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
6706                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6707                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
6708                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
6709                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
6710                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
6711                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
6712                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6713                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
6714                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
6715                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
6716                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
6717                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
6718                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
6719                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
6720                 + "togglePopover(),"
6721                 + "translate[GSCE]",
6722             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
6723                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
6724                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
6725                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
6726                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
6727                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
6728                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
6729                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
6730                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6731                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
6732                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
6733                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
6734                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6735                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
6736                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6737                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
6738                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6739                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6740                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
6741                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
6742                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
6743                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6744                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
6745                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
6746                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
6747                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
6748                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
6749                 + "translate[GSCE]")
6750     @HtmlUnitNYI(FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
6751                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
6752                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6753                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6754                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6755                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6756                 + "oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6757                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
6758                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6759                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6760                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
6761                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
6762                 + "onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],"
6763                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
6764                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
6765                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6766                 + "onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
6767                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
6768                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
6769                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
6770                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
6771             FF = "accessKey[GSCE],autofocus[GSCE],"
6772                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
6773                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6774                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6775                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6776                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6777                 + "oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6778                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
6779                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6780                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6781                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
6782                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
6783                 + "onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],"
6784                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
6785                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
6786                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6787                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
6788                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
6789                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
6790                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
6791                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
6792                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
6793     public void image() throws Exception {
6794         test("image");
6795     }
6796 
6797     /**
6798      * Test {@link org.htmlunit.html.HtmlInsertedText}.
6799      *
6800      * @throws Exception if the test fails
6801      */
6802     @Test
6803     @Alerts(CHROME = "cite[GSCE],constructor(),dateTime[GSCE]",
6804             EDGE = "cite[GSCE],constructor(),dateTime[GSCE]",
6805             FF = "cite[GSCE],constructor(),dateTime[GSCE]",
6806             FF_ESR = "cite[GSCE],constructor(),dateTime[GSCE]")
6807     public void ins() throws Exception {
6808         test("ins");
6809     }
6810 
6811     /**
6812      * Test {@link org.htmlunit.html.HtmlIsIndex}.
6813      *
6814      * @throws Exception if the test fails
6815      */
6816     @Test
6817     @Alerts(CHROME = "constructor()",
6818             EDGE = "constructor()",
6819             FF = "constructor()",
6820             FF_ESR = "constructor()")
6821     public void isindex() throws Exception {
6822         test("isindex");
6823     }
6824 
6825     /**
6826      * Test {@link org.htmlunit.html.HtmlItalic}.
6827      *
6828      * @throws Exception if the test fails
6829      */
6830     @Test
6831     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
6832                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
6833                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
6834                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
6835                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6836                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
6837                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
6838                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6839                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
6840                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6841                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
6842                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6843                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
6844                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
6845                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
6846                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
6847                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6848                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6849                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
6850                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
6851                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
6852                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
6853                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6854                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
6855                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
6856                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
6857                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
6858                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
6859                 + "virtualKeyboardPolicy[GSCE],"
6860                 + "writingSuggestions[GSCE]",
6861             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
6862                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
6863                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
6864                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
6865                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6866                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
6867                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
6868                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6869                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
6870                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6871                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
6872                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6873                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
6874                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
6875                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
6876                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
6877                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6878                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6879                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
6880                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
6881                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
6882                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
6883                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6884                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
6885                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
6886                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
6887                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
6888                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
6889                 + "virtualKeyboardPolicy[GSCE],"
6890                 + "writingSuggestions[GSCE]",
6891             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
6892                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
6893                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
6894                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
6895                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
6896                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6897                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
6898                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
6899                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
6900                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
6901                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
6902                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
6903                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
6904                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6905                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
6906                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
6907                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
6908                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
6909                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
6910                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6911                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
6912                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
6913                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
6914                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
6915                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
6916                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
6917                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
6918                 + "togglePopover(),"
6919                 + "translate[GSCE]",
6920             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
6921                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
6922                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
6923                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
6924                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
6925                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
6926                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
6927                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
6928                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6929                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
6930                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
6931                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
6932                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6933                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
6934                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6935                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
6936                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6937                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6938                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
6939                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
6940                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
6941                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
6942                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
6943                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
6944                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
6945                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
6946                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
6947                 + "translate[GSCE]")
6948     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
6949                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6950                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6951                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6952                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6953                 + "offsetTop[GCE],offsetWidth[GCE],"
6954                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6955                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
6956                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6957                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
6958                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
6959                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6960                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6961                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6962                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
6963                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6964                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
6965                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6966                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6967                 + "onpointermove[GSCE],onpointerout[GSCE],"
6968                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6969                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
6970                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
6971                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
6972                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
6973                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
6974                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
6975             EDGE = "accessKey[GSCE],autofocus[GSCE],"
6976                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
6977                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
6978                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
6979                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
6980                 + "offsetTop[GCE],offsetWidth[GCE],"
6981                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
6982                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
6983                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
6984                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
6985                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
6986                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
6987                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
6988                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
6989                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
6990                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
6991                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
6992                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
6993                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
6994                 + "onpointermove[GSCE],onpointerout[GSCE],"
6995                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
6996                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
6997                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
6998                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
6999                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
7000                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
7001                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7002             FF = "accessKey[GSCE],autofocus[GSCE],"
7003                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7004                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7005                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7006                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7007                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7008                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7009                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
7010                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
7011                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7012                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
7013                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7014                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7015                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
7016                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7017                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7018                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7019                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7020                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
7021                 + "onseeked[GSCE],onseeking[GSCE],"
7022                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7023                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
7024                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
7025                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7026             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
7027                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7028                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7029                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7030                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7031                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7032                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7033                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
7034                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
7035                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7036                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
7037                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7038                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7039                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
7040                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7041                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7042                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7043                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7044                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
7045                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7046                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
7047                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
7048                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
7049     public void i() throws Exception {
7050         test("i");
7051     }
7052 
7053     /**
7054      * Test {@link org.htmlunit.html.HtmlKeyboard}.
7055      *
7056      * @throws Exception if the test fails
7057      */
7058     @Test
7059     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
7060                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7061                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7062                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7063                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7064                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7065                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
7066                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7067                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7068                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7069                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
7070                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7071                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7072                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7073                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
7074                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
7075                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7076                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7077                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
7078                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
7079                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
7080                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7081                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7082                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7083                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7084                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7085                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7086                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
7087                 + "virtualKeyboardPolicy[GSCE],"
7088                 + "writingSuggestions[GSCE]",
7089             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
7090                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7091                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7092                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7093                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7094                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7095                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
7096                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7097                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7098                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7099                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
7100                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7101                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7102                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7103                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
7104                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
7105                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7106                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7107                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
7108                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
7109                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
7110                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7111                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7112                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7113                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7114                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7115                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7116                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
7117                 + "virtualKeyboardPolicy[GSCE],"
7118                 + "writingSuggestions[GSCE]",
7119             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
7120                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
7121                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7122                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7123                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7124                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7125                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
7126                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7127                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7128                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7129                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7130                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
7131                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
7132                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7133                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
7134                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
7135                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
7136                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
7137                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
7138                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7139                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
7140                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
7141                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
7142                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
7143                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
7144                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
7145                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
7146                 + "togglePopover(),"
7147                 + "translate[GSCE]",
7148             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
7149                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7150                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
7151                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
7152                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
7153                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7154                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
7155                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
7156                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7157                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
7158                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
7159                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
7160                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7161                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
7162                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7163                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7164                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7165                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7166                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7167                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
7168                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7169                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7170                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7171                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7172                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7173                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7174                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
7175                 + "translate[GSCE]")
7176     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
7177                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7178                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7179                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7180                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7181                 + "offsetTop[GCE],offsetWidth[GCE],"
7182                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7183                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
7184                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7185                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
7186                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
7187                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7188                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7189                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7190                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
7191                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7192                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
7193                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7194                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7195                 + "onpointermove[GSCE],onpointerout[GSCE],"
7196                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7197                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
7198                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
7199                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
7200                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
7201                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
7202                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7203             EDGE = "accessKey[GSCE],autofocus[GSCE],"
7204                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7205                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7206                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7207                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7208                 + "offsetTop[GCE],offsetWidth[GCE],"
7209                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7210                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
7211                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7212                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
7213                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
7214                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7215                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7216                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7217                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
7218                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7219                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
7220                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7221                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7222                 + "onpointermove[GSCE],onpointerout[GSCE],"
7223                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7224                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
7225                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
7226                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
7227                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
7228                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
7229                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7230             FF = "accessKey[GSCE],autofocus[GSCE],"
7231                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7232                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7233                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7234                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7235                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7236                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7237                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
7238                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
7239                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7240                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
7241                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7242                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7243                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
7244                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7245                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7246                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7247                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7248                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
7249                 + "onseeked[GSCE],onseeking[GSCE],"
7250                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7251                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
7252                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
7253                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7254             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7255                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7256                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7257                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7258                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7259                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7260                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
7261                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
7262                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7263                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
7264                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7265                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7266                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
7267                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7268                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7269                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7270                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7271                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
7272                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7273                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
7274                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
7275                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
7276     public void kbd() throws Exception {
7277         test("kbd");
7278     }
7279 
7280     /**
7281      * @throws Exception if the test fails
7282      */
7283     @Test
7284     @Alerts(CHROME = "constructor()",
7285             EDGE = "constructor()",
7286             FF = "constructor()",
7287             FF_ESR = "constructor()")
7288     public void keygen() throws Exception {
7289         test("keygen");
7290     }
7291 
7292     /**
7293      * Test {@link org.htmlunit.html.HtmlLabel}.
7294      *
7295      * @throws Exception if the test fails
7296      */
7297     @Test
7298     @Alerts(CHROME = "constructor(),control[GCE],form[GCE],htmlFor[GSCE]",
7299             EDGE = "constructor(),control[GCE],form[GCE],htmlFor[GSCE]",
7300             FF = "constructor(),control[GCE],form[GCE],htmlFor[GSCE]",
7301             FF_ESR = "constructor(),control[GCE],form[GCE],htmlFor[GSCE]")
7302     public void label() throws Exception {
7303         test("label");
7304     }
7305 
7306     /**
7307      * Test {@link org.htmlunit.html.HtmlLayer}.
7308      *
7309      * @throws Exception if the test fails
7310      */
7311     @Test
7312     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
7313                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7314                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7315                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7316                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7317                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7318                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
7319                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7320                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7321                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7322                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
7323                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7324                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7325                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7326                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
7327                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
7328                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7329                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7330                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
7331                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
7332                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
7333                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7334                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7335                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7336                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7337                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7338                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7339                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
7340                 + "virtualKeyboardPolicy[GSCE],"
7341                 + "writingSuggestions[GSCE]",
7342             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
7343                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7344                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7345                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7346                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7347                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7348                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
7349                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7350                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7351                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7352                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
7353                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7354                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7355                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7356                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
7357                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
7358                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7359                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7360                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
7361                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
7362                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
7363                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7364                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7365                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7366                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7367                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7368                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7369                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
7370                 + "virtualKeyboardPolicy[GSCE],"
7371                 + "writingSuggestions[GSCE]",
7372             FF = "constructor()",
7373             FF_ESR = "constructor()")
7374     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
7375                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7376                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7377                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7378                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7379                 + "offsetTop[GCE],offsetWidth[GCE],"
7380                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7381                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
7382                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7383                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
7384                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
7385                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7386                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7387                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7388                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
7389                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7390                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
7391                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7392                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7393                 + "onpointermove[GSCE],onpointerout[GSCE],"
7394                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7395                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
7396                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
7397                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
7398                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
7399                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
7400                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7401             EDGE = "accessKey[GSCE],autofocus[GSCE],"
7402                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7403                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7404                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7405                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7406                 + "offsetTop[GCE],offsetWidth[GCE],"
7407                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7408                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
7409                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7410                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
7411                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
7412                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7413                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7414                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7415                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
7416                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7417                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
7418                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7419                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7420                 + "onpointermove[GSCE],onpointerout[GSCE],"
7421                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7422                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
7423                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
7424                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
7425                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
7426                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
7427                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
7428     public void layer() throws Exception {
7429         test("layer");
7430     }
7431 
7432     /**
7433      * Test {@link org.htmlunit.html.HtmlLegend}.
7434      *
7435      * @throws Exception if the test fails
7436      */
7437     @Test
7438     @Alerts(CHROME = "align[GSCE],constructor(),form[GCE]",
7439             EDGE = "align[GSCE],constructor(),form[GCE]",
7440             FF = "align[GSCE],constructor(),form[GCE]",
7441             FF_ESR = "align[GSCE],constructor(),form[GCE]")
7442     public void legend() throws Exception {
7443         test("legend");
7444     }
7445 
7446     /**
7447      * Test {@link org.htmlunit.html.HtmlListing}.
7448      *
7449      * @throws Exception if the test fails
7450      */
7451     @Test
7452     @Alerts(CHROME = "constructor(),width[GSCE]",
7453             EDGE = "constructor(),width[GSCE]",
7454             FF = "constructor(),width[GSCE]",
7455             FF_ESR = "constructor(),width[GSCE]")
7456     public void listing() throws Exception {
7457         test("listing");
7458     }
7459 
7460     /**
7461      * Test {@link org.htmlunit.html.HtmlListItem}.
7462      *
7463      * @throws Exception if the test fails
7464      */
7465     @Test
7466     @Alerts(CHROME = "constructor(),type[GSCE],value[GSCE]",
7467             EDGE = "constructor(),type[GSCE],value[GSCE]",
7468             FF = "constructor(),type[GSCE],value[GSCE]",
7469             FF_ESR = "constructor(),type[GSCE],value[GSCE]")
7470     @HtmlUnitNYI(CHROME = "constructor(),type[GSCE]",
7471             EDGE = "constructor(),type[GSCE]",
7472             FF_ESR = "constructor(),type[GSCE]",
7473             FF = "constructor(),type[GSCE]")
7474     public void li() throws Exception {
7475         test("li");
7476     }
7477 
7478     /**
7479      * Test {@link org.htmlunit.html.HtmlLink}.
7480      *
7481      * @throws Exception if the test fails
7482      */
7483     @Test
7484     @Alerts(CHROME = "as[GSCE],blocking[GSCE],charset[GSCE],constructor(),crossOrigin[GSCE],disabled[GSCE],"
7485                 + "fetchPriority[GSCE],href[GSCE],hreflang[GSCE],imageSizes[GSCE],imageSrcset[GSCE],integrity[GSCE],"
7486                 + "media[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],rev[GSCE],sheet[GCE],sizes[GSCE],"
7487                 + "target[GSCE],"
7488                 + "type[GSCE]",
7489             EDGE = "as[GSCE],blocking[GSCE],charset[GSCE],constructor(),crossOrigin[GSCE],disabled[GSCE],"
7490                 + "fetchPriority[GSCE],href[GSCE],hreflang[GSCE],imageSizes[GSCE],imageSrcset[GSCE],integrity[GSCE],"
7491                 + "media[GSCE],referrerPolicy[GSCE],rel[GSCE],relList[GSCE],rev[GSCE],sheet[GCE],sizes[GSCE],"
7492                 + "target[GSCE],"
7493                 + "type[GSCE]",
7494             FF = "as[GSCE],charset[GSCE],constructor(),crossOrigin[GSCE],disabled[GSCE],fetchPriority[GSCE],"
7495                 + "href[GSCE],hreflang[GSCE],imageSizes[GSCE],imageSrcset[GSCE],integrity[GSCE],media[GSCE],"
7496                 + "referrerPolicy[GSCE],rel[GSCE],relList[GSCE],rev[GSCE],sheet[GCE],sizes[GSCE],target[GSCE],"
7497                 + "type[GSCE]",
7498             FF_ESR = "as[GSCE],charset[GSCE],constructor(),crossOrigin[GSCE],disabled[GSCE],href[GSCE],hreflang[GSCE],"
7499                 + "imageSizes[GSCE],imageSrcset[GSCE],integrity[GSCE],media[GSCE],referrerPolicy[GSCE],rel[GSCE],"
7500                 + "relList[GSCE],rev[GSCE],sheet[GCE],sizes[GSCE],target[GSCE],"
7501                 + "type[GSCE]")
7502     @HtmlUnitNYI(CHROME = "constructor(),disabled[GSCE],href[GSCE],rel[GSCE],relList[GSCE],rev[GSCE],type[GSCE]",
7503             EDGE = "constructor(),disabled[GSCE],href[GSCE],rel[GSCE],relList[GSCE],rev[GSCE],type[GSCE]",
7504             FF_ESR = "constructor(),disabled[GSCE],href[GSCE],rel[GSCE],relList[GSCE],rev[GSCE],type[GSCE]",
7505             FF = "constructor(),disabled[GSCE],href[GSCE],rel[GSCE],relList[GSCE],rev[GSCE],type[GSCE]")
7506     public void link() throws Exception {
7507         test("link");
7508     }
7509 
7510     /**
7511      * Test {@link org.htmlunit.html.HtmlMain}.
7512      *
7513      * @throws Exception if the test fails
7514      */
7515     @Test
7516     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
7517                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7518                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7519                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7520                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7521                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7522                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
7523                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7524                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7525                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7526                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
7527                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7528                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7529                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7530                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
7531                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
7532                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7533                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7534                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
7535                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
7536                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
7537                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7538                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7539                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7540                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7541                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7542                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7543                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
7544                 + "virtualKeyboardPolicy[GSCE],"
7545                 + "writingSuggestions[GSCE]",
7546             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
7547                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7548                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7549                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7550                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7551                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7552                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
7553                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7554                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7555                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7556                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
7557                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7558                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7559                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7560                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
7561                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
7562                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7563                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7564                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
7565                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
7566                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
7567                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7568                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7569                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7570                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7571                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7572                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7573                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
7574                 + "virtualKeyboardPolicy[GSCE],"
7575                 + "writingSuggestions[GSCE]",
7576             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
7577                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
7578                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7579                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7580                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7581                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7582                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
7583                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7584                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7585                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7586                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7587                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
7588                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
7589                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7590                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
7591                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
7592                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
7593                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
7594                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
7595                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7596                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
7597                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
7598                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
7599                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
7600                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
7601                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
7602                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
7603                 + "togglePopover(),"
7604                 + "translate[GSCE]",
7605             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
7606                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7607                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
7608                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
7609                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
7610                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7611                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
7612                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
7613                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7614                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
7615                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
7616                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
7617                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7618                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
7619                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7620                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7621                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7622                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7623                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7624                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
7625                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7626                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7627                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7628                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7629                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7630                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7631                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
7632                 + "translate[GSCE]")
7633     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
7634                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7635                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7636                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7637                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7638                 + "offsetTop[GCE],offsetWidth[GCE],"
7639                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7640                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
7641                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7642                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
7643                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
7644                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7645                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7646                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7647                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
7648                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7649                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
7650                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7651                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7652                 + "onpointermove[GSCE],onpointerout[GSCE],"
7653                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7654                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
7655                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
7656                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
7657                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
7658                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
7659                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7660             EDGE = "accessKey[GSCE],autofocus[GSCE],"
7661                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7662                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7663                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7664                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7665                 + "offsetTop[GCE],offsetWidth[GCE],"
7666                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7667                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
7668                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7669                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
7670                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
7671                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7672                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7673                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7674                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
7675                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7676                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
7677                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7678                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7679                 + "onpointermove[GSCE],onpointerout[GSCE],"
7680                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7681                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
7682                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
7683                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
7684                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
7685                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
7686                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7687             FF = "accessKey[GSCE],autofocus[GSCE],"
7688                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7689                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7690                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7691                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7692                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7693                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7694                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
7695                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
7696                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7697                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
7698                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7699                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7700                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
7701                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7702                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7703                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7704                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7705                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
7706                 + "onseeked[GSCE],onseeking[GSCE],"
7707                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7708                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
7709                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
7710                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7711             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7712                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7713                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7714                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7715                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7716                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7717                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
7718                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
7719                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7720                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
7721                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7722                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7723                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
7724                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7725                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7726                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7727                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7728                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
7729                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7730                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
7731                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
7732                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
7733     public void main() throws Exception {
7734         test("main");
7735     }
7736 
7737     /**
7738      * Test {@link org.htmlunit.html.HtmlMap}.
7739      *
7740      * @throws Exception if the test fails
7741      */
7742     @Test
7743     @Alerts(CHROME = "areas[GCE],constructor(),name[GSCE]",
7744             EDGE = "areas[GCE],constructor(),name[GSCE]",
7745             FF = "areas[GCE],constructor(),name[GSCE]",
7746             FF_ESR = "areas[GCE],constructor(),name[GSCE]")
7747     public void map() throws Exception {
7748         test("map");
7749     }
7750 
7751     /**
7752      * Test {@link org.htmlunit.html.HtmlMark}.
7753      *
7754      * @throws Exception if the test fails
7755      */
7756     @Test
7757     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
7758                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7759                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7760                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7761                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7762                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7763                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
7764                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7765                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7766                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7767                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
7768                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7769                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7770                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7771                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
7772                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
7773                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7774                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7775                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
7776                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
7777                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
7778                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7779                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7780                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7781                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7782                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7783                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7784                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
7785                 + "virtualKeyboardPolicy[GSCE],"
7786                 + "writingSuggestions[GSCE]",
7787             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
7788                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7789                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7790                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7791                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7792                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7793                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
7794                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7795                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7796                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7797                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
7798                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7799                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7800                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7801                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
7802                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
7803                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7804                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7805                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
7806                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
7807                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
7808                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7809                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7810                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7811                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7812                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7813                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7814                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
7815                 + "virtualKeyboardPolicy[GSCE],"
7816                 + "writingSuggestions[GSCE]",
7817             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
7818                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
7819                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
7820                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
7821                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7822                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7823                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
7824                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
7825                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
7826                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
7827                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7828                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
7829                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
7830                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7831                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
7832                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
7833                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
7834                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
7835                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
7836                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7837                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
7838                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
7839                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
7840                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
7841                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
7842                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
7843                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
7844                 + "togglePopover(),"
7845                 + "translate[GSCE]",
7846             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
7847                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
7848                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
7849                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
7850                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
7851                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
7852                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
7853                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
7854                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7855                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
7856                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
7857                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
7858                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7859                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
7860                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7861                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7862                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7863                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7864                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7865                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
7866                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
7867                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7868                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
7869                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
7870                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
7871                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
7872                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
7873                 + "translate[GSCE]")
7874     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
7875                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7876                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7877                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7878                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7879                 + "offsetTop[GCE],offsetWidth[GCE],"
7880                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7881                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
7882                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7883                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
7884                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
7885                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7886                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7887                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7888                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
7889                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7890                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
7891                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7892                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7893                 + "onpointermove[GSCE],onpointerout[GSCE],"
7894                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7895                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
7896                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
7897                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
7898                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
7899                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
7900                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7901             EDGE = "accessKey[GSCE],autofocus[GSCE],"
7902                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7903                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7904                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7905                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7906                 + "offsetTop[GCE],offsetWidth[GCE],"
7907                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7908                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
7909                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
7910                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
7911                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
7912                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
7913                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
7914                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
7915                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
7916                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
7917                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
7918                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7919                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7920                 + "onpointermove[GSCE],onpointerout[GSCE],"
7921                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
7922                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
7923                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
7924                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
7925                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
7926                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
7927                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7928             FF = "accessKey[GSCE],autofocus[GSCE],"
7929                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7930                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7931                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7932                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7933                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7934                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7935                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
7936                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
7937                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7938                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
7939                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7940                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7941                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
7942                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7943                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7944                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7945                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7946                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
7947                 + "onseeked[GSCE],onseeking[GSCE],"
7948                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7949                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
7950                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
7951                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
7952             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
7953                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
7954                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
7955                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
7956                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
7957                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
7958                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
7959                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
7960                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
7961                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
7962                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
7963                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
7964                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
7965                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
7966                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
7967                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
7968                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
7969                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
7970                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
7971                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
7972                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
7973                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
7974     public void mark() throws Exception {
7975         test("mark");
7976     }
7977 
7978     /**
7979      * Test {@link org.htmlunit.html.HtmlMarquee}.
7980      *
7981      * @throws Exception if the test fails
7982      */
7983     @Test
7984     @Alerts(CHROME = "behavior[GSCE],bgColor[GSCE],constructor(),direction[GSCE],height[GSCE],hspace[GSCE],loop[GSCE],"
7985                 + "scrollAmount[GSCE],scrollDelay[GSCE],start(),stop(),trueSpeed[GSCE],vspace[GSCE],"
7986                 + "width[GSCE]",
7987             EDGE = "behavior[GSCE],bgColor[GSCE],constructor(),direction[GSCE],height[GSCE],hspace[GSCE],loop[GSCE],"
7988                 + "scrollAmount[GSCE],scrollDelay[GSCE],start(),stop(),trueSpeed[GSCE],vspace[GSCE],"
7989                 + "width[GSCE]",
7990             FF = "behavior[GSCE],bgColor[GSCE],constructor(),direction[GSCE],height[GSCE],hspace[GSCE],loop[GSCE],"
7991                 + "scrollAmount[GSCE],scrollDelay[GSCE],start(),stop(),trueSpeed[GSCE],vspace[GSCE],"
7992                 + "width[GSCE]",
7993             FF_ESR = "behavior[GSCE],bgColor[GSCE],constructor(),direction[GSCE],height[GSCE],hspace[GSCE],loop[GSCE],"
7994                 + "scrollAmount[GSCE],scrollDelay[GSCE],start(),stop(),trueSpeed[GSCE],vspace[GSCE],"
7995                 + "width[GSCE]")
7996     @HtmlUnitNYI(CHROME = "bgColor[GSCE],constructor(),height[GSCE],width[GSCE]",
7997             EDGE = "bgColor[GSCE],constructor(),height[GSCE],width[GSCE]",
7998             FF = "bgColor[GSCE],constructor(),height[GSCE],width[GSCE]",
7999             FF_ESR = "bgColor[GSCE],constructor(),height[GSCE],width[GSCE]")
8000     public void marquee() throws Exception {
8001         test("marquee");
8002     }
8003 
8004     /**
8005      * Test {@link org.htmlunit.html.HtmlMenu}.
8006      *
8007      * @throws Exception if the test fails
8008      */
8009     @Test
8010     @Alerts(CHROME = "compact[GSCE],constructor()",
8011             EDGE = "compact[GSCE],constructor()",
8012             FF = "compact[GSCE],constructor()",
8013             FF_ESR = "compact[GSCE],constructor()")
8014     public void menu() throws Exception {
8015         test("menu");
8016     }
8017 
8018     /**
8019      * Test {@link org.htmlunit.html.HtmlMenuItem}.
8020      *
8021      * @throws Exception if the test fails
8022      */
8023     @Test
8024     @Alerts(CHROME = "constructor()",
8025             EDGE = "constructor()",
8026             FF = "constructor()",
8027             FF_ESR = "constructor()")
8028     public void menuitem() throws Exception {
8029         test("menuitem");
8030     }
8031 
8032     /**
8033      * Test {@link org.htmlunit.html.HtmlMeta}.
8034      *
8035      * @throws Exception if the test fails
8036      */
8037     @Test
8038     @Alerts(CHROME = "constructor(),content[GSCE],httpEquiv[GSCE],media[GSCE],name[GSCE],scheme[GSCE]",
8039             EDGE = "constructor(),content[GSCE],httpEquiv[GSCE],media[GSCE],name[GSCE],scheme[GSCE]",
8040             FF = "constructor(),content[GSCE],httpEquiv[GSCE],media[GSCE],name[GSCE],scheme[GSCE]",
8041             FF_ESR = "constructor(),content[GSCE],httpEquiv[GSCE],media[GSCE],name[GSCE],scheme[GSCE]")
8042     public void meta() throws Exception {
8043         test("meta");
8044     }
8045 
8046     /**
8047      * Test {@link org.htmlunit.html.HtmlMeter}.
8048      *
8049      * @throws Exception if the test fails
8050      */
8051     @Test
8052     @Alerts(CHROME = "constructor(),high[GSCE],labels[GCE],low[GSCE],max[GSCE],min[GSCE],optimum[GSCE],value[GSCE]",
8053             EDGE = "constructor(),high[GSCE],labels[GCE],low[GSCE],max[GSCE],min[GSCE],optimum[GSCE],value[GSCE]",
8054             FF = "constructor(),high[GSCE],labels[GCE],low[GSCE],max[GSCE],min[GSCE],optimum[GSCE],value[GSCE]",
8055             FF_ESR = "constructor(),high[GSCE],labels[GCE],low[GSCE],max[GSCE],min[GSCE],optimum[GSCE],value[GSCE]")
8056     @HtmlUnitNYI(CHROME = "constructor(),high[GCE],labels[GCE],low[GCE],max[GCE],min[GCE],optimum[GCE],value[GCE]",
8057             EDGE = "constructor(),high[GCE],labels[GCE],low[GCE],max[GCE],min[GCE],optimum[GCE],value[GCE]",
8058             FF = "constructor(),high[GCE],labels[GCE],low[GCE],max[GCE],min[GCE],optimum[GCE],value[GCE]",
8059             FF_ESR = "constructor(),high[GCE],labels[GCE],low[GCE],max[GCE],min[GCE],optimum[GCE],value[GCE]")
8060     public void meter() throws Exception {
8061         test("meter");
8062     }
8063 
8064     /**
8065      * Test {@link org.htmlunit.html.HtmlMultiColumn}.
8066      *
8067      * @throws Exception if the test fails
8068      */
8069     @Test
8070     @Alerts(CHROME = "constructor()",
8071             EDGE = "constructor()",
8072             FF = "constructor()",
8073             FF_ESR = "constructor()")
8074     public void multicol() throws Exception {
8075         test("multicol");
8076     }
8077 
8078     /**
8079      * Test {@link org.htmlunit.html.HtmlNav}.
8080      *
8081      * @throws Exception if the test fails
8082      */
8083     @Test
8084     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
8085                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8086                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8087                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8088                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8089                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8090                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
8091                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8092                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8093                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8094                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
8095                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8096                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8097                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8098                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
8099                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
8100                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8101                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8102                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
8103                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
8104                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
8105                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8106                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8107                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8108                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8109                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8110                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8111                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
8112                 + "virtualKeyboardPolicy[GSCE],"
8113                 + "writingSuggestions[GSCE]",
8114             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
8115                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8116                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8117                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8118                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8119                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8120                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
8121                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8122                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8123                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8124                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
8125                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8126                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8127                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8128                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
8129                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
8130                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8131                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8132                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
8133                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
8134                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
8135                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8136                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8137                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8138                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8139                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8140                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8141                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
8142                 + "virtualKeyboardPolicy[GSCE],"
8143                 + "writingSuggestions[GSCE]",
8144             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
8145                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
8146                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8147                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8148                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8149                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8150                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
8151                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8152                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8153                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8154                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8155                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
8156                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
8157                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8158                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
8159                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
8160                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
8161                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
8162                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
8163                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8164                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
8165                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
8166                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
8167                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
8168                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
8169                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
8170                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
8171                 + "togglePopover(),"
8172                 + "translate[GSCE]",
8173             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
8174                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8175                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
8176                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
8177                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
8178                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8179                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
8180                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
8181                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8182                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
8183                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
8184                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
8185                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8186                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
8187                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8188                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8189                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8190                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8191                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8192                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
8193                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8194                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8195                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8196                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8197                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8198                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8199                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
8200                 + "translate[GSCE]")
8201     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
8202                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8203                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8204                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8205                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8206                 + "offsetTop[GCE],offsetWidth[GCE],"
8207                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8208                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
8209                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8210                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
8211                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
8212                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8213                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8214                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8215                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
8216                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8217                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
8218                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8219                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8220                 + "onpointermove[GSCE],onpointerout[GSCE],"
8221                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8222                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
8223                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
8224                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
8225                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
8226                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
8227                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8228             EDGE = "accessKey[GSCE],autofocus[GSCE],"
8229                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8230                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8231                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8232                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8233                 + "offsetTop[GCE],offsetWidth[GCE],"
8234                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8235                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
8236                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8237                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
8238                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
8239                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8240                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8241                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8242                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
8243                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8244                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
8245                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8246                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8247                 + "onpointermove[GSCE],onpointerout[GSCE],"
8248                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8249                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
8250                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
8251                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
8252                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
8253                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
8254                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8255             FF = "accessKey[GSCE],autofocus[GSCE],"
8256                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8257                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8258                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8259                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8260                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8261                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8262                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
8263                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
8264                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8265                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
8266                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8267                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8268                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
8269                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8270                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8271                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8272                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8273                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
8274                 + "onseeked[GSCE],onseeking[GSCE],"
8275                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8276                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
8277                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
8278                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8279             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8280                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8281                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8282                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8283                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8284                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8285                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
8286                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
8287                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8288                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
8289                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8290                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8291                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
8292                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8293                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8294                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8295                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8296                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
8297                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8298                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
8299                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
8300                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
8301     public void nav() throws Exception {
8302         test("nav");
8303     }
8304 
8305     /**
8306      * Test {@link org.htmlunit.html.HtmlNextId}.
8307      *
8308      * @throws Exception if the test fails
8309      */
8310     @Test
8311     @Alerts(CHROME = "constructor()",
8312             EDGE = "constructor()",
8313             FF = "constructor()",
8314             FF_ESR = "constructor()")
8315     public void nextid() throws Exception {
8316         test("nextid");
8317     }
8318 
8319     /**
8320      * Test {@link org.htmlunit.html.HtmlNoBreak}.
8321      *
8322      * @throws Exception if the test fails
8323      */
8324     @Test
8325     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
8326                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8327                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8328                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8329                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8330                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8331                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
8332                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8333                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8334                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8335                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
8336                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8337                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8338                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8339                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
8340                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
8341                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8342                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8343                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
8344                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
8345                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
8346                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8347                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8348                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8349                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8350                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8351                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8352                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
8353                 + "virtualKeyboardPolicy[GSCE],"
8354                 + "writingSuggestions[GSCE]",
8355             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
8356                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8357                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8358                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8359                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8360                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8361                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
8362                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8363                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8364                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8365                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
8366                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8367                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8368                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8369                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
8370                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
8371                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8372                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8373                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
8374                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
8375                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
8376                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8377                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8378                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8379                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8380                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8381                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8382                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
8383                 + "virtualKeyboardPolicy[GSCE],"
8384                 + "writingSuggestions[GSCE]",
8385             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
8386                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
8387                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8388                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8389                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8390                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8391                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
8392                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8393                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8394                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8395                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8396                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
8397                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
8398                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8399                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
8400                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
8401                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
8402                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
8403                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
8404                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8405                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
8406                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
8407                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
8408                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
8409                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
8410                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
8411                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
8412                 + "togglePopover(),"
8413                 + "translate[GSCE]",
8414             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
8415                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8416                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
8417                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
8418                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
8419                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8420                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
8421                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
8422                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8423                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
8424                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
8425                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
8426                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8427                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
8428                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8429                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8430                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8431                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8432                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8433                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
8434                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8435                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8436                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8437                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8438                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8439                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8440                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
8441                 + "translate[GSCE]")
8442     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
8443                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8444                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8445                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8446                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8447                 + "offsetTop[GCE],offsetWidth[GCE],"
8448                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8449                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
8450                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8451                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
8452                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
8453                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8454                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8455                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8456                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
8457                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8458                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
8459                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8460                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8461                 + "onpointermove[GSCE],onpointerout[GSCE],"
8462                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8463                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
8464                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
8465                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
8466                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
8467                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
8468                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8469             EDGE = "accessKey[GSCE],autofocus[GSCE],"
8470                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8471                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8472                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8473                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8474                 + "offsetTop[GCE],offsetWidth[GCE],"
8475                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8476                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
8477                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8478                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
8479                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
8480                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8481                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8482                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8483                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
8484                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8485                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
8486                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8487                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8488                 + "onpointermove[GSCE],onpointerout[GSCE],"
8489                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8490                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
8491                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
8492                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
8493                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
8494                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
8495                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8496             FF = "accessKey[GSCE],autofocus[GSCE],"
8497                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8498                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8499                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8500                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8501                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8502                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8503                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
8504                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
8505                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8506                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
8507                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8508                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8509                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
8510                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8511                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8512                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8513                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8514                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
8515                 + "onseeked[GSCE],onseeking[GSCE],"
8516                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8517                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
8518                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
8519                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8520             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8521                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8522                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8523                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8524                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8525                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8526                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
8527                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
8528                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8529                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
8530                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8531                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8532                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
8533                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8534                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8535                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8536                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8537                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
8538                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8539                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
8540                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
8541                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
8542     public void nobr() throws Exception {
8543         test("nobr");
8544     }
8545 
8546     /**
8547      * Test {@link org.htmlunit.html.HtmlNoEmbed}.
8548      *
8549      * @throws Exception if the test fails
8550      */
8551     @Test
8552     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
8553                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8554                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8555                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8556                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8557                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8558                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
8559                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8560                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8561                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8562                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
8563                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8564                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8565                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8566                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
8567                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
8568                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8569                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8570                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
8571                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
8572                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
8573                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8574                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8575                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8576                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8577                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8578                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8579                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
8580                 + "virtualKeyboardPolicy[GSCE],"
8581                 + "writingSuggestions[GSCE]",
8582             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
8583                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8584                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8585                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8586                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8587                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8588                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
8589                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8590                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8591                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8592                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
8593                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8594                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8595                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8596                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
8597                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
8598                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8599                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8600                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
8601                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
8602                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
8603                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8604                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8605                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8606                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8607                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8608                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8609                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
8610                 + "virtualKeyboardPolicy[GSCE],"
8611                 + "writingSuggestions[GSCE]",
8612             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
8613                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
8614                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8615                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8616                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8617                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8618                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
8619                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8620                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8621                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8622                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8623                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
8624                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
8625                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8626                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
8627                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
8628                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
8629                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
8630                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
8631                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8632                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
8633                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
8634                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
8635                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
8636                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
8637                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
8638                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
8639                 + "togglePopover(),"
8640                 + "translate[GSCE]",
8641             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
8642                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8643                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
8644                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
8645                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
8646                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8647                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
8648                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
8649                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8650                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
8651                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
8652                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
8653                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8654                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
8655                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8656                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8657                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8658                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8659                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8660                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
8661                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8662                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8663                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8664                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8665                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8666                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8667                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
8668                 + "translate[GSCE]")
8669     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
8670                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8671                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8672                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8673                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8674                 + "offsetTop[GCE],offsetWidth[GCE],"
8675                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8676                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
8677                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8678                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
8679                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
8680                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8681                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8682                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8683                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
8684                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8685                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
8686                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8687                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8688                 + "onpointermove[GSCE],onpointerout[GSCE],"
8689                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8690                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
8691                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
8692                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
8693                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
8694                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
8695                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8696             EDGE = "accessKey[GSCE],autofocus[GSCE],"
8697                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8698                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8699                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8700                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8701                 + "offsetTop[GCE],offsetWidth[GCE],"
8702                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8703                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
8704                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8705                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
8706                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
8707                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8708                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8709                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8710                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
8711                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8712                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
8713                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8714                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8715                 + "onpointermove[GSCE],onpointerout[GSCE],"
8716                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8717                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
8718                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
8719                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
8720                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
8721                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
8722                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8723             FF = "accessKey[GSCE],autofocus[GSCE],"
8724                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8725                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8726                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8727                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8728                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8729                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8730                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
8731                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
8732                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8733                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
8734                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8735                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8736                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
8737                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8738                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8739                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8740                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8741                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
8742                 + "onseeked[GSCE],onseeking[GSCE],"
8743                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8744                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
8745                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
8746                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8747             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8748                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8749                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8750                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8751                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8752                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8753                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
8754                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
8755                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8756                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
8757                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8758                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8759                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
8760                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8761                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8762                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8763                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8764                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
8765                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8766                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
8767                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
8768                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
8769     public void noembed() throws Exception {
8770         test("noembed");
8771     }
8772 
8773     /**
8774      * Test {@link org.htmlunit.html.HtmlNoFrames}.
8775      *
8776      * @throws Exception if the test fails
8777      */
8778     @Test
8779     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
8780                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8781                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8782                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8783                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8784                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8785                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
8786                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8787                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8788                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8789                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
8790                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8791                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8792                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8793                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
8794                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
8795                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8796                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8797                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
8798                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
8799                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
8800                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8801                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8802                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8803                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8804                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8805                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8806                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
8807                 + "virtualKeyboardPolicy[GSCE],"
8808                 + "writingSuggestions[GSCE]",
8809             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
8810                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8811                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8812                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8813                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8814                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8815                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
8816                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8817                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8818                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8819                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
8820                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8821                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8822                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8823                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
8824                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
8825                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8826                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8827                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
8828                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
8829                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
8830                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8831                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8832                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8833                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8834                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8835                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8836                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
8837                 + "virtualKeyboardPolicy[GSCE],"
8838                 + "writingSuggestions[GSCE]",
8839             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
8840                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
8841                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
8842                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
8843                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8844                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8845                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
8846                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
8847                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
8848                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
8849                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8850                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
8851                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
8852                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8853                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
8854                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
8855                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
8856                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
8857                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
8858                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8859                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
8860                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
8861                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
8862                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
8863                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
8864                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
8865                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
8866                 + "togglePopover(),"
8867                 + "translate[GSCE]",
8868             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
8869                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
8870                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
8871                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
8872                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
8873                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
8874                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
8875                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
8876                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8877                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
8878                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
8879                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
8880                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8881                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
8882                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8883                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8884                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8885                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8886                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8887                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
8888                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
8889                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8890                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
8891                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
8892                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
8893                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
8894                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
8895                 + "translate[GSCE]")
8896     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
8897                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8898                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8899                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8900                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8901                 + "offsetTop[GCE],offsetWidth[GCE],"
8902                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8903                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
8904                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8905                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
8906                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
8907                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8908                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8909                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8910                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
8911                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8912                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
8913                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8914                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8915                 + "onpointermove[GSCE],onpointerout[GSCE],"
8916                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8917                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
8918                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
8919                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
8920                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
8921                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
8922                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8923             EDGE = "accessKey[GSCE],autofocus[GSCE],"
8924                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8925                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8926                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8927                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8928                 + "offsetTop[GCE],offsetWidth[GCE],"
8929                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8930                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
8931                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
8932                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
8933                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
8934                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
8935                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
8936                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
8937                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
8938                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
8939                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
8940                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8941                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8942                 + "onpointermove[GSCE],onpointerout[GSCE],"
8943                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
8944                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
8945                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
8946                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
8947                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
8948                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
8949                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8950             FF = "accessKey[GSCE],autofocus[GSCE],"
8951                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8952                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8953                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8954                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8955                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8956                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8957                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
8958                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
8959                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8960                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
8961                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8962                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8963                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
8964                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8965                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8966                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8967                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8968                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
8969                 + "onseeked[GSCE],onseeking[GSCE],"
8970                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8971                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
8972                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
8973                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
8974             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
8975                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
8976                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
8977                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
8978                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
8979                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
8980                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
8981                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
8982                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
8983                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
8984                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
8985                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
8986                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
8987                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
8988                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
8989                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
8990                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
8991                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
8992                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
8993                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
8994                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
8995                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
8996     public void noframes() throws Exception {
8997         test("noframes");
8998     }
8999 
9000     /**
9001      * Test {@link org.htmlunit.html.HtmlNoLayer}.
9002      *
9003      * @throws Exception if the test fails
9004      */
9005     @Test
9006     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
9007                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9008                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9009                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9010                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9011                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9012                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
9013                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9014                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9015                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9016                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
9017                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9018                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9019                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9020                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
9021                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
9022                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9023                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9024                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
9025                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
9026                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
9027                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9028                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9029                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9030                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9031                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9032                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9033                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
9034                 + "virtualKeyboardPolicy[GSCE],"
9035                 + "writingSuggestions[GSCE]",
9036             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
9037                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9038                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9039                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9040                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9041                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9042                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
9043                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9044                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9045                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9046                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
9047                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9048                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9049                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9050                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
9051                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
9052                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9053                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9054                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
9055                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
9056                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
9057                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9058                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9059                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9060                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9061                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9062                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9063                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
9064                 + "virtualKeyboardPolicy[GSCE],"
9065                 + "writingSuggestions[GSCE]",
9066             FF = "constructor()",
9067             FF_ESR = "constructor()")
9068     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
9069                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9070                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9071                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9072                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9073                 + "offsetTop[GCE],offsetWidth[GCE],"
9074                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9075                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
9076                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9077                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
9078                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
9079                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9080                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9081                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9082                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
9083                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9084                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
9085                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9086                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9087                 + "onpointermove[GSCE],onpointerout[GSCE],"
9088                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9089                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
9090                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
9091                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
9092                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
9093                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
9094                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
9095             EDGE = "accessKey[GSCE],autofocus[GSCE],"
9096                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9097                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9098                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9099                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9100                 + "offsetTop[GCE],offsetWidth[GCE],"
9101                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9102                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
9103                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9104                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
9105                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
9106                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9107                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9108                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9109                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
9110                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9111                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
9112                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9113                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9114                 + "onpointermove[GSCE],onpointerout[GSCE],"
9115                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9116                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
9117                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
9118                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
9119                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
9120                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
9121                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
9122     public void nolayer() throws Exception {
9123         test("nolayer");
9124     }
9125 
9126     /**
9127      * Test {@link org.htmlunit.html.HtmlNoScript}.
9128      *
9129      * @throws Exception if the test fails
9130      */
9131     @Test
9132     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
9133                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9134                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9135                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9136                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9137                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9138                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
9139                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9140                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9141                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9142                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
9143                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9144                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9145                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9146                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
9147                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
9148                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9149                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9150                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
9151                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
9152                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
9153                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9154                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9155                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9156                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9157                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9158                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9159                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
9160                 + "virtualKeyboardPolicy[GSCE],"
9161                 + "writingSuggestions[GSCE]",
9162             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
9163                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9164                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9165                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9166                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9167                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9168                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
9169                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9170                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9171                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9172                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
9173                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9174                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9175                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9176                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
9177                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
9178                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9179                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9180                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
9181                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
9182                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
9183                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9184                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9185                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9186                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9187                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9188                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9189                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
9190                 + "virtualKeyboardPolicy[GSCE],"
9191                 + "writingSuggestions[GSCE]",
9192             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
9193                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
9194                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9195                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9196                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9197                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9198                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
9199                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9200                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9201                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9202                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
9203                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
9204                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
9205                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9206                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
9207                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
9208                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
9209                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
9210                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
9211                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9212                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
9213                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
9214                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
9215                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
9216                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
9217                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
9218                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
9219                 + "togglePopover(),"
9220                 + "translate[GSCE]",
9221             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
9222                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9223                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
9224                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
9225                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
9226                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9227                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
9228                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
9229                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9230                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
9231                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
9232                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
9233                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9234                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
9235                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9236                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
9237                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9238                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9239                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
9240                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
9241                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9242                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9243                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9244                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9245                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9246                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9247                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
9248                 + "translate[GSCE]")
9249     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
9250                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9251                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9252                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9253                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9254                 + "offsetTop[GCE],offsetWidth[GCE],"
9255                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9256                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
9257                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9258                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
9259                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
9260                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9261                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9262                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9263                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
9264                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9265                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
9266                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9267                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9268                 + "onpointermove[GSCE],onpointerout[GSCE],"
9269                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9270                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
9271                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
9272                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
9273                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
9274                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
9275                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
9276             EDGE = "accessKey[GSCE],autofocus[GSCE],"
9277                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9278                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9279                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9280                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9281                 + "offsetTop[GCE],offsetWidth[GCE],"
9282                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9283                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
9284                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9285                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
9286                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
9287                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9288                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9289                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9290                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
9291                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9292                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
9293                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9294                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9295                 + "onpointermove[GSCE],onpointerout[GSCE],"
9296                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9297                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
9298                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
9299                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
9300                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
9301                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
9302                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
9303             FF = "accessKey[GSCE],autofocus[GSCE],"
9304                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9305                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9306                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9307                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9308                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9309                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9310                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
9311                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
9312                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
9313                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
9314                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9315                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9316                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
9317                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
9318                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9319                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9320                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
9321                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
9322                 + "onseeked[GSCE],onseeking[GSCE],"
9323                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9324                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
9325                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
9326                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
9327             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9328                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9329                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9330                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9331                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9332                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9333                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
9334                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
9335                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
9336                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
9337                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9338                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9339                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
9340                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
9341                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9342                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9343                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
9344                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
9345                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9346                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
9347                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
9348                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
9349     public void noscript() throws Exception {
9350         test("noscript");
9351     }
9352 
9353     /**
9354      * Test {@link org.htmlunit.html.HtmlObject}.
9355      *
9356      * @throws Exception if the test fails
9357      */
9358     @Test
9359     @Alerts(CHROME = "align[GSCE],archive[GSCE],border[GSCE],checkValidity(),code[GSCE],codeBase[GSCE],codeType[GSCE],"
9360                 + "constructor(),contentDocument[GCE],contentWindow[GCE],data[GSCE],declare[GSCE],form[GCE],"
9361                 + "getSVGDocument(),height[GSCE],hspace[GSCE],name[GSCE],reportValidity(),setCustomValidity(),"
9362                 + "standby[GSCE],type[GSCE],useMap[GSCE],validationMessage[GCE],validity[GCE],vspace[GSCE],"
9363                 + "width[GSCE],"
9364                 + "willValidate[GCE]",
9365             EDGE = "align[GSCE],archive[GSCE],border[GSCE],checkValidity(),code[GSCE],codeBase[GSCE],codeType[GSCE],"
9366                 + "constructor(),contentDocument[GCE],contentWindow[GCE],data[GSCE],declare[GSCE],form[GCE],"
9367                 + "getSVGDocument(),height[GSCE],hspace[GSCE],name[GSCE],reportValidity(),setCustomValidity(),"
9368                 + "standby[GSCE],type[GSCE],useMap[GSCE],validationMessage[GCE],validity[GCE],vspace[GSCE],"
9369                 + "width[GSCE],"
9370                 + "willValidate[GCE]",
9371             FF = "align[GSCE],archive[GSCE],border[GSCE],checkValidity(),code[GSCE],codeBase[GSCE],codeType[GSCE],"
9372                 + "constructor(),contentDocument[GCE],contentWindow[GCE],data[GSCE],declare[GSCE],form[GCE],"
9373                 + "getSVGDocument(),height[GSCE],hspace[GSCE],name[GSCE],reportValidity(),setCustomValidity(),"
9374                 + "standby[GSCE],type[GSCE],useMap[GSCE],validationMessage[GCE],validity[GCE],vspace[GSCE],"
9375                 + "width[GSCE],"
9376                 + "willValidate[GCE]",
9377             FF_ESR = "align[GSCE],archive[GSCE],border[GSCE],checkValidity(),code[GSCE],codeBase[GSCE],codeType[GSCE],"
9378                 + "constructor(),contentDocument[GCE],contentWindow[GCE],data[GSCE],declare[GSCE],form[GCE],"
9379                 + "getSVGDocument(),height[GSCE],hspace[GSCE],name[GSCE],reportValidity(),setCustomValidity(),"
9380                 + "standby[GSCE],type[GSCE],useMap[GSCE],validationMessage[GCE],validity[GCE],vspace[GSCE],"
9381                 + "width[GSCE],"
9382                 + "willValidate[GCE]")
9383     @HtmlUnitNYI(CHROME = "align[GSCE],border[GSCE],checkValidity(),constructor(),form[GCE],height[GSCE],"
9384                 + "name[GSCE],setCustomValidity(),validity[GCE],width[GSCE],willValidate[GCE]",
9385             EDGE = "align[GSCE],border[GSCE],checkValidity(),constructor(),form[GCE],height[GSCE],"
9386                 + "name[GSCE],setCustomValidity(),validity[GCE],width[GSCE],willValidate[GCE]",
9387             FF_ESR = "align[GSCE],border[GSCE],checkValidity(),constructor(),form[GCE],height[GSCE],"
9388                 + "name[GSCE],setCustomValidity(),validity[GCE],width[GSCE],willValidate[GCE]",
9389             FF = "align[GSCE],border[GSCE],checkValidity(),constructor(),form[GCE],height[GSCE],"
9390                 + "name[GSCE],setCustomValidity(),validity[GCE],width[GSCE],willValidate[GCE]")
9391     public void object() throws Exception {
9392         test("object");
9393     }
9394 
9395     /**
9396      * Test {@link org.htmlunit.html.HtmlOrderedList}.
9397      *
9398      * @throws Exception if the test fails
9399      */
9400     @Test
9401     @Alerts(CHROME = "compact[GSCE],constructor(),reversed[GSCE],start[GSCE],type[GSCE]",
9402             EDGE = "compact[GSCE],constructor(),reversed[GSCE],start[GSCE],type[GSCE]",
9403             FF = "compact[GSCE],constructor(),reversed[GSCE],start[GSCE],type[GSCE]",
9404             FF_ESR = "compact[GSCE],constructor(),reversed[GSCE],start[GSCE],type[GSCE]")
9405     @HtmlUnitNYI(CHROME = "compact[GSCE],constructor(),type[GSCE]",
9406             EDGE = "compact[GSCE],constructor(),type[GSCE]",
9407             FF_ESR = "compact[GSCE],constructor(),type[GSCE]",
9408             FF = "compact[GSCE],constructor(),type[GSCE]")
9409     public void ol() throws Exception {
9410         test("ol");
9411     }
9412 
9413     /**
9414      * Test {@link org.htmlunit.html.HtmlOptionGroup}.
9415      *
9416      * @throws Exception if the test fails
9417      */
9418     @Test
9419     @Alerts(CHROME = "constructor(),disabled[GSCE],label[GSCE]",
9420             EDGE = "constructor(),disabled[GSCE],label[GSCE]",
9421             FF = "constructor(),disabled[GSCE],label[GSCE]",
9422             FF_ESR = "constructor(),disabled[GSCE],label[GSCE]")
9423     public void optgroup() throws Exception {
9424         test("optgroup");
9425     }
9426 
9427     /**
9428      * Test {@link org.htmlunit.html.HtmlOption}.
9429      *
9430      * @throws Exception if the test fails
9431      */
9432     @Test
9433     @Alerts(CHROME = "constructor(),defaultSelected[GSCE],disabled[GSCE],form[GCE],index[GCE],label[GSCE],"
9434                 + "selected[GSCE],text[GSCE],value[GSCE]",
9435             EDGE = "constructor(),defaultSelected[GSCE],disabled[GSCE],form[GCE],index[GCE],label[GSCE],"
9436                 + "selected[GSCE],text[GSCE],value[GSCE]",
9437             FF = "constructor(),defaultSelected[GSCE],disabled[GSCE],form[GCE],index[GCE],label[GSCE],"
9438                 + "selected[GSCE],text[GSCE],value[GSCE]",
9439             FF_ESR = "constructor(),defaultSelected[GSCE],disabled[GSCE],form[GCE],index[GCE],label[GSCE],"
9440                 + "selected[GSCE],text[GSCE],value[GSCE]")
9441     @HtmlUnitNYI(CHROME = "constructor(),defaultSelected[GCE],disabled[GSCE],form[GCE],index[GCE],label[GSCE],"
9442                 + "selected[GSCE],text[GSCE],value[GSCE]",
9443             EDGE = "constructor(),defaultSelected[GCE],disabled[GSCE],form[GCE],index[GCE],label[GSCE],"
9444                 + "selected[GSCE],text[GSCE],value[GSCE]",
9445             FF = "constructor(),defaultSelected[GCE],disabled[GSCE],form[GCE],index[GCE],label[GSCE],"
9446                 + "selected[GSCE],text[GSCE],value[GSCE]",
9447             FF_ESR = "constructor(),defaultSelected[GCE],disabled[GSCE],form[GCE],index[GCE],label[GSCE],"
9448                 + "selected[GSCE],text[GSCE],value[GSCE]")
9449     public void option() throws Exception {
9450         test("option");
9451     }
9452 
9453     /**
9454      * Test {@link org.htmlunit.html.HtmlOutput}.
9455      *
9456      * @throws Exception if the test fails
9457      */
9458     @Test
9459     @Alerts(CHROME = "checkValidity(),constructor(),defaultValue[GSCE],form[GCE],htmlFor[GSCE],labels[GCE],name[GSCE],"
9460                 + "reportValidity(),setCustomValidity(),type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
9461                 + "willValidate[GCE]",
9462             EDGE = "checkValidity(),constructor(),defaultValue[GSCE],form[GCE],htmlFor[GSCE],labels[GCE],name[GSCE],"
9463                 + "reportValidity(),setCustomValidity(),type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
9464                 + "willValidate[GCE]",
9465             FF = "checkValidity(),constructor(),defaultValue[GSCE],form[GCE],htmlFor[GSCE],labels[GCE],name[GSCE],"
9466                 + "reportValidity(),setCustomValidity(),type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
9467                 + "willValidate[GCE]",
9468             FF_ESR = "checkValidity(),constructor(),defaultValue[GSCE],form[GCE],htmlFor[GSCE],labels[GCE],name[GSCE],"
9469                 + "reportValidity(),setCustomValidity(),type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
9470                 + "willValidate[GCE]")
9471     @HtmlUnitNYI(CHROME = "checkValidity(),constructor(),form[GCE],labels[GCE],name[GSCE],setCustomValidity(),"
9472                 + "validity[GCE],willValidate[GCE]",
9473             EDGE = "checkValidity(),constructor(),form[GCE],labels[GCE],name[GSCE],setCustomValidity(),"
9474                 + "validity[GCE],willValidate[GCE]",
9475             FF_ESR = "checkValidity(),constructor(),form[GCE],labels[GCE],name[GSCE],setCustomValidity(),"
9476                 + "validity[GCE],willValidate[GCE]",
9477             FF = "checkValidity(),constructor(),form[GCE],labels[GCE],name[GSCE],setCustomValidity(),"
9478                 + "validity[GCE],willValidate[GCE]")
9479     public void output() throws Exception {
9480         test("output");
9481     }
9482 
9483     /**
9484      * Test {@link org.htmlunit.html.HtmlParagraph}.
9485      *
9486      * @throws Exception if the test fails
9487      */
9488     @Test
9489     @Alerts(CHROME = "align[GSCE],constructor()",
9490             EDGE = "align[GSCE],constructor()",
9491             FF = "align[GSCE],constructor()",
9492             FF_ESR = "align[GSCE],constructor()")
9493     public void p() throws Exception {
9494         test("p");
9495     }
9496 
9497     /**
9498      * Test {@link org.htmlunit.html.HtmlParameter}.
9499      *
9500      * @throws Exception if the test fails
9501      */
9502     @Test
9503     @Alerts(CHROME = "constructor(),name[GSCE],type[GSCE],value[GSCE],valueType[GSCE]",
9504             EDGE = "constructor(),name[GSCE],type[GSCE],value[GSCE],valueType[GSCE]",
9505             FF = "constructor(),name[GSCE],type[GSCE],value[GSCE],valueType[GSCE]",
9506             FF_ESR = "constructor(),name[GSCE],type[GSCE],value[GSCE],valueType[GSCE]")
9507     @HtmlUnitNYI(CHROME = "constructor(),name[GCE],type[GCE],value[GCE],valueType[GCE]",
9508             EDGE = "constructor(),name[GCE],type[GCE],value[GCE],valueType[GCE]",
9509             FF = "constructor(),name[GCE],type[GCE],value[GCE],valueType[GCE]",
9510             FF_ESR = "constructor(),name[GCE],type[GCE],value[GCE],valueType[GCE]")
9511     public void param() throws Exception {
9512         test("param");
9513     }
9514 
9515     /**
9516      * Test {@link Performance}.
9517      *
9518      * @throws Exception if the test fails
9519      */
9520     @Test
9521     @Alerts(CHROME = "clearMarks(),clearMeasures(),clearResourceTimings(),constructor(),eventCounts[GCE],getEntries(),"
9522                 + "getEntriesByName(),getEntriesByType(),mark(),measure(),memory[GCE],navigation[GCE],now(),"
9523                 + "onresourcetimingbufferfull[GSCE],setResourceTimingBufferSize(),timeOrigin[GCE],timing[GCE],"
9524                 + "toJSON()",
9525             EDGE = "clearMarks(),clearMeasures(),clearResourceTimings(),constructor(),eventCounts[GCE],getEntries(),"
9526                 + "getEntriesByName(),getEntriesByType(),mark(),measure(),memory[GCE],navigation[GCE],now(),"
9527                 + "onresourcetimingbufferfull[GSCE],setResourceTimingBufferSize(),timeOrigin[GCE],timing[GCE],"
9528                 + "toJSON()",
9529             FF = "clearMarks(),clearMeasures(),clearResourceTimings(),constructor(),eventCounts[GCE],getEntries(),"
9530                 + "getEntriesByName(),getEntriesByType(),mark(),measure(),navigation[GCE],now(),"
9531                 + "onresourcetimingbufferfull[GSCE],setResourceTimingBufferSize(),timeOrigin[GCE],timing[GCE],"
9532                 + "toJSON()",
9533             FF_ESR = "clearMarks(),clearMeasures(),clearResourceTimings(),constructor(),eventCounts[GCE],getEntries(),"
9534                 + "getEntriesByName(),getEntriesByType(),mark(),measure(),navigation[GCE],now(),"
9535                 + "onresourcetimingbufferfull[GSCE],setResourceTimingBufferSize(),timeOrigin[GCE],timing[GCE],"
9536                 + "toJSON()")
9537     @HtmlUnitNYI(CHROME = "constructor(),getEntries(),getEntriesByName(),getEntriesByType(),"
9538                 + "navigation[GCE],now(),timing[GCE]",
9539             EDGE = "constructor(),getEntries(),getEntriesByName(),getEntriesByType(),"
9540                 + "navigation[GCE],now(),timing[GCE]",
9541             FF = "constructor(),getEntries(),getEntriesByName(),getEntriesByType(),"
9542                 + "navigation[GCE],now(),timing[GCE]",
9543             FF_ESR = "constructor(),getEntries(),getEntriesByName(),getEntriesByType(),"
9544                 + "navigation[GCE],now(),timing[GCE]")
9545     public void performance() throws Exception {
9546         testString("", "performance");
9547     }
9548 
9549     /**
9550      * Test {@link org.htmlunit.html.HtmlPlainText}.
9551      *
9552      * @throws Exception if the test fails
9553      */
9554     @Test
9555     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
9556                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9557                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9558                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9559                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9560                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9561                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
9562                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9563                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9564                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9565                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
9566                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9567                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9568                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9569                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
9570                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
9571                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9572                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9573                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
9574                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
9575                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
9576                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9577                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9578                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9579                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9580                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9581                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9582                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
9583                 + "virtualKeyboardPolicy[GSCE],"
9584                 + "writingSuggestions[GSCE]",
9585             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
9586                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9587                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9588                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9589                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9590                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9591                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
9592                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9593                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9594                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9595                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
9596                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9597                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9598                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9599                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
9600                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
9601                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9602                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9603                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
9604                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
9605                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
9606                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9607                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9608                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9609                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9610                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9611                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9612                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
9613                 + "virtualKeyboardPolicy[GSCE],"
9614                 + "writingSuggestions[GSCE]",
9615             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
9616                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
9617                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9618                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9619                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9620                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9621                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
9622                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9623                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9624                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9625                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
9626                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
9627                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
9628                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9629                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
9630                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
9631                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
9632                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
9633                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
9634                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9635                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
9636                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
9637                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
9638                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
9639                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
9640                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
9641                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
9642                 + "togglePopover(),"
9643                 + "translate[GSCE]",
9644             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
9645                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9646                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
9647                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
9648                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
9649                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9650                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
9651                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
9652                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9653                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
9654                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
9655                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
9656                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9657                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
9658                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9659                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
9660                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9661                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9662                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
9663                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
9664                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9665                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9666                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9667                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9668                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9669                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9670                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
9671                 + "translate[GSCE]")
9672     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
9673                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9674                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9675                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9676                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9677                 + "offsetTop[GCE],offsetWidth[GCE],"
9678                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9679                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
9680                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9681                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
9682                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
9683                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9684                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9685                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9686                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
9687                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9688                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
9689                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9690                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9691                 + "onpointermove[GSCE],onpointerout[GSCE],"
9692                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9693                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
9694                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
9695                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
9696                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
9697                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
9698                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
9699             EDGE = "accessKey[GSCE],autofocus[GSCE],"
9700                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9701                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9702                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9703                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9704                 + "offsetTop[GCE],offsetWidth[GCE],"
9705                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9706                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
9707                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9708                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
9709                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
9710                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9711                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9712                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9713                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
9714                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9715                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
9716                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9717                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9718                 + "onpointermove[GSCE],onpointerout[GSCE],"
9719                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9720                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
9721                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
9722                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
9723                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
9724                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
9725                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
9726             FF = "accessKey[GSCE],autofocus[GSCE],"
9727                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9728                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9729                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9730                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9731                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9732                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9733                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
9734                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
9735                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
9736                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
9737                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9738                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9739                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
9740                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
9741                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9742                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9743                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
9744                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
9745                 + "onseeked[GSCE],onseeking[GSCE],"
9746                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9747                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
9748                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
9749                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
9750             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9751                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9752                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9753                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9754                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9755                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9756                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
9757                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
9758                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
9759                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
9760                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9761                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9762                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
9763                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
9764                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9765                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9766                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
9767                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
9768                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9769                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
9770                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
9771                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
9772     public void plaintext() throws Exception {
9773         test("plaintext");
9774     }
9775 
9776     /**
9777      * Test {@link org.htmlunit.html.HtmlPreformattedText}.
9778      *
9779      * @throws Exception if the test fails
9780      */
9781     @Test
9782     @Alerts(CHROME = "constructor(),width[GSCE]",
9783             EDGE = "constructor(),width[GSCE]",
9784             FF = "constructor(),width[GSCE]",
9785             FF_ESR = "constructor(),width[GSCE]")
9786     public void pre() throws Exception {
9787         test("pre");
9788     }
9789 
9790     /**
9791      * Test {@link org.htmlunit.html.HtmlProgress}.
9792      *
9793      * @throws Exception if the test fails
9794      */
9795     @Test
9796     @Alerts(CHROME = "constructor(),labels[GCE],max[GSCE],position[GCE],value[GSCE]",
9797             EDGE = "constructor(),labels[GCE],max[GSCE],position[GCE],value[GSCE]",
9798             FF = "constructor(),labels[GCE],max[GSCE],position[GCE],value[GSCE]",
9799             FF_ESR = "constructor(),labels[GCE],max[GSCE],position[GCE],value[GSCE]")
9800     @HtmlUnitNYI(CHROME = "constructor(),labels[GCE],max[GCE],value[GCE]",
9801             EDGE = "constructor(),labels[GCE],max[GCE],value[GCE]",
9802             FF_ESR = "constructor(),labels[GCE],max[GCE],value[GCE]",
9803             FF = "constructor(),labels[GCE],max[GCE],value[GCE]")
9804     public void progress() throws Exception {
9805         test("progress");
9806     }
9807 
9808     /**
9809      * Test {@link org.htmlunit.html.HtmlRp}.
9810      *
9811      * @throws Exception if the test fails
9812      */
9813     @Test
9814     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
9815                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9816                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9817                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9818                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9819                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9820                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
9821                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9822                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9823                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9824                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
9825                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9826                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9827                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9828                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
9829                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
9830                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9831                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9832                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
9833                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
9834                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
9835                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9836                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9837                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9838                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9839                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9840                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9841                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
9842                 + "virtualKeyboardPolicy[GSCE],"
9843                 + "writingSuggestions[GSCE]",
9844             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
9845                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9846                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9847                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9848                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9849                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9850                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
9851                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9852                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9853                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9854                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
9855                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9856                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
9857                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
9858                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
9859                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
9860                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9861                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9862                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
9863                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
9864                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
9865                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9866                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9867                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9868                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9869                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9870                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9871                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
9872                 + "virtualKeyboardPolicy[GSCE],"
9873                 + "writingSuggestions[GSCE]",
9874             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
9875                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
9876                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
9877                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
9878                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
9879                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9880                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
9881                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
9882                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
9883                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
9884                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
9885                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
9886                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
9887                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9888                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
9889                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
9890                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
9891                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
9892                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
9893                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9894                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
9895                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
9896                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
9897                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
9898                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
9899                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
9900                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
9901                 + "togglePopover(),"
9902                 + "translate[GSCE]",
9903             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
9904                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
9905                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
9906                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
9907                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
9908                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
9909                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
9910                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
9911                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9912                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
9913                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
9914                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
9915                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9916                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
9917                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9918                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
9919                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9920                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9921                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
9922                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
9923                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
9924                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
9925                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
9926                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
9927                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
9928                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
9929                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
9930                 + "translate[GSCE]")
9931     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
9932                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9933                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9934                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9935                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9936                 + "offsetTop[GCE],offsetWidth[GCE],"
9937                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9938                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
9939                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9940                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
9941                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
9942                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9943                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9944                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9945                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
9946                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9947                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
9948                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9949                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9950                 + "onpointermove[GSCE],onpointerout[GSCE],"
9951                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9952                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
9953                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
9954                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
9955                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
9956                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
9957                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
9958             EDGE = "accessKey[GSCE],autofocus[GSCE],"
9959                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
9960                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
9961                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
9962                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9963                 + "offsetTop[GCE],offsetWidth[GCE],"
9964                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
9965                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
9966                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
9967                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
9968                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
9969                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9970                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9971                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
9972                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
9973                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
9974                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
9975                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9976                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
9977                 + "onpointermove[GSCE],onpointerout[GSCE],"
9978                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
9979                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
9980                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
9981                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
9982                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
9983                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
9984                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
9985             FF = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
9986                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
9987                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
9988                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
9989                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
9990                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
9991                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
9992                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
9993                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
9994                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
9995                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
9996                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
9997                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
9998                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
9999                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10000                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10001                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10002                 + "onscrollend[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10003                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10004                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10005                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10006                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10007             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
10008                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
10009                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10010                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
10011                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
10012                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
10013                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
10014                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
10015                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10016                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10017                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10018                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
10019                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10020                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10021                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10022                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10023                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10024                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10025                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10026                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10027                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10028                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
10029     public void rb() throws Exception {
10030         test("rb");
10031     }
10032 
10033     /**
10034      * Test HtmlRbc.
10035      *
10036      * @throws Exception if the test fails
10037      */
10038     @Test
10039     @Alerts(CHROME = "constructor()",
10040             EDGE = "constructor()",
10041             FF = "constructor()",
10042             FF_ESR = "constructor()")
10043     public void rbc() throws Exception {
10044         test("rbc");
10045     }
10046 
10047     /**
10048      * Test {@link org.htmlunit.html.HtmlRp}.
10049      *
10050      * @throws Exception if the test fails
10051      */
10052     @Test
10053     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10054                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10055                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10056                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10057                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10058                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10059                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10060                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10061                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10062                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10063                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10064                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10065                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10066                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10067                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10068                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
10069                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10070                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10071                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
10072                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
10073                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
10074                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10075                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10076                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10077                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10078                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10079                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10080                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
10081                 + "virtualKeyboardPolicy[GSCE],"
10082                 + "writingSuggestions[GSCE]",
10083             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10084                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10085                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10086                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10087                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10088                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10089                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10090                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10091                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10092                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10093                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10094                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10095                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10096                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10097                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10098                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
10099                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10100                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10101                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
10102                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
10103                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
10104                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10105                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10106                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10107                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10108                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10109                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10110                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
10111                 + "virtualKeyboardPolicy[GSCE],"
10112                 + "writingSuggestions[GSCE]",
10113             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
10114                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
10115                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10116                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10117                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10118                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10119                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
10120                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10121                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10122                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10123                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
10124                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
10125                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
10126                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10127                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
10128                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
10129                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
10130                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
10131                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
10132                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10133                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
10134                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
10135                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
10136                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
10137                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
10138                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
10139                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
10140                 + "togglePopover(),"
10141                 + "translate[GSCE]",
10142             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
10143                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10144                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
10145                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
10146                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
10147                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10148                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
10149                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
10150                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10151                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
10152                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
10153                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
10154                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10155                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10156                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10157                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10158                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10159                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10160                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
10161                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
10162                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10163                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10164                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10165                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10166                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10167                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10168                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
10169                 + "translate[GSCE]")
10170     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
10171                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
10172                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
10173                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
10174                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10175                 + "offsetTop[GCE],offsetWidth[GCE],"
10176                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10177                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
10178                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10179                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
10180                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
10181                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10182                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10183                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10184                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
10185                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10186                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
10187                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10188                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10189                 + "onpointermove[GSCE],onpointerout[GSCE],"
10190                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10191                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
10192                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
10193                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10194                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10195                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
10196                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10197             EDGE = "accessKey[GSCE],autofocus[GSCE],"
10198                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
10199                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
10200                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
10201                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10202                 + "offsetTop[GCE],offsetWidth[GCE],"
10203                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10204                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
10205                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10206                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
10207                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
10208                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10209                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10210                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10211                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
10212                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10213                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
10214                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10215                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10216                 + "onpointermove[GSCE],onpointerout[GSCE],"
10217                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10218                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
10219                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
10220                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10221                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10222                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
10223                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10224             FF = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
10225                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
10226                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10227                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
10228                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
10229                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
10230                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
10231                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
10232                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10233                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10234                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10235                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
10236                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10237                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10238                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10239                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10240                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10241                 + "onscrollend[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10242                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10243                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10244                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10245                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10246             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
10247                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
10248                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10249                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
10250                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
10251                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
10252                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
10253                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
10254                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10255                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10256                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10257                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
10258                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10259                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10260                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10261                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10262                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10263                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10264                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10265                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10266                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10267                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
10268     public void rp() throws Exception {
10269         test("rp");
10270     }
10271 
10272     /**
10273      * Test {@link org.htmlunit.html.HtmlRt}.
10274      *
10275      * @throws Exception if the test fails
10276      */
10277     @Test
10278     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10279                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10280                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10281                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10282                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10283                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10284                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10285                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10286                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10287                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10288                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10289                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10290                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10291                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10292                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10293                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
10294                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10295                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10296                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
10297                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
10298                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
10299                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10300                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10301                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10302                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10303                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10304                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10305                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
10306                 + "virtualKeyboardPolicy[GSCE],"
10307                 + "writingSuggestions[GSCE]",
10308             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10309                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10310                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10311                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10312                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10313                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10314                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10315                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10316                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10317                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10318                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10319                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10320                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10321                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10322                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10323                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
10324                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10325                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10326                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
10327                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
10328                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
10329                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10330                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10331                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10332                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10333                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10334                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10335                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
10336                 + "virtualKeyboardPolicy[GSCE],"
10337                 + "writingSuggestions[GSCE]",
10338             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
10339                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
10340                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10341                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10342                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10343                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10344                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
10345                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10346                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10347                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10348                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
10349                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
10350                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
10351                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10352                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
10353                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
10354                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
10355                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
10356                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
10357                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10358                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
10359                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
10360                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
10361                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
10362                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
10363                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
10364                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
10365                 + "togglePopover(),"
10366                 + "translate[GSCE]",
10367             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
10368                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10369                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
10370                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
10371                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
10372                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10373                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
10374                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
10375                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10376                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
10377                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
10378                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
10379                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10380                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10381                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10382                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10383                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10384                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10385                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
10386                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
10387                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10388                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10389                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10390                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10391                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10392                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10393                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
10394                 + "translate[GSCE]")
10395     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
10396                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
10397                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
10398                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
10399                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10400                 + "offsetTop[GCE],offsetWidth[GCE],"
10401                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10402                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
10403                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10404                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
10405                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
10406                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10407                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10408                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10409                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
10410                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10411                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
10412                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10413                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10414                 + "onpointermove[GSCE],onpointerout[GSCE],"
10415                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10416                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
10417                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
10418                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10419                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10420                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
10421                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10422             EDGE = "accessKey[GSCE],autofocus[GSCE],"
10423                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
10424                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
10425                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
10426                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10427                 + "offsetTop[GCE],offsetWidth[GCE],"
10428                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10429                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
10430                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10431                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
10432                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
10433                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10434                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10435                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10436                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
10437                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10438                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
10439                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10440                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10441                 + "onpointermove[GSCE],onpointerout[GSCE],"
10442                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10443                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
10444                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
10445                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10446                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10447                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
10448                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10449             FF = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
10450                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
10451                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10452                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
10453                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
10454                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
10455                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
10456                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
10457                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10458                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10459                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10460                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
10461                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10462                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10463                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10464                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10465                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10466                 + "onscrollend[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10467                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10468                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10469                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10470                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10471             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
10472                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
10473                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10474                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
10475                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
10476                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
10477                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
10478                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
10479                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10480                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10481                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10482                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
10483                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10484                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10485                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10486                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10487                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10488                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10489                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10490                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10491                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10492                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
10493     public void rt() throws Exception {
10494         test("rt");
10495     }
10496 
10497 
10498     /**
10499      * Test {@link org.htmlunit.html.HtmlRtc}.
10500      *
10501      * @throws Exception if the test fails
10502      */
10503     @Test
10504     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10505                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10506                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10507                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10508                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10509                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10510                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10511                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10512                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10513                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10514                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10515                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10516                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10517                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10518                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10519                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
10520                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10521                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10522                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
10523                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
10524                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
10525                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10526                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10527                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10528                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10529                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10530                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10531                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
10532                 + "virtualKeyboardPolicy[GSCE],"
10533                 + "writingSuggestions[GSCE]",
10534             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10535                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10536                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10537                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10538                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10539                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10540                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10541                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10542                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10543                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10544                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10545                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10546                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10547                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10548                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10549                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
10550                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10551                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10552                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
10553                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
10554                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
10555                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10556                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10557                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10558                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10559                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10560                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10561                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
10562                 + "virtualKeyboardPolicy[GSCE],"
10563                 + "writingSuggestions[GSCE]",
10564             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
10565                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
10566                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10567                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10568                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10569                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10570                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
10571                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10572                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10573                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10574                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
10575                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
10576                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
10577                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10578                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
10579                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
10580                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
10581                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
10582                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
10583                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10584                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
10585                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
10586                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
10587                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
10588                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
10589                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
10590                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
10591                 + "togglePopover(),"
10592                 + "translate[GSCE]",
10593             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
10594                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10595                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
10596                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
10597                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
10598                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10599                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
10600                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
10601                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10602                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
10603                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
10604                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
10605                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10606                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10607                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10608                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10609                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10610                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10611                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
10612                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
10613                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10614                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10615                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10616                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10617                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10618                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10619                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
10620                 + "translate[GSCE]")
10621     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
10622                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
10623                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
10624                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
10625                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10626                 + "offsetTop[GCE],offsetWidth[GCE],"
10627                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10628                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
10629                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10630                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
10631                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
10632                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10633                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10634                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10635                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
10636                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10637                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
10638                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10639                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10640                 + "onpointermove[GSCE],onpointerout[GSCE],"
10641                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10642                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
10643                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
10644                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10645                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10646                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
10647                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10648             EDGE = "accessKey[GSCE],autofocus[GSCE],"
10649                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
10650                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
10651                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
10652                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10653                 + "offsetTop[GCE],offsetWidth[GCE],"
10654                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10655                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
10656                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10657                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
10658                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
10659                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10660                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10661                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10662                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
10663                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10664                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
10665                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10666                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10667                 + "onpointermove[GSCE],onpointerout[GSCE],"
10668                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10669                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
10670                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
10671                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10672                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10673                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
10674                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10675             FF = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
10676                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
10677                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10678                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
10679                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
10680                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
10681                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
10682                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
10683                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10684                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10685                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10686                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
10687                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10688                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10689                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10690                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10691                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10692                 + "onscrollend[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10693                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10694                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10695                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10696                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10697             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
10698                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
10699                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10700                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
10701                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
10702                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
10703                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
10704                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
10705                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10706                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10707                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10708                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
10709                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10710                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10711                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10712                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10713                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10714                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10715                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10716                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10717                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10718                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
10719     public void rtc() throws Exception {
10720         test("rtc");
10721     }
10722 
10723     /**
10724      * Test {@link org.htmlunit.html.HtmlRuby}.
10725      *
10726      * @throws Exception if the test fails
10727      */
10728     @Test
10729     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10730                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10731                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10732                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10733                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10734                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10735                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10736                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10737                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10738                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10739                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10740                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10741                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10742                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10743                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10744                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
10745                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10746                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10747                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
10748                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
10749                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
10750                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10751                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10752                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10753                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10754                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10755                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10756                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
10757                 + "virtualKeyboardPolicy[GSCE],"
10758                 + "writingSuggestions[GSCE]",
10759             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10760                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10761                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10762                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10763                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10764                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10765                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10766                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10767                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10768                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10769                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10770                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10771                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10772                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10773                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10774                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
10775                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10776                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10777                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
10778                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
10779                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
10780                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10781                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10782                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10783                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10784                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10785                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10786                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
10787                 + "virtualKeyboardPolicy[GSCE],"
10788                 + "writingSuggestions[GSCE]",
10789             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
10790                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
10791                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10792                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10793                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10794                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10795                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
10796                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10797                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10798                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10799                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
10800                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
10801                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
10802                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10803                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
10804                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
10805                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
10806                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
10807                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
10808                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10809                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
10810                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
10811                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
10812                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
10813                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
10814                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
10815                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
10816                 + "togglePopover(),"
10817                 + "translate[GSCE]",
10818             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
10819                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10820                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
10821                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
10822                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
10823                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10824                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
10825                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
10826                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10827                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
10828                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
10829                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
10830                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10831                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10832                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10833                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10834                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10835                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10836                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
10837                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
10838                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10839                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10840                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10841                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10842                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10843                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10844                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
10845                 + "translate[GSCE]")
10846     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
10847                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
10848                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
10849                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
10850                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10851                 + "offsetTop[GCE],offsetWidth[GCE],"
10852                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10853                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
10854                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10855                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
10856                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
10857                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10858                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10859                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10860                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
10861                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10862                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
10863                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10864                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10865                 + "onpointermove[GSCE],onpointerout[GSCE],"
10866                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10867                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
10868                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
10869                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10870                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10871                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
10872                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10873             EDGE = "accessKey[GSCE],autofocus[GSCE],"
10874                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
10875                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
10876                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
10877                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10878                 + "offsetTop[GCE],offsetWidth[GCE],"
10879                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
10880                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
10881                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
10882                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
10883                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
10884                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10885                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10886                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
10887                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
10888                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
10889                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
10890                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10891                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10892                 + "onpointermove[GSCE],onpointerout[GSCE],"
10893                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
10894                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
10895                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
10896                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10897                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10898                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
10899                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10900             FF = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
10901                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
10902                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10903                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
10904                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
10905                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
10906                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
10907                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
10908                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10909                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10910                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10911                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
10912                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10913                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10914                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10915                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10916                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10917                 + "onscrollend[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10918                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10919                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10920                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10921                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
10922             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],"
10923                 + "dataset[GCE],dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],"
10924                 + "isContentEditable[GCE],lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
10925                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
10926                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onblur[GSCE],oncanplay[GSCE],"
10927                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
10928                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
10929                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
10930                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10931                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
10932                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
10933                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
10934                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
10935                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10936                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10937                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],"
10938                 + "onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
10939                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
10940                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
10941                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
10942                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
10943                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
10944     public void ruby() throws Exception {
10945         test("ruby");
10946     }
10947 
10948     /**
10949      * Test {@link org.htmlunit.html.HtmlS}.
10950      *
10951      * @throws Exception if the test fails
10952      */
10953     @Test
10954     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10955                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10956                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10957                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10958                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10959                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10960                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10961                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10962                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10963                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10964                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10965                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10966                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10967                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10968                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10969                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
10970                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
10971                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
10972                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
10973                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
10974                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
10975                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
10976                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
10977                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
10978                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
10979                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
10980                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
10981                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
10982                 + "virtualKeyboardPolicy[GSCE],"
10983                 + "writingSuggestions[GSCE]",
10984             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
10985                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
10986                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
10987                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
10988                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
10989                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
10990                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
10991                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
10992                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
10993                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
10994                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
10995                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
10996                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
10997                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
10998                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
10999                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
11000                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11001                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11002                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
11003                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11004                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
11005                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11006                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11007                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11008                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11009                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11010                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11011                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
11012                 + "virtualKeyboardPolicy[GSCE],"
11013                 + "writingSuggestions[GSCE]",
11014             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
11015                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
11016                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11017                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11018                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11019                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11020                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
11021                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11022                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11023                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11024                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
11025                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
11026                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
11027                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
11028                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
11029                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
11030                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
11031                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
11032                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
11033                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11034                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
11035                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
11036                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
11037                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
11038                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
11039                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
11040                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
11041                 + "togglePopover(),"
11042                 + "translate[GSCE]",
11043             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
11044                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11045                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
11046                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
11047                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
11048                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11049                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
11050                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
11051                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
11052                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
11053                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
11054                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
11055                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11056                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11057                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11058                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
11059                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11060                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11061                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11062                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
11063                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11064                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11065                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11066                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11067                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11068                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11069                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
11070                 + "translate[GSCE]")
11071     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
11072                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11073                 + "dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],"
11074                 + "lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],"
11075                 + "offsetWidth[GCE],onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
11076                 + "onanimationstart[GSCE],onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
11077                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
11078                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
11079                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
11080                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11081                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11082                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11083                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11084                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
11085                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],"
11086                 + "onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],"
11087                 + "onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11088                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
11089                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
11090                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
11091                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11092                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
11093                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11094             EDGE = "accessKey[GSCE],autofocus[GSCE],"
11095                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11096                 + "dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],"
11097                 + "lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],"
11098                 + "offsetWidth[GCE],onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
11099                 + "onanimationstart[GSCE],onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
11100                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
11101                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
11102                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
11103                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11104                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11105                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11106                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11107                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
11108                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],"
11109                 + "onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],"
11110                 + "onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11111                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
11112                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
11113                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
11114                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11115                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
11116                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11117             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
11118                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
11119                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11120                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11121                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11122                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11123                 + "oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11124                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11125                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11126                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11127                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11128                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
11129                 + "onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],"
11130                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
11131                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
11132                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11133                 + "onresize[GSCE],onscroll[GSCE],"
11134                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
11135                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11136                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11137                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
11138                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11139             FF = "accessKey[GSCE],autofocus[GSCE],"
11140                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
11141                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11142                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11143                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11144                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11145                 + "oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11146                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11147                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11148                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11149                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11150                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
11151                 + "onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],"
11152                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
11153                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
11154                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11155                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
11156                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
11157                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11158                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11159                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
11160                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
11161     public void s() throws Exception {
11162         test("s");
11163     }
11164 
11165     /**
11166      * Test {@link org.htmlunit.html.HtmlSample}.
11167      *
11168      * @throws Exception if the test fails
11169      */
11170     @Test
11171     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
11172                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11173                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11174                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11175                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11176                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11177                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
11178                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11179                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11180                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11181                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11182                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11183                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11184                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11185                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
11186                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
11187                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11188                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11189                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
11190                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11191                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
11192                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11193                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11194                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11195                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11196                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11197                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11198                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
11199                 + "virtualKeyboardPolicy[GSCE],"
11200                 + "writingSuggestions[GSCE]",
11201             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
11202                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11203                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11204                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11205                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11206                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11207                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
11208                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11209                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11210                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11211                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11212                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11213                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11214                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11215                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
11216                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
11217                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11218                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11219                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
11220                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11221                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
11222                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11223                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11224                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11225                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11226                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11227                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11228                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
11229                 + "virtualKeyboardPolicy[GSCE],"
11230                 + "writingSuggestions[GSCE]",
11231             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
11232                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
11233                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11234                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11235                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11236                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11237                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
11238                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11239                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11240                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11241                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
11242                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
11243                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
11244                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
11245                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
11246                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
11247                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
11248                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
11249                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
11250                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11251                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
11252                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
11253                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
11254                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
11255                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
11256                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
11257                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
11258                 + "togglePopover(),"
11259                 + "translate[GSCE]",
11260             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
11261                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11262                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
11263                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
11264                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
11265                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11266                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
11267                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
11268                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
11269                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
11270                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
11271                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
11272                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11273                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11274                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11275                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
11276                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11277                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11278                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11279                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
11280                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11281                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11282                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11283                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11284                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11285                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11286                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
11287                 + "translate[GSCE]")
11288     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
11289                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11290                 + "dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],"
11291                 + "lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
11292                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11293                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
11294                 + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
11295                 + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
11296                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
11297                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
11298                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],"
11299                 + "onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
11300                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
11301                 + "onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],"
11302                 + "onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],"
11303                 + "onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],"
11304                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11305                 + "onscroll[GSCE],onscrollend[GSCE],"
11306                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
11307                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11308                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11309                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],outerText[GSCE],"
11310                 + "style[GSCE],tabIndex[GSCE],title[GSCE]",
11311             EDGE = "accessKey[GSCE],autofocus[GSCE],"
11312                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11313                 + "dir[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],"
11314                 + "lang[GSCE],offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],"
11315                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11316                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
11317                 + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],"
11318                 + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
11319                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
11320                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
11321                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],"
11322                 + "onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
11323                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
11324                 + "onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],"
11325                 + "onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],"
11326                 + "onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],"
11327                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11328                 + "onscroll[GSCE],onscrollend[GSCE],"
11329                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
11330                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11331                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11332                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],outerText[GSCE],"
11333                 + "style[GSCE],tabIndex[GSCE],title[GSCE]",
11334             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
11335                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
11336                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11337                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11338                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11339                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11340                 + "oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11341                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11342                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11343                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11344                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11345                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
11346                 + "onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],"
11347                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
11348                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
11349                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11350                 + "onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
11351                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11352                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11353                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
11354                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11355             FF = "accessKey[GSCE],autofocus[GSCE],"
11356                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
11357                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11358                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11359                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11360                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11361                 + "oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11362                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11363                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11364                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11365                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11366                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
11367                 + "onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],"
11368                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
11369                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
11370                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11371                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
11372                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],"
11373                 + "onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11374                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11375                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],outerText[GSCE],"
11376                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
11377     public void samp() throws Exception {
11378         test("samp");
11379     }
11380 
11381     /**
11382      * Test {@link org.htmlunit.html.HtmlScript}.
11383      *
11384      * @throws Exception if the test fails
11385      */
11386     @Test
11387     @Alerts(CHROME = "async[GSCE],attributionSrc[GSCE],blocking[GSCE],charset[GSCE],constructor(),crossOrigin[GSCE],"
11388                 + "defer[GSCE],event[GSCE],fetchPriority[GSCE],htmlFor[GSCE],integrity[GSCE],noModule[GSCE],"
11389                 + "referrerPolicy[GSCE],src[GSCE],text[GSCE],"
11390                 + "type[GSCE]",
11391             EDGE = "async[GSCE],attributionSrc[GSCE],blocking[GSCE],charset[GSCE],constructor(),crossOrigin[GSCE],"
11392                 + "defer[GSCE],event[GSCE],fetchPriority[GSCE],htmlFor[GSCE],integrity[GSCE],noModule[GSCE],"
11393                 + "referrerPolicy[GSCE],src[GSCE],text[GSCE],"
11394                 + "type[GSCE]",
11395             FF = "async[GSCE],charset[GSCE],constructor(),crossOrigin[GSCE],defer[GSCE],event[GSCE],"
11396                 + "fetchPriority[GSCE],htmlFor[GSCE],innerText[GSCE],integrity[GSCE],noModule[GSCE],"
11397                 + "referrerPolicy[GSCE],src[GSCE],text[GSCE],textContent[GSCE],"
11398                 + "type[GSCE]",
11399             FF_ESR = "async[GSCE],charset[GSCE],constructor(),crossOrigin[GSCE],defer[GSCE],event[GSCE],htmlFor[GSCE],"
11400                 + "integrity[GSCE],noModule[GSCE],referrerPolicy[GSCE],src[GSCE],text[GSCE],"
11401                 + "type[GSCE]")
11402     @HtmlUnitNYI(CHROME = "async[GSCE],constructor(),src[GSCE],text[GSCE],type[GSCE]",
11403             EDGE = "async[GSCE],constructor(),src[GSCE],text[GSCE],type[GSCE]",
11404             FF_ESR = "async[GSCE],constructor(),src[GSCE],text[GSCE],type[GSCE]",
11405             FF = "async[GSCE],constructor(),src[GSCE],text[GSCE],type[GSCE]")
11406     public void script() throws Exception {
11407         test("script");
11408     }
11409 
11410     /**
11411      * Test {@link org.htmlunit.html.HtmlSection}.
11412      *
11413      * @throws Exception if the test fails
11414      */
11415     @Test
11416     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
11417                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11418                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11419                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11420                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11421                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11422                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
11423                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11424                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11425                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11426                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11427                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11428                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11429                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11430                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
11431                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
11432                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11433                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11434                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
11435                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11436                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
11437                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11438                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11439                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11440                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11441                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11442                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11443                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
11444                 + "virtualKeyboardPolicy[GSCE],"
11445                 + "writingSuggestions[GSCE]",
11446             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
11447                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11448                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11449                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11450                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11451                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11452                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
11453                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11454                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11455                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11456                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11457                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11458                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11459                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11460                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
11461                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
11462                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11463                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11464                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
11465                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11466                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
11467                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11468                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11469                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11470                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11471                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11472                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11473                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
11474                 + "virtualKeyboardPolicy[GSCE],"
11475                 + "writingSuggestions[GSCE]",
11476             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
11477                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
11478                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11479                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11480                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11481                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11482                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
11483                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11484                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11485                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11486                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
11487                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
11488                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
11489                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
11490                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
11491                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
11492                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
11493                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
11494                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
11495                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11496                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
11497                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
11498                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
11499                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
11500                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
11501                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
11502                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
11503                 + "togglePopover(),"
11504                 + "translate[GSCE]",
11505             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
11506                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11507                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
11508                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
11509                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
11510                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11511                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
11512                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
11513                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
11514                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
11515                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
11516                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
11517                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11518                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11519                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11520                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
11521                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11522                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11523                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11524                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
11525                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11526                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11527                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11528                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11529                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11530                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11531                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
11532                 + "translate[GSCE]")
11533     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
11534                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11535                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
11536                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11537                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
11538                 + "offsetTop[GCE],offsetWidth[GCE],"
11539                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11540                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
11541                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
11542                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
11543                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
11544                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11545                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11546                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
11547                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
11548                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11549                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
11550                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11551                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11552                 + "onpointermove[GSCE],onpointerout[GSCE],"
11553                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11554                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
11555                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
11556                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11557                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11558                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
11559                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11560             EDGE = "accessKey[GSCE],autofocus[GSCE],"
11561                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11562                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
11563                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11564                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
11565                 + "offsetTop[GCE],offsetWidth[GCE],"
11566                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11567                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
11568                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
11569                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
11570                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
11571                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11572                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11573                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
11574                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
11575                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11576                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
11577                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11578                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11579                 + "onpointermove[GSCE],onpointerout[GSCE],"
11580                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11581                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
11582                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
11583                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11584                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11585                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
11586                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11587             FF = "accessKey[GSCE],autofocus[GSCE],"
11588                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11589                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
11590                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11591                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
11592                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11593                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11594                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
11595                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
11596                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
11597                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
11598                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11599                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11600                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
11601                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
11602                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11603                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11604                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11605                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
11606                 + "onseeked[GSCE],onseeking[GSCE],"
11607                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11608                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
11609                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
11610                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11611             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11612                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
11613                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11614                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
11615                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11616                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11617                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
11618                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
11619                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
11620                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
11621                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11622                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11623                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
11624                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
11625                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11626                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11627                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11628                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
11629                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11630                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
11631                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
11632                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
11633     public void section() throws Exception {
11634         test("section");
11635     }
11636 
11637     /**
11638      * Test {@link org.htmlunit.html.HtmlSelect}.
11639      *
11640      * @throws Exception if the test fails
11641      */
11642     @Test
11643     @Alerts(CHROME = "add(),autocomplete[GSCE],checkValidity(),constructor(),disabled[GSCE],form[GCE],item(),"
11644                 + "labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],namedItem(),options[GCE],remove(),"
11645                 + "reportValidity(),required[GSCE],selectedIndex[GSCE],selectedOptions[GCE],setCustomValidity(),"
11646                 + "showPicker(),size[GSCE],type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
11647                 + "willValidate[GCE]",
11648             EDGE = "add(),autocomplete[GSCE],checkValidity(),constructor(),disabled[GSCE],form[GCE],item(),"
11649                 + "labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],namedItem(),options[GCE],remove(),"
11650                 + "reportValidity(),required[GSCE],selectedIndex[GSCE],selectedOptions[GCE],setCustomValidity(),"
11651                 + "showPicker(),size[GSCE],type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
11652                 + "willValidate[GCE]",
11653             FF = "add(),autocomplete[GSCE],checkValidity(),constructor(),disabled[GSCE],form[GCE],item(),"
11654                 + "labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],namedItem(),options[GCE],remove(),"
11655                 + "reportValidity(),required[GSCE],selectedIndex[GSCE],selectedOptions[GCE],setCustomValidity(),"
11656                 + "showPicker(),size[GSCE],type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
11657                 + "willValidate[GCE]",
11658             FF_ESR = "add(),autocomplete[GSCE],checkValidity(),constructor(),disabled[GSCE],form[GCE],item(),"
11659                 + "labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],namedItem(),options[GCE],remove(),"
11660                 + "reportValidity(),required[GSCE],selectedIndex[GSCE],selectedOptions[GCE],setCustomValidity(),"
11661                 + "showPicker(),size[GSCE],type[GCE],validationMessage[GCE],validity[GCE],value[GSCE],"
11662                 + "willValidate[GCE]")
11663     @HtmlUnitNYI(CHROME = "add(),checkValidity(),constructor(),disabled[GSCE],form[GCE],item(),"
11664                 + "labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],options[GCE],remove(),required[GSCE],"
11665                 + "selectedIndex[GSCE],setCustomValidity(),size[GSCE],type[GCE],validity[GCE],value[GSCE],"
11666                 + "willValidate[GCE]",
11667             EDGE = "add(),checkValidity(),constructor(),disabled[GSCE],form[GCE],item(),"
11668                 + "labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],options[GCE],remove(),required[GSCE],"
11669                 + "selectedIndex[GSCE],setCustomValidity(),size[GSCE],type[GCE],validity[GCE],value[GSCE],"
11670                 + "willValidate[GCE]",
11671             FF_ESR = "add(),checkValidity(),constructor(),disabled[GSCE],form[GCE],item(),"
11672                 + "labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],options[GCE],remove(),required[GSCE],"
11673                 + "selectedIndex[GSCE],setCustomValidity(),size[GSCE],type[GCE],validity[GCE],value[GSCE],"
11674                 + "willValidate[GCE]",
11675             FF = "add(),checkValidity(),constructor(),disabled[GSCE],form[GCE],item(),"
11676                 + "labels[GCE],length[GSCE],multiple[GSCE],name[GSCE],options[GCE],remove(),required[GSCE],"
11677                 + "selectedIndex[GSCE],setCustomValidity(),size[GSCE],type[GCE],validity[GCE],value[GSCE],"
11678                 + "willValidate[GCE]")
11679     public void select() throws Exception {
11680         test("select");
11681     }
11682 
11683     /**
11684      * Test {@link org.htmlunit.html.HtmlSelect}.
11685      *
11686      * @throws Exception if the test fails
11687      */
11688     @Test
11689     @Alerts(CHROME = "add(),constructor(),length[GSCE],remove(),selectedIndex[GSCE]",
11690             EDGE = "add(),constructor(),length[GSCE],remove(),selectedIndex[GSCE]",
11691             FF = "add(),constructor(),length[GSCE],remove(),selectedIndex[GSCE]",
11692             FF_ESR = "add(),constructor(),length[GSCE],remove(),selectedIndex[GSCE]")
11693     @HtmlUnitNYI(CHROME = "add(),constructor(),item(),length[GSCE],remove(),selectedIndex[GSCE]",
11694             EDGE = "add(),constructor(),item(),length[GSCE],remove(),selectedIndex[GSCE]",
11695             FF_ESR = "add(),constructor(),item(),length[GSCE],remove(),selectedIndex[GSCE]",
11696             FF = "add(),constructor(),item(),length[GSCE],remove(),selectedIndex[GSCE]")
11697     public void optionsCollection() throws Exception {
11698         testString("var sel = document.createElement('select')", "sel.options");
11699     }
11700 
11701     /**
11702      * Test {@link org.htmlunit.html.HtmlSmall}.
11703      *
11704      * @throws Exception if the test fails
11705      */
11706     @Test
11707     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
11708                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11709                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11710                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11711                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11712                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11713                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
11714                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11715                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11716                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11717                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11718                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11719                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11720                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11721                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
11722                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
11723                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11724                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11725                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
11726                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11727                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
11728                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11729                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11730                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11731                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11732                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11733                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11734                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
11735                 + "virtualKeyboardPolicy[GSCE],"
11736                 + "writingSuggestions[GSCE]",
11737             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
11738                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11739                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11740                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11741                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11742                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11743                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
11744                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11745                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11746                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11747                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11748                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11749                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11750                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11751                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
11752                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
11753                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11754                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11755                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
11756                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11757                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
11758                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11759                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11760                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11761                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11762                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11763                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11764                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
11765                 + "virtualKeyboardPolicy[GSCE],"
11766                 + "writingSuggestions[GSCE]",
11767             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
11768                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
11769                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11770                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11771                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11772                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11773                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
11774                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11775                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11776                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11777                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
11778                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
11779                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
11780                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
11781                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
11782                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
11783                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
11784                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
11785                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
11786                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11787                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
11788                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
11789                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
11790                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
11791                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
11792                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
11793                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
11794                 + "togglePopover(),"
11795                 + "translate[GSCE]",
11796             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
11797                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11798                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
11799                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
11800                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
11801                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11802                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
11803                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
11804                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
11805                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
11806                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
11807                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
11808                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11809                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
11810                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11811                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
11812                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11813                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11814                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11815                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
11816                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11817                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11818                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11819                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11820                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11821                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11822                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
11823                 + "translate[GSCE]")
11824     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
11825                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11826                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
11827                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11828                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
11829                 + "offsetTop[GCE],offsetWidth[GCE],"
11830                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11831                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
11832                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
11833                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
11834                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
11835                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11836                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11837                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
11838                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
11839                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11840                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
11841                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11842                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11843                 + "onpointermove[GSCE],onpointerout[GSCE],"
11844                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11845                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
11846                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
11847                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11848                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11849                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
11850                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11851             EDGE = "accessKey[GSCE],autofocus[GSCE],"
11852                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11853                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
11854                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11855                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
11856                 + "offsetTop[GCE],offsetWidth[GCE],"
11857                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11858                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
11859                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
11860                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
11861                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
11862                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11863                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
11864                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
11865                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
11866                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
11867                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
11868                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11869                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11870                 + "onpointermove[GSCE],onpointerout[GSCE],"
11871                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
11872                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
11873                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
11874                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
11875                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
11876                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
11877                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11878             FF = "accessKey[GSCE],autofocus[GSCE],"
11879                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11880                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
11881                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11882                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
11883                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11884                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11885                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
11886                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
11887                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
11888                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
11889                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11890                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11891                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
11892                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
11893                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11894                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11895                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11896                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
11897                 + "onseeked[GSCE],onseeking[GSCE],"
11898                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11899                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
11900                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
11901                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
11902             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
11903                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
11904                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
11905                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
11906                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11907                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
11908                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
11909                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
11910                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
11911                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
11912                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11913                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11914                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
11915                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
11916                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11917                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11918                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
11919                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
11920                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11921                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
11922                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
11923                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
11924     public void small() throws Exception {
11925         test("small");
11926     }
11927 
11928     /**
11929      * Test {@link org.htmlunit.html.HtmlSource}.
11930      *
11931      * @throws Exception if the test fails
11932      */
11933     @Test
11934     @Alerts(CHROME = "constructor(),height[GSCE],media[GSCE],sizes[GSCE],src[GSCE],srcset[GSCE],type[GSCE],width[GSCE]",
11935             EDGE = "constructor(),height[GSCE],media[GSCE],sizes[GSCE],src[GSCE],srcset[GSCE],type[GSCE],width[GSCE]",
11936             FF = "constructor(),height[GSCE],media[GSCE],sizes[GSCE],src[GSCE],srcset[GSCE],type[GSCE],width[GSCE]",
11937             FF_ESR = "constructor(),height[GSCE],media[GSCE],sizes[GSCE],src[GSCE],srcset[GSCE],type[GSCE],width[GSCE]")
11938     @HtmlUnitNYI(CHROME = "constructor()",
11939             EDGE = "constructor()",
11940             FF_ESR = "constructor()",
11941             FF = "constructor()")
11942     public void source() throws Exception {
11943         test("source");
11944     }
11945 
11946     /**
11947      * Test {@link org.htmlunit.html.HtmlSpan}.
11948      *
11949      * @throws Exception if the test fails
11950      */
11951     @Test
11952     @Alerts(CHROME = "constructor()",
11953             EDGE = "constructor()",
11954             FF = "constructor()",
11955             FF_ESR = "constructor()")
11956     public void span() throws Exception {
11957         test("span");
11958     }
11959 
11960     /**
11961      * Test {@link org.htmlunit.html.HtmlStrike}.
11962      *
11963      * @throws Exception if the test fails
11964      */
11965     @Test
11966     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
11967                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11968                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11969                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
11970                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
11971                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
11972                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
11973                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
11974                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
11975                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
11976                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
11977                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
11978                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
11979                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
11980                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
11981                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
11982                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
11983                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
11984                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
11985                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
11986                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
11987                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
11988                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
11989                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
11990                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
11991                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
11992                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
11993                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
11994                 + "virtualKeyboardPolicy[GSCE],"
11995                 + "writingSuggestions[GSCE]",
11996             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
11997                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
11998                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
11999                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12000                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12001                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12002                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
12003                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12004                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12005                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12006                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
12007                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12008                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12009                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12010                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
12011                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
12012                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12013                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12014                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
12015                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
12016                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
12017                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12018                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12019                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12020                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12021                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12022                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12023                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
12024                 + "virtualKeyboardPolicy[GSCE],"
12025                 + "writingSuggestions[GSCE]",
12026             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
12027                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
12028                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12029                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12030                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12031                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12032                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
12033                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12034                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12035                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12036                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12037                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
12038                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
12039                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12040                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
12041                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
12042                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
12043                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
12044                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
12045                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12046                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
12047                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
12048                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
12049                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
12050                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
12051                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
12052                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
12053                 + "togglePopover(),"
12054                 + "translate[GSCE]",
12055             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
12056                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12057                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
12058                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
12059                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
12060                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12061                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
12062                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
12063                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12064                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
12065                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
12066                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
12067                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12068                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
12069                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12070                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12071                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12072                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12073                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12074                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
12075                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12076                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12077                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12078                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12079                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12080                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12081                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
12082                 + "translate[GSCE]")
12083     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
12084                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12085                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12086                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12087                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12088                 + "offsetTop[GCE],offsetWidth[GCE],"
12089                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12090                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
12091                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12092                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
12093                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
12094                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12095                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12096                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12097                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
12098                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12099                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
12100                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12101                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12102                 + "onpointermove[GSCE],onpointerout[GSCE],"
12103                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12104                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
12105                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
12106                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
12107                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
12108                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
12109                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12110             EDGE = "accessKey[GSCE],autofocus[GSCE],"
12111                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12112                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12113                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12114                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12115                 + "offsetTop[GCE],offsetWidth[GCE],"
12116                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12117                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
12118                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12119                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
12120                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
12121                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12122                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12123                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12124                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
12125                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12126                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
12127                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12128                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12129                 + "onpointermove[GSCE],onpointerout[GSCE],"
12130                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12131                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
12132                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
12133                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
12134                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
12135                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
12136                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12137             FF = "accessKey[GSCE],autofocus[GSCE],"
12138                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12139                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12140                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12141                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12142                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12143                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12144                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
12145                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
12146                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12147                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
12148                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12149                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12150                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
12151                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12152                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12153                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12154                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12155                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
12156                 + "onseeked[GSCE],onseeking[GSCE],"
12157                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12158                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
12159                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
12160                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12161             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
12162                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12163                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12164                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12165                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12166                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12167                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12168                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
12169                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
12170                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12171                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
12172                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12173                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12174                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
12175                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12176                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12177                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12178                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12179                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
12180                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12181                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
12182                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
12183                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
12184     public void strike() throws Exception {
12185         test("strike");
12186     }
12187 
12188     /**
12189      * Test {@link org.htmlunit.html.HtmlStrong}.
12190      *
12191      * @throws Exception if the test fails
12192      */
12193     @Test
12194     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
12195                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12196                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12197                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12198                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12199                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12200                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
12201                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12202                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12203                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12204                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
12205                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12206                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12207                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12208                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
12209                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
12210                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12211                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12212                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
12213                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
12214                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
12215                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12216                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12217                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12218                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12219                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12220                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12221                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
12222                 + "virtualKeyboardPolicy[GSCE],"
12223                 + "writingSuggestions[GSCE]",
12224             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
12225                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12226                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12227                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12228                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12229                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12230                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
12231                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12232                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12233                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12234                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
12235                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12236                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12237                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12238                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
12239                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
12240                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12241                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12242                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
12243                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
12244                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
12245                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12246                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12247                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12248                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12249                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12250                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12251                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
12252                 + "virtualKeyboardPolicy[GSCE],"
12253                 + "writingSuggestions[GSCE]",
12254             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
12255                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
12256                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12257                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12258                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12259                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12260                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
12261                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12262                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12263                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12264                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12265                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
12266                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
12267                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12268                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
12269                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
12270                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
12271                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
12272                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
12273                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12274                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
12275                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
12276                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
12277                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
12278                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
12279                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
12280                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
12281                 + "togglePopover(),"
12282                 + "translate[GSCE]",
12283             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
12284                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12285                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
12286                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
12287                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
12288                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12289                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
12290                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
12291                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12292                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
12293                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
12294                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
12295                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12296                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
12297                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12298                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12299                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12300                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12301                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12302                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
12303                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12304                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12305                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12306                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12307                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12308                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12309                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
12310                 + "translate[GSCE]")
12311     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
12312                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12313                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12314                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12315                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12316                 + "offsetTop[GCE],offsetWidth[GCE],"
12317                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12318                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
12319                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12320                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
12321                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
12322                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12323                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12324                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12325                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
12326                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12327                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
12328                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12329                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12330                 + "onpointermove[GSCE],onpointerout[GSCE],"
12331                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12332                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
12333                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
12334                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
12335                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
12336                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
12337                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12338             EDGE = "accessKey[GSCE],autofocus[GSCE],"
12339                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12340                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12341                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12342                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12343                 + "offsetTop[GCE],offsetWidth[GCE],"
12344                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12345                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
12346                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12347                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
12348                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
12349                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12350                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12351                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12352                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
12353                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12354                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
12355                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12356                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12357                 + "onpointermove[GSCE],onpointerout[GSCE],"
12358                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12359                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
12360                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
12361                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
12362                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
12363                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
12364                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12365             FF = "accessKey[GSCE],autofocus[GSCE],"
12366                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12367                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12368                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12369                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12370                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12371                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12372                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
12373                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
12374                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12375                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
12376                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12377                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12378                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
12379                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12380                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12381                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12382                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12383                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
12384                 + "onseeked[GSCE],onseeking[GSCE],"
12385                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12386                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
12387                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
12388                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12389             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
12390                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12391                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12392                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12393                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12394                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12395                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12396                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
12397                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
12398                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12399                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
12400                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12401                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12402                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
12403                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12404                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12405                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12406                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12407                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
12408                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12409                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
12410                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
12411                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
12412     public void strong() throws Exception {
12413         test("strong");
12414     }
12415 
12416     /**
12417      * Test {@link org.htmlunit.html.HtmlStyle}.
12418      *
12419      * @throws Exception if the test fails
12420      */
12421     @Test
12422     @Alerts(CHROME = "blocking[GSCE],constructor(),disabled[GSCE],media[GSCE],sheet[GCE],type[GSCE]",
12423             EDGE = "blocking[GSCE],constructor(),disabled[GSCE],media[GSCE],sheet[GCE],type[GSCE]",
12424             FF = "constructor(),disabled[GSCE],media[GSCE],sheet[GCE],type[GSCE]",
12425             FF_ESR = "constructor(),disabled[GSCE],media[GSCE],sheet[GCE],type[GSCE]")
12426     @HtmlUnitNYI(
12427             CHROME = "constructor(),disabled[GSCE],media[GSCE],sheet[GCE],type[GSCE]",
12428             EDGE = "constructor(),disabled[GSCE],media[GSCE],sheet[GCE],type[GSCE]")
12429     public void style() throws Exception {
12430         test("style");
12431     }
12432 
12433     /**
12434      * Test {@link org.htmlunit.html.HtmlSubscript}.
12435      *
12436      * @throws Exception if the test fails
12437      */
12438     @Test
12439     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
12440                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12441                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12442                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12443                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12444                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12445                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
12446                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12447                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12448                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12449                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
12450                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12451                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12452                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12453                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
12454                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
12455                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12456                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12457                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
12458                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
12459                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
12460                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12461                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12462                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12463                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12464                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12465                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12466                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
12467                 + "virtualKeyboardPolicy[GSCE],"
12468                 + "writingSuggestions[GSCE]",
12469             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
12470                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12471                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12472                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12473                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12474                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12475                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
12476                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12477                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12478                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12479                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
12480                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12481                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12482                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12483                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
12484                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
12485                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12486                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12487                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
12488                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
12489                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
12490                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12491                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12492                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12493                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12494                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12495                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12496                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
12497                 + "virtualKeyboardPolicy[GSCE],"
12498                 + "writingSuggestions[GSCE]",
12499             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
12500                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
12501                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12502                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12503                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12504                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12505                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
12506                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12507                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12508                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12509                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12510                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
12511                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
12512                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12513                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
12514                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
12515                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
12516                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
12517                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
12518                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12519                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
12520                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
12521                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
12522                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
12523                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
12524                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
12525                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
12526                 + "togglePopover(),"
12527                 + "translate[GSCE]",
12528             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
12529                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12530                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
12531                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
12532                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
12533                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12534                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
12535                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
12536                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12537                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
12538                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
12539                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
12540                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12541                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
12542                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12543                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12544                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12545                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12546                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12547                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
12548                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12549                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12550                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12551                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12552                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12553                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12554                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
12555                 + "translate[GSCE]")
12556     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
12557                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12558                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12559                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12560                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12561                 + "offsetTop[GCE],offsetWidth[GCE],"
12562                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12563                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
12564                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12565                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
12566                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
12567                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12568                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12569                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12570                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
12571                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12572                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
12573                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12574                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12575                 + "onpointermove[GSCE],onpointerout[GSCE],"
12576                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12577                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
12578                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
12579                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
12580                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
12581                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
12582                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12583             EDGE = "accessKey[GSCE],autofocus[GSCE],"
12584                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12585                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12586                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12587                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12588                 + "offsetTop[GCE],offsetWidth[GCE],"
12589                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12590                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
12591                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12592                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
12593                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
12594                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12595                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12596                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12597                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
12598                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12599                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
12600                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12601                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12602                 + "onpointermove[GSCE],onpointerout[GSCE],"
12603                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12604                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
12605                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
12606                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
12607                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
12608                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
12609                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12610             FF = "accessKey[GSCE],autofocus[GSCE],"
12611                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12612                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12613                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12614                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12615                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12616                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12617                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
12618                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
12619                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12620                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
12621                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12622                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12623                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
12624                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12625                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12626                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12627                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12628                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
12629                 + "onseeked[GSCE],onseeking[GSCE],"
12630                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12631                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
12632                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
12633                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12634             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12635                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12636                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12637                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12638                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12639                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12640                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
12641                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
12642                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12643                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
12644                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12645                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12646                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
12647                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12648                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12649                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12650                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12651                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
12652                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12653                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
12654                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
12655                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
12656     public void sub() throws Exception {
12657         test("sub");
12658     }
12659 
12660     /**
12661      * Test {@link org.htmlunit.html.HtmlSummary}.
12662      *
12663      * @throws Exception if the test fails
12664      */
12665     @Test
12666     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
12667                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12668                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12669                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12670                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12671                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12672                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
12673                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12674                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12675                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12676                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
12677                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12678                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12679                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12680                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
12681                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
12682                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12683                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12684                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
12685                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
12686                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
12687                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12688                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12689                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12690                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12691                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12692                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12693                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
12694                 + "virtualKeyboardPolicy[GSCE],"
12695                 + "writingSuggestions[GSCE]",
12696             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
12697                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12698                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12699                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12700                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12701                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12702                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
12703                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12704                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12705                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12706                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
12707                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12708                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12709                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12710                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
12711                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
12712                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12713                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12714                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
12715                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
12716                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
12717                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12718                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12719                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12720                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12721                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12722                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12723                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
12724                 + "virtualKeyboardPolicy[GSCE],"
12725                 + "writingSuggestions[GSCE]",
12726             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
12727                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
12728                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12729                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12730                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12731                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12732                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
12733                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12734                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12735                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12736                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12737                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
12738                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
12739                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12740                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
12741                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
12742                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
12743                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
12744                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
12745                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12746                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
12747                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
12748                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
12749                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
12750                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
12751                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
12752                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
12753                 + "togglePopover(),"
12754                 + "translate[GSCE]",
12755             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
12756                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12757                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
12758                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
12759                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
12760                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12761                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
12762                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
12763                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12764                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
12765                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
12766                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
12767                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12768                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
12769                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12770                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12771                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12772                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12773                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12774                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
12775                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12776                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12777                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12778                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12779                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12780                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12781                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
12782                 + "translate[GSCE]")
12783     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
12784                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12785                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12786                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12787                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12788                 + "offsetTop[GCE],offsetWidth[GCE],"
12789                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12790                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
12791                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12792                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
12793                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
12794                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12795                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12796                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12797                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
12798                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12799                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
12800                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12801                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12802                 + "onpointermove[GSCE],onpointerout[GSCE],"
12803                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12804                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
12805                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
12806                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
12807                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
12808                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
12809                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12810             EDGE = "accessKey[GSCE],autofocus[GSCE],"
12811                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12812                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12813                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12814                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12815                 + "offsetTop[GCE],offsetWidth[GCE],"
12816                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12817                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
12818                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12819                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
12820                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
12821                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12822                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12823                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12824                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
12825                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12826                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
12827                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12828                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12829                 + "onpointermove[GSCE],onpointerout[GSCE],"
12830                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12831                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
12832                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
12833                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
12834                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
12835                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
12836                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12837             FF = "accessKey[GSCE],autofocus[GSCE],"
12838                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12839                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12840                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12841                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12842                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12843                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12844                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
12845                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
12846                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12847                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
12848                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12849                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12850                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
12851                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12852                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12853                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12854                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12855                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
12856                 + "onseeked[GSCE],onseeking[GSCE],"
12857                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12858                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
12859                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
12860                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
12861             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
12862                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
12863                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
12864                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
12865                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
12866                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12867                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12868                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
12869                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
12870                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12871                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
12872                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12873                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12874                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
12875                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12876                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12877                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12878                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
12879                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
12880                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12881                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
12882                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
12883                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
12884     public void summary() throws Exception {
12885         test("summary");
12886     }
12887 
12888     /**
12889      * Test {@link org.htmlunit.html.HtmlSuperscript}.
12890      *
12891      * @throws Exception if the test fails
12892      */
12893     @Test
12894     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
12895                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12896                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12897                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12898                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12899                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12900                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
12901                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12902                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12903                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12904                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
12905                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12906                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12907                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12908                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
12909                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
12910                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12911                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12912                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
12913                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
12914                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
12915                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12916                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12917                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12918                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12919                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12920                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12921                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
12922                 + "virtualKeyboardPolicy[GSCE],"
12923                 + "writingSuggestions[GSCE]",
12924             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
12925                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12926                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12927                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12928                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12929                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12930                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
12931                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12932                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12933                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12934                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
12935                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
12936                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
12937                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
12938                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
12939                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
12940                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
12941                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
12942                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
12943                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
12944                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
12945                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
12946                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
12947                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
12948                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
12949                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
12950                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
12951                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
12952                 + "virtualKeyboardPolicy[GSCE],"
12953                 + "writingSuggestions[GSCE]",
12954             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
12955                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
12956                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
12957                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
12958                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
12959                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
12960                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
12961                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
12962                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
12963                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
12964                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
12965                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
12966                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
12967                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
12968                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
12969                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
12970                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
12971                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
12972                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
12973                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
12974                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
12975                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
12976                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
12977                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
12978                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
12979                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
12980                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
12981                 + "togglePopover(),"
12982                 + "translate[GSCE]",
12983             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
12984                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
12985                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
12986                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
12987                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
12988                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
12989                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
12990                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
12991                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
12992                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
12993                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
12994                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
12995                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
12996                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
12997                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
12998                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
12999                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13000                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13001                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
13002                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
13003                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
13004                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13005                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
13006                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
13007                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
13008                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
13009                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
13010                 + "translate[GSCE]")
13011     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
13012                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13013                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13014                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13015                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13016                 + "offsetTop[GCE],offsetWidth[GCE],"
13017                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13018                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
13019                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
13020                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
13021                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
13022                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13023                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
13024                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
13025                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
13026                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
13027                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
13028                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13029                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13030                 + "onpointermove[GSCE],onpointerout[GSCE],"
13031                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
13032                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
13033                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
13034                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
13035                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
13036                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
13037                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
13038             EDGE = "accessKey[GSCE],autofocus[GSCE],"
13039                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13040                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13041                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13042                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13043                 + "offsetTop[GCE],offsetWidth[GCE],"
13044                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13045                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
13046                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
13047                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
13048                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
13049                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13050                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
13051                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
13052                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
13053                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
13054                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
13055                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13056                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13057                 + "onpointermove[GSCE],onpointerout[GSCE],"
13058                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
13059                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
13060                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
13061                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
13062                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
13063                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
13064                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
13065             FF = "accessKey[GSCE],autofocus[GSCE],"
13066                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13067                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13068                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13069                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13070                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13071                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13072                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
13073                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
13074                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
13075                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
13076                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13077                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13078                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
13079                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
13080                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13081                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13082                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
13083                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
13084                 + "onseeked[GSCE],onseeking[GSCE],"
13085                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13086                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
13087                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
13088                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
13089             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13090                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13091                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13092                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13093                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13094                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13095                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
13096                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
13097                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
13098                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
13099                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13100                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13101                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
13102                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
13103                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13104                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13105                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
13106                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
13107                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13108                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
13109                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
13110                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
13111     public void sup() throws Exception {
13112         test("sup");
13113     }
13114 
13115     /**
13116      * Test {@link org.htmlunit.html.HtmlSvg}.
13117      *
13118      * @throws Exception if the test fails
13119      */
13120     @Test
13121     @Alerts(CHROME = "constructor()",
13122             EDGE = "constructor()",
13123             FF = "constructor()",
13124             FF_ESR = "constructor()")
13125     public void svg() throws Exception {
13126         test("svg");
13127     }
13128 
13129     /**
13130      * Test {@link org.htmlunit.html.HtmlTable}.
13131      *
13132      * @throws Exception if the test fails
13133      */
13134     @Test
13135     @Alerts(CHROME = "align[GSCE],bgColor[GSCE],border[GSCE],caption[GSCE],cellPadding[GSCE],cellSpacing[GSCE],"
13136                 + "constructor(),createCaption(),createTBody(),createTFoot(),createTHead(),deleteCaption(),"
13137                 + "deleteRow(),deleteTFoot(),deleteTHead(),frame[GSCE],insertRow(),rows[GCE],rules[GSCE],"
13138                 + "summary[GSCE],tBodies[GCE],tFoot[GSCE],tHead[GSCE],"
13139                 + "width[GSCE]",
13140             EDGE = "align[GSCE],bgColor[GSCE],border[GSCE],caption[GSCE],cellPadding[GSCE],cellSpacing[GSCE],"
13141                 + "constructor(),createCaption(),createTBody(),createTFoot(),createTHead(),deleteCaption(),"
13142                 + "deleteRow(),deleteTFoot(),deleteTHead(),frame[GSCE],insertRow(),rows[GCE],rules[GSCE],"
13143                 + "summary[GSCE],tBodies[GCE],tFoot[GSCE],tHead[GSCE],"
13144                 + "width[GSCE]",
13145             FF = "align[GSCE],bgColor[GSCE],border[GSCE],caption[GSCE],cellPadding[GSCE],cellSpacing[GSCE],"
13146                 + "constructor(),createCaption(),createTBody(),createTFoot(),createTHead(),deleteCaption(),"
13147                 + "deleteRow(),deleteTFoot(),deleteTHead(),frame[GSCE],insertRow(),rows[GCE],rules[GSCE],"
13148                 + "summary[GSCE],tBodies[GCE],tFoot[GSCE],tHead[GSCE],"
13149                 + "width[GSCE]",
13150             FF_ESR = "align[GSCE],bgColor[GSCE],border[GSCE],caption[GSCE],cellPadding[GSCE],cellSpacing[GSCE],"
13151                 + "constructor(),createCaption(),createTBody(),createTFoot(),createTHead(),deleteCaption(),"
13152                 + "deleteRow(),deleteTFoot(),deleteTHead(),frame[GSCE],insertRow(),rows[GCE],rules[GSCE],"
13153                 + "summary[GSCE],tBodies[GCE],tFoot[GSCE],tHead[GSCE],"
13154                 + "width[GSCE]")
13155     @HtmlUnitNYI(CHROME = "align[GSCE],bgColor[GSCE],border[GSCE],caption[GSCE],cellPadding[GSCE],cellSpacing[GSCE],"
13156                 + "constructor(),createCaption(),createTBody(),createTFoot(),createTHead(),deleteCaption(),"
13157                 + "deleteRow(),deleteTFoot(),deleteTHead(),insertRow(),rows[GCE],rules[GSCE],"
13158                 + "summary[GSCE],tBodies[GCE],tFoot[GSCE],tHead[GSCE],"
13159                 + "width[GSCE]",
13160             EDGE = "align[GSCE],bgColor[GSCE],border[GSCE],caption[GSCE],cellPadding[GSCE],cellSpacing[GSCE],"
13161                 + "constructor(),createCaption(),createTBody(),createTFoot(),createTHead(),deleteCaption(),"
13162                 + "deleteRow(),deleteTFoot(),deleteTHead(),insertRow(),rows[GCE],rules[GSCE],"
13163                 + "summary[GSCE],tBodies[GCE],tFoot[GSCE],tHead[GSCE],"
13164                 + "width[GSCE]",
13165             FF_ESR = "align[GSCE],bgColor[GSCE],border[GSCE],caption[GSCE],cellPadding[GSCE],cellSpacing[GSCE],"
13166                 + "constructor(),createCaption(),createTBody(),createTFoot(),createTHead(),deleteCaption(),"
13167                 + "deleteRow(),deleteTFoot(),deleteTHead(),insertRow(),rows[GCE],rules[GSCE],"
13168                 + "summary[GSCE],tBodies[GCE],tFoot[GSCE],tHead[GSCE],"
13169                 + "width[GSCE]",
13170             FF = "align[GSCE],bgColor[GSCE],border[GSCE],caption[GSCE],cellPadding[GSCE],cellSpacing[GSCE],"
13171                 + "constructor(),createCaption(),createTBody(),createTFoot(),createTHead(),deleteCaption(),"
13172                 + "deleteRow(),deleteTFoot(),deleteTHead(),insertRow(),rows[GCE],rules[GSCE],"
13173                 + "summary[GSCE],tBodies[GCE],tFoot[GSCE],tHead[GSCE],"
13174                 + "width[GSCE]")
13175     public void table() throws Exception {
13176         test("table");
13177     }
13178 
13179     /**
13180      * Test {@link org.htmlunit.html.HtmlTableColumn}.
13181      *
13182      * @throws Exception if the test fails
13183      */
13184     @Test
13185     @Alerts(CHROME = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),span[GSCE],vAlign[GSCE],width[GSCE]",
13186             EDGE = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),span[GSCE],vAlign[GSCE],width[GSCE]",
13187             FF = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),span[GSCE],vAlign[GSCE],width[GSCE]",
13188             FF_ESR = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),span[GSCE],vAlign[GSCE],width[GSCE]")
13189     public void col() throws Exception {
13190         test("col");
13191     }
13192 
13193     /**
13194      * Test {@link org.htmlunit.html.HtmlTableColumnGroup}.
13195      *
13196      * @throws Exception if the test fails
13197      */
13198     @Test
13199     @Alerts(CHROME = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),span[GSCE],vAlign[GSCE],width[GSCE]",
13200             EDGE = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),span[GSCE],vAlign[GSCE],width[GSCE]",
13201             FF = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),span[GSCE],vAlign[GSCE],width[GSCE]",
13202             FF_ESR = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),span[GSCE],vAlign[GSCE],width[GSCE]")
13203     public void colgroup() throws Exception {
13204         test("colgroup");
13205     }
13206 
13207     /**
13208      * Test {@link org.htmlunit.html.HtmlTableBody}.
13209      *
13210      * @throws Exception if the test fails
13211      */
13212     @Test
13213     @Alerts(CHROME = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]",
13214             EDGE = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]",
13215             FF = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]",
13216             FF_ESR = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]")
13217     public void tbody() throws Exception {
13218         test("tbody");
13219     }
13220 
13221     /**
13222      * Test {@link org.htmlunit.html.HtmlTableDataCell}.
13223      *
13224      * @throws Exception if the test fails
13225      */
13226     @Test
13227     @Alerts(CHROME = "abbr[GSCE],align[GSCE],axis[GSCE],bgColor[GSCE],cellIndex[GCE],ch[GSCE],chOff[GSCE],"
13228                 + "colSpan[GSCE],constructor(),headers[GSCE],height[GSCE],noWrap[GSCE],rowSpan[GSCE],scope[GSCE],"
13229                 + "vAlign[GSCE],width[GSCE]",
13230             EDGE = "abbr[GSCE],align[GSCE],axis[GSCE],bgColor[GSCE],cellIndex[GCE],ch[GSCE],chOff[GSCE],"
13231                 + "colSpan[GSCE],constructor(),headers[GSCE],height[GSCE],noWrap[GSCE],rowSpan[GSCE],scope[GSCE],"
13232                 + "vAlign[GSCE],width[GSCE]",
13233             FF = "abbr[GSCE],align[GSCE],axis[GSCE],bgColor[GSCE],cellIndex[GCE],ch[GSCE],chOff[GSCE],"
13234                 + "colSpan[GSCE],constructor(),headers[GSCE],height[GSCE],noWrap[GSCE],rowSpan[GSCE],scope[GSCE],"
13235                 + "vAlign[GSCE],width[GSCE]",
13236             FF_ESR = "abbr[GSCE],align[GSCE],axis[GSCE],bgColor[GSCE],cellIndex[GCE],ch[GSCE],chOff[GSCE],"
13237                 + "colSpan[GSCE],constructor(),headers[GSCE],height[GSCE],noWrap[GSCE],rowSpan[GSCE],scope[GSCE],"
13238                 + "vAlign[GSCE],width[GSCE]")
13239     public void td() throws Exception {
13240         test("td");
13241     }
13242 
13243     /**
13244      * Test {@link org.htmlunit.html.HtmlTableHeaderCell}.
13245      *
13246      * @throws Exception if the test fails
13247      */
13248     @Test
13249     @Alerts(CHROME = "abbr[GSCE],align[GSCE],axis[GSCE],bgColor[GSCE],cellIndex[GCE],ch[GSCE],chOff[GSCE],"
13250                 + "colSpan[GSCE],constructor(),headers[GSCE],height[GSCE],noWrap[GSCE],rowSpan[GSCE],scope[GSCE],"
13251                 + "vAlign[GSCE],width[GSCE]",
13252             EDGE = "abbr[GSCE],align[GSCE],axis[GSCE],bgColor[GSCE],cellIndex[GCE],ch[GSCE],chOff[GSCE],"
13253                 + "colSpan[GSCE],constructor(),headers[GSCE],height[GSCE],noWrap[GSCE],rowSpan[GSCE],scope[GSCE],"
13254                 + "vAlign[GSCE],width[GSCE]",
13255             FF = "abbr[GSCE],align[GSCE],axis[GSCE],bgColor[GSCE],cellIndex[GCE],ch[GSCE],chOff[GSCE],"
13256                 + "colSpan[GSCE],constructor(),headers[GSCE],height[GSCE],noWrap[GSCE],rowSpan[GSCE],scope[GSCE],"
13257                 + "vAlign[GSCE],width[GSCE]",
13258             FF_ESR = "abbr[GSCE],align[GSCE],axis[GSCE],bgColor[GSCE],cellIndex[GCE],ch[GSCE],chOff[GSCE],"
13259                 + "colSpan[GSCE],constructor(),headers[GSCE],height[GSCE],noWrap[GSCE],rowSpan[GSCE],scope[GSCE],"
13260                 + "vAlign[GSCE],width[GSCE]")
13261     public void th() throws Exception {
13262         test("th");
13263     }
13264 
13265     /**
13266      * Test {@link org.htmlunit.html.HtmlTableRow}.
13267      *
13268      * @throws Exception if the test fails
13269      */
13270     @Test
13271     @Alerts(CHROME = "align[GSCE],bgColor[GSCE],cells[GCE],ch[GSCE],chOff[GSCE],constructor(),deleteCell(),"
13272                 + "insertCell(),rowIndex[GCE],sectionRowIndex[GCE],vAlign[GSCE]",
13273             EDGE = "align[GSCE],bgColor[GSCE],cells[GCE],ch[GSCE],chOff[GSCE],constructor(),deleteCell(),"
13274                 + "insertCell(),rowIndex[GCE],sectionRowIndex[GCE],vAlign[GSCE]",
13275             FF = "align[GSCE],bgColor[GSCE],cells[GCE],ch[GSCE],chOff[GSCE],constructor(),deleteCell(),"
13276                 + "insertCell(),rowIndex[GCE],sectionRowIndex[GCE],vAlign[GSCE]",
13277             FF_ESR = "align[GSCE],bgColor[GSCE],cells[GCE],ch[GSCE],chOff[GSCE],constructor(),deleteCell(),"
13278                 + "insertCell(),rowIndex[GCE],sectionRowIndex[GCE],vAlign[GSCE]")
13279     public void tr() throws Exception {
13280         test("tr");
13281     }
13282 
13283     /**
13284      * Test {@link org.htmlunit.html.HtmlTextArea}.
13285      *
13286      * @throws Exception if the test fails
13287      */
13288     @Test
13289     @Alerts(CHROME = "autocomplete[GSCE],checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],dirName[GSCE],"
13290                 + "disabled[GSCE],form[GCE],labels[GCE],maxLength[GSCE],minLength[GSCE],name[GSCE],"
13291                 + "placeholder[GSCE],readOnly[GSCE],reportValidity(),required[GSCE],rows[GSCE],select(),"
13292                 + "selectionDirection[GSCE],selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
13293                 + "setRangeText(),setSelectionRange(),textLength[GCE],type[GCE],validationMessage[GCE],"
13294                 + "validity[GCE],value[GSCE],willValidate[GCE],"
13295                 + "wrap[GSCE]",
13296             EDGE = "autocomplete[GSCE],checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],dirName[GSCE],"
13297                 + "disabled[GSCE],form[GCE],labels[GCE],maxLength[GSCE],minLength[GSCE],name[GSCE],"
13298                 + "placeholder[GSCE],readOnly[GSCE],reportValidity(),required[GSCE],rows[GSCE],select(),"
13299                 + "selectionDirection[GSCE],selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
13300                 + "setRangeText(),setSelectionRange(),textLength[GCE],type[GCE],validationMessage[GCE],"
13301                 + "validity[GCE],value[GSCE],willValidate[GCE],"
13302                 + "wrap[GSCE]",
13303             FF = "autocomplete[GSCE],checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],dirName[GSCE],"
13304                 + "disabled[GSCE],form[GCE],labels[GCE],maxLength[GSCE],minLength[GSCE],name[GSCE],"
13305                 + "placeholder[GSCE],readOnly[GSCE],reportValidity(),required[GSCE],rows[GSCE],select(),"
13306                 + "selectionDirection[GSCE],selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
13307                 + "setRangeText(),setSelectionRange(),textLength[GCE],type[GCE],validationMessage[GCE],"
13308                 + "validity[GCE],value[GSCE],willValidate[GCE],"
13309                 + "wrap[GSCE]",
13310             FF_ESR = "autocomplete[GSCE],checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],dirName[GSCE],"
13311                 + "disabled[GSCE],form[GCE],labels[GCE],maxLength[GSCE],minLength[GSCE],name[GSCE],"
13312                 + "placeholder[GSCE],readOnly[GSCE],reportValidity(),required[GSCE],rows[GSCE],select(),"
13313                 + "selectionDirection[GSCE],selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
13314                 + "setRangeText(),setSelectionRange(),textLength[GCE],type[GCE],validationMessage[GCE],"
13315                 + "validity[GCE],value[GSCE],willValidate[GCE],"
13316                 + "wrap[GSCE]")
13317     @HtmlUnitNYI(CHROME = "checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],disabled[GSCE],"
13318                 + "form[GCE],labels[GCE],"
13319                 + "maxLength[GSCE],minLength[GSCE],name[GSCE],placeholder[GSCE],readOnly[GSCE],required[GSCE],"
13320                 + "rows[GSCE],select(),selectionEnd[GSCE],"
13321                 + "selectionStart[GSCE],setCustomValidity(),setSelectionRange(),textLength[GCE],type[GCE],"
13322                 + "validity[GCE],value[GSCE],willValidate[GCE]",
13323             EDGE = "checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],disabled[GSCE],"
13324                 + "form[GCE],labels[GCE],"
13325                 + "maxLength[GSCE],minLength[GSCE],name[GSCE],placeholder[GSCE],readOnly[GSCE],required[GSCE],"
13326                 + "rows[GSCE],select(),selectionEnd[GSCE],"
13327                 + "selectionStart[GSCE],setCustomValidity(),setSelectionRange(),textLength[GCE],type[GCE],"
13328                 + "validity[GCE],value[GSCE],willValidate[GCE]",
13329             FF_ESR = "checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],disabled[GSCE],"
13330                 + "form[GCE],labels[GCE],maxLength[GSCE],minLength[GSCE],name[GSCE],"
13331                 + "placeholder[GSCE],readOnly[GSCE],required[GSCE],rows[GSCE],select(),selectionEnd[GSCE],"
13332                 + "selectionStart[GSCE],setCustomValidity(),setSelectionRange(),textLength[GCE],type[GCE],"
13333                 + "validity[GCE],value[GSCE],willValidate[GCE]",
13334             FF = "checkValidity(),cols[GSCE],constructor(),defaultValue[GSCE],disabled[GSCE],"
13335                 + "form[GCE],labels[GCE],maxLength[GSCE],minLength[GSCE],name[GSCE],"
13336                 + "placeholder[GSCE],readOnly[GSCE],required[GSCE],rows[GSCE],select(),selectionEnd[GSCE],"
13337                 + "selectionStart[GSCE],setCustomValidity(),setSelectionRange(),textLength[GCE],type[GCE],"
13338                 + "validity[GCE],value[GSCE],willValidate[GCE]")
13339     public void textarea() throws Exception {
13340         test("textarea");
13341     }
13342 
13343     /**
13344      * Test {@link org.htmlunit.html.HtmlTableFooter}.
13345      *
13346      * @throws Exception if the test fails
13347      */
13348     @Test
13349     @Alerts(CHROME = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]",
13350             EDGE = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]",
13351             FF = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]",
13352             FF_ESR = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]")
13353     public void tfoot() throws Exception {
13354         test("tfoot");
13355     }
13356 
13357     /**
13358      * Test {@link org.htmlunit.html.HtmlTableHeader}.
13359      *
13360      * @throws Exception if the test fails
13361      */
13362     @Test
13363     @Alerts(CHROME = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]",
13364             EDGE = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]",
13365             FF = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]",
13366             FF_ESR = "align[GSCE],ch[GSCE],chOff[GSCE],constructor(),deleteRow(),insertRow(),rows[GCE],vAlign[GSCE]")
13367     public void thead() throws Exception {
13368         test("thead");
13369     }
13370 
13371     /**
13372      * Test {@link org.htmlunit.html.HtmlTeletype}.
13373      *
13374      * @throws Exception if the test fails
13375      */
13376     @Test
13377     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
13378                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
13379                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
13380                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
13381                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13382                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
13383                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
13384                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
13385                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
13386                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
13387                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
13388                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13389                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13390                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13391                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
13392                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
13393                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13394                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13395                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
13396                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
13397                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
13398                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
13399                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13400                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
13401                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
13402                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
13403                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
13404                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
13405                 + "virtualKeyboardPolicy[GSCE],"
13406                 + "writingSuggestions[GSCE]",
13407             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
13408                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
13409                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
13410                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
13411                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13412                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
13413                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
13414                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
13415                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
13416                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
13417                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
13418                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13419                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13420                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13421                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
13422                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
13423                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13424                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13425                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
13426                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
13427                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
13428                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
13429                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13430                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
13431                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
13432                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
13433                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
13434                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
13435                 + "virtualKeyboardPolicy[GSCE],"
13436                 + "writingSuggestions[GSCE]",
13437             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
13438                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
13439                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
13440                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
13441                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13442                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13443                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
13444                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
13445                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
13446                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
13447                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
13448                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
13449                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
13450                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
13451                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
13452                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
13453                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
13454                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
13455                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
13456                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
13457                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
13458                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
13459                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
13460                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
13461                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
13462                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
13463                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
13464                 + "togglePopover(),"
13465                 + "translate[GSCE]",
13466             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
13467                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
13468                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
13469                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
13470                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
13471                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
13472                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
13473                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
13474                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
13475                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
13476                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
13477                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
13478                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
13479                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
13480                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
13481                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
13482                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13483                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13484                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
13485                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
13486                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
13487                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13488                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
13489                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
13490                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
13491                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
13492                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
13493                 + "translate[GSCE]")
13494     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
13495                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13496                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13497                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13498                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13499                 + "offsetTop[GCE],offsetWidth[GCE],"
13500                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13501                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
13502                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
13503                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
13504                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
13505                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13506                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
13507                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
13508                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
13509                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
13510                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
13511                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13512                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13513                 + "onpointermove[GSCE],onpointerout[GSCE],"
13514                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
13515                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
13516                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
13517                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
13518                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
13519                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
13520                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
13521             EDGE = "accessKey[GSCE],autofocus[GSCE],"
13522                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13523                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13524                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13525                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13526                 + "offsetTop[GCE],offsetWidth[GCE],"
13527                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13528                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
13529                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
13530                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
13531                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
13532                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13533                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
13534                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
13535                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
13536                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
13537                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
13538                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13539                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13540                 + "onpointermove[GSCE],onpointerout[GSCE],"
13541                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
13542                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
13543                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
13544                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
13545                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
13546                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
13547                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
13548             FF = "accessKey[GSCE],autofocus[GSCE],"
13549                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13550                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13551                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13552                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13553                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13554                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13555                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
13556                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
13557                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
13558                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
13559                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13560                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13561                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
13562                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
13563                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13564                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13565                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
13566                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
13567                 + "onseeked[GSCE],onseeking[GSCE],"
13568                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13569                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
13570                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
13571                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
13572             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13573                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13574                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13575                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13576                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13577                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13578                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
13579                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
13580                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
13581                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
13582                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13583                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13584                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
13585                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
13586                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13587                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13588                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
13589                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
13590                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13591                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
13592                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
13593                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
13594     public void tt() throws Exception {
13595         test("tt");
13596     }
13597 
13598     /**
13599      * Test {@link org.htmlunit.html.HtmlTime}.
13600      *
13601      * @throws Exception if the test fails
13602      */
13603     @Test
13604     @Alerts(CHROME = "constructor(),dateTime[GSCE]",
13605             EDGE = "constructor(),dateTime[GSCE]",
13606             FF = "constructor(),dateTime[GSCE]",
13607             FF_ESR = "constructor(),dateTime[GSCE]")
13608     public void time() throws Exception {
13609         test("time");
13610     }
13611 
13612     /**
13613      * Test {@link org.htmlunit.html.HtmlTitle}.
13614      *
13615      * @throws Exception if the test fails
13616      */
13617     @Test
13618     @Alerts(CHROME = "constructor(),text[GSCE]",
13619             EDGE = "constructor(),text[GSCE]",
13620             FF = "constructor(),text[GSCE]",
13621             FF_ESR = "constructor(),text[GSCE]")
13622     public void title() throws Exception {
13623         test("title");
13624     }
13625 
13626     /**
13627      * Test {@link org.htmlunit.html.HtmlTrack}.
13628      *
13629      * @throws Exception if the test fails
13630      */
13631     @Test
13632     @Alerts(CHROME = "constructor(),default[GSCE],ERROR[E],kind[GSCE],label[GSCE],LOADED[E],LOADING[E],NONE[E],"
13633                 + "readyState[GCE],src[GSCE],srclang[GSCE],"
13634                 + "track[GCE]",
13635             EDGE = "constructor(),default[GSCE],ERROR[E],kind[GSCE],label[GSCE],LOADED[E],LOADING[E],NONE[E],"
13636                 + "readyState[GCE],src[GSCE],srclang[GSCE],"
13637                 + "track[GCE]",
13638             FF = "constructor(),default[GSCE],ERROR[E],kind[GSCE],label[GSCE],LOADED[E],LOADING[E],NONE[E],"
13639                 + "readyState[GCE],src[GSCE],srclang[GSCE],"
13640                 + "track[GCE]",
13641             FF_ESR = "constructor(),default[GSCE],ERROR[E],kind[GSCE],label[GSCE],LOADED[E],LOADING[E],NONE[E],"
13642                 + "readyState[GCE],src[GSCE],srclang[GSCE],"
13643                 + "track[GCE]")
13644     @HtmlUnitNYI(CHROME = "constructor(),ERROR[E],LOADED[E],LOADING[E],NONE[E]",
13645             EDGE = "constructor(),ERROR[E],LOADED[E],LOADING[E],NONE[E]",
13646             FF_ESR = "constructor(),ERROR[E],LOADED[E],LOADING[E],NONE[E]",
13647             FF = "constructor(),ERROR[E],LOADED[E],LOADING[E],NONE[E]")
13648     public void track() throws Exception {
13649         test("track");
13650     }
13651 
13652     /**
13653      * Test {@link org.htmlunit.html.HtmlUnderlined}.
13654      *
13655      * @throws Exception if the test fails
13656      */
13657     @Test
13658     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
13659                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
13660                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
13661                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
13662                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13663                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
13664                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
13665                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
13666                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
13667                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
13668                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
13669                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13670                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13671                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13672                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
13673                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
13674                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13675                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13676                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
13677                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
13678                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
13679                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
13680                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13681                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
13682                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
13683                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
13684                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
13685                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
13686                 + "virtualKeyboardPolicy[GSCE],"
13687                 + "writingSuggestions[GSCE]",
13688             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
13689                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
13690                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
13691                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
13692                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13693                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
13694                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
13695                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
13696                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
13697                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
13698                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
13699                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13700                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13701                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13702                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
13703                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
13704                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13705                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13706                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
13707                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
13708                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
13709                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
13710                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13711                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
13712                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
13713                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
13714                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
13715                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
13716                 + "virtualKeyboardPolicy[GSCE],"
13717                 + "writingSuggestions[GSCE]",
13718             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
13719                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
13720                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
13721                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
13722                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13723                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13724                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
13725                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
13726                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
13727                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
13728                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
13729                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
13730                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
13731                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
13732                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
13733                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
13734                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
13735                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
13736                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
13737                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
13738                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
13739                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
13740                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
13741                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
13742                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
13743                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
13744                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
13745                 + "togglePopover(),"
13746                 + "translate[GSCE]",
13747             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
13748                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
13749                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
13750                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
13751                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
13752                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
13753                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
13754                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
13755                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
13756                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
13757                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
13758                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
13759                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
13760                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
13761                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
13762                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
13763                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13764                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13765                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
13766                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
13767                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
13768                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13769                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
13770                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
13771                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
13772                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
13773                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
13774                 + "translate[GSCE]")
13775     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
13776                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13777                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13778                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13779                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13780                 + "offsetTop[GCE],offsetWidth[GCE],"
13781                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13782                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
13783                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
13784                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
13785                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
13786                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13787                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
13788                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
13789                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
13790                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
13791                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
13792                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13793                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13794                 + "onpointermove[GSCE],onpointerout[GSCE],"
13795                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
13796                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
13797                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
13798                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
13799                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
13800                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
13801                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
13802             EDGE = "accessKey[GSCE],autofocus[GSCE],"
13803                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13804                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13805                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13806                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13807                 + "offsetTop[GCE],offsetWidth[GCE],"
13808                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13809                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
13810                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
13811                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
13812                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
13813                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13814                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
13815                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
13816                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
13817                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
13818                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
13819                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13820                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13821                 + "onpointermove[GSCE],onpointerout[GSCE],"
13822                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
13823                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
13824                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
13825                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
13826                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
13827                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
13828                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
13829             FF = "accessKey[GSCE],autofocus[GSCE],"
13830                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13831                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13832                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13833                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13834                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13835                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13836                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
13837                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
13838                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
13839                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
13840                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13841                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13842                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
13843                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
13844                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13845                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13846                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
13847                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
13848                 + "onseeked[GSCE],onseeking[GSCE],"
13849                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13850                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
13851                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
13852                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
13853             FF_ESR = "accessKey[GSCE],autofocus[GSCE],"
13854                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
13855                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
13856                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
13857                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
13858                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13859                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13860                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
13861                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
13862                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
13863                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
13864                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13865                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13866                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
13867                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
13868                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13869                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13870                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
13871                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
13872                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13873                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
13874                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
13875                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
13876     public void u() throws Exception {
13877         test("u");
13878     }
13879 
13880     /**
13881      * Test {@link org.htmlunit.html.HtmlUnorderedList}.
13882      *
13883      * @throws Exception if the test fails
13884      */
13885     @Test
13886     @Alerts(CHROME = "compact[GSCE],constructor(),type[GSCE]",
13887             EDGE = "compact[GSCE],constructor(),type[GSCE]",
13888             FF = "compact[GSCE],constructor(),type[GSCE]",
13889             FF_ESR = "compact[GSCE],constructor(),type[GSCE]")
13890     public void ul() throws Exception {
13891         test("ul");
13892     }
13893 
13894     /**
13895      * Test {@link org.htmlunit.html.HtmlVariable}.
13896      *
13897      * @throws Exception if the test fails
13898      */
13899     @Test
13900     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
13901                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
13902                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
13903                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
13904                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13905                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
13906                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
13907                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
13908                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
13909                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
13910                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
13911                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13912                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13913                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13914                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
13915                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
13916                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13917                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13918                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
13919                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
13920                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
13921                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
13922                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13923                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
13924                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
13925                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
13926                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
13927                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
13928                 + "virtualKeyboardPolicy[GSCE],"
13929                 + "writingSuggestions[GSCE]",
13930             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
13931                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
13932                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
13933                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
13934                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13935                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
13936                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
13937                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
13938                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
13939                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
13940                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
13941                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
13942                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
13943                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
13944                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
13945                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
13946                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
13947                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
13948                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
13949                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
13950                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
13951                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
13952                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
13953                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
13954                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
13955                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
13956                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
13957                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
13958                 + "virtualKeyboardPolicy[GSCE],"
13959                 + "writingSuggestions[GSCE]",
13960             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
13961                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
13962                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
13963                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
13964                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
13965                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
13966                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
13967                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
13968                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
13969                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
13970                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
13971                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
13972                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
13973                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
13974                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
13975                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
13976                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
13977                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
13978                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
13979                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
13980                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
13981                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
13982                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
13983                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
13984                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
13985                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
13986                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
13987                 + "togglePopover(),"
13988                 + "translate[GSCE]",
13989             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
13990                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
13991                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
13992                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
13993                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
13994                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
13995                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
13996                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
13997                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
13998                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
13999                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
14000                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
14001                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
14002                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
14003                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
14004                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
14005                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14006                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14007                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
14008                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
14009                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
14010                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
14011                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
14012                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
14013                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
14014                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
14015                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
14016                 + "translate[GSCE]")
14017     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
14018                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
14019                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
14020                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
14021                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
14022                 + "offsetTop[GCE],offsetWidth[GCE],"
14023                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
14024                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
14025                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
14026                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
14027                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
14028                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
14029                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
14030                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
14031                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
14032                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
14033                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
14034                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14035                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14036                 + "onpointermove[GSCE],onpointerout[GSCE],"
14037                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
14038                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
14039                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
14040                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
14041                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
14042                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
14043                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
14044             EDGE = "accessKey[GSCE],autofocus[GSCE],"
14045                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
14046                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
14047                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
14048                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
14049                 + "offsetTop[GCE],offsetWidth[GCE],"
14050                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
14051                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
14052                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
14053                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
14054                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
14055                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
14056                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
14057                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
14058                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
14059                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
14060                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
14061                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14062                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14063                 + "onpointermove[GSCE],onpointerout[GSCE],"
14064                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
14065                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
14066                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
14067                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
14068                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
14069                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
14070                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
14071             FF = "accessKey[GSCE],autofocus[GSCE],"
14072                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
14073                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
14074                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
14075                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
14076                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
14077                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
14078                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
14079                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
14080                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
14081                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
14082                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
14083                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
14084                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
14085                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
14086                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14087                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14088                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
14089                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
14090                 + "onseeked[GSCE],onseeking[GSCE],"
14091                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
14092                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
14093                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
14094                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
14095             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
14096                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
14097                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
14098                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
14099                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
14100                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
14101                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
14102                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
14103                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
14104                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
14105                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
14106                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
14107                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
14108                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
14109                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14110                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14111                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
14112                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
14113                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
14114                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
14115                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
14116                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
14117     public void var() throws Exception {
14118         test("var");
14119     }
14120 
14121     /**
14122      * Test {@link org.htmlunit.html.HtmlVideo}.
14123      *
14124      * @throws Exception if the test fails
14125      */
14126     @Test
14127     @Alerts(CHROME = "cancelVideoFrameCallback(),constructor(),disablePictureInPicture[GSCE],getVideoPlaybackQuality(),"
14128                 + "height[GSCE],onenterpictureinpicture[GSCE],onleavepictureinpicture[GSCE],playsInline[GSCE],"
14129                 + "poster[GSCE],requestPictureInPicture(),requestVideoFrameCallback(),videoHeight[GCE],"
14130                 + "videoWidth[GCE],webkitDecodedFrameCount[GCE],webkitDroppedFrameCount[GCE],"
14131                 + "width[GSCE]",
14132             EDGE = "cancelVideoFrameCallback(),constructor(),disablePictureInPicture[GSCE],getVideoPlaybackQuality(),"
14133                 + "height[GSCE],msGetVideoProcessingTypes(),msVideoProcessing[GSCE],onenterpictureinpicture[GSCE],"
14134                 + "onleavepictureinpicture[GSCE],playsInline[GSCE],poster[GSCE],requestPictureInPicture(),"
14135                 + "requestVideoFrameCallback(),videoHeight[GCE],videoWidth[GCE],webkitDecodedFrameCount[GCE],"
14136                 + "webkitDroppedFrameCount[GCE],"
14137                 + "width[GSCE]",
14138             FF = "cancelVideoFrameCallback(),constructor(),disablePictureInPicture[GSCE],getVideoPlaybackQuality(),"
14139                 + "height[GSCE],mozDecodedFrames[GCE],mozFrameDelay[GCE],mozHasAudio[GCE],mozPaintedFrames[GCE],"
14140                 + "mozParsedFrames[GCE],mozPresentedFrames[GCE],poster[GSCE],requestVideoFrameCallback(),"
14141                 + "videoHeight[GCE],videoWidth[GCE],"
14142                 + "width[GSCE]",
14143             FF_ESR = "constructor(),disablePictureInPicture[GSCE],getVideoPlaybackQuality(),height[GSCE],"
14144                 + "mozDecodedFrames[GCE],mozFrameDelay[GCE],mozHasAudio[GCE],mozPaintedFrames[GCE],"
14145                 + "mozParsedFrames[GCE],mozPresentedFrames[GCE],poster[GSCE],videoHeight[GCE],videoWidth[GCE],"
14146                 + "width[GSCE]")
14147     @HtmlUnitNYI(CHROME = "constructor(),height[GSCE],width[GSCE]",
14148             EDGE = "constructor(),height[GSCE],width[GSCE]",
14149             FF_ESR = "constructor(),height[GSCE],width[GSCE]",
14150             FF = "constructor(),height[GSCE],width[GSCE]")
14151     public void video() throws Exception {
14152         test("video");
14153     }
14154 
14155     /**
14156      * Test {@link org.htmlunit.html.HtmlWordBreak}.
14157      *
14158      * @throws Exception if the test fails
14159      */
14160     @Test
14161     @Alerts(CHROME = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
14162                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
14163                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
14164                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
14165                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
14166                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
14167                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
14168                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
14169                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
14170                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
14171                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
14172                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
14173                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
14174                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
14175                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
14176                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
14177                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14178                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14179                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
14180                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
14181                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
14182                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
14183                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
14184                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
14185                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
14186                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
14187                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
14188                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
14189                 + "virtualKeyboardPolicy[GSCE],"
14190                 + "writingSuggestions[GSCE]",
14191             EDGE = "accessKey[GSCE],attachInternals(),attributeStyleMap[GCE],autocapitalize[GSCE],autofocus[GSCE],"
14192                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
14193                 + "editContext[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
14194                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
14195                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
14196                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
14197                 + "onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],"
14198                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
14199                 + "oncommand[GSCE],oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
14200                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
14201                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
14202                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
14203                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
14204                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
14205                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
14206                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
14207                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14208                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14209                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
14210                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
14211                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
14212                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
14213                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
14214                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
14215                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
14216                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
14217                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
14218                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),translate[GSCE],"
14219                 + "virtualKeyboardPolicy[GSCE],"
14220                 + "writingSuggestions[GSCE]",
14221             FF = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autocorrect[GSCE],"
14222                 + "autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],"
14223                 + "draggable[GSCE],enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],"
14224                 + "innerText[GSCE],inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],"
14225                 + "offsetLeft[GCE],offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
14226                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
14227                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
14228                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
14229                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
14230                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
14231                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
14232                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
14233                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
14234                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
14235                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
14236                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
14237                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
14238                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
14239                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
14240                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
14241                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
14242                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
14243                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
14244                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
14245                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
14246                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],"
14247                 + "popover[GSCE],showPopover(),spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],"
14248                 + "togglePopover(),"
14249                 + "translate[GSCE]",
14250             FF_ESR = "accessKey[GSCE],accessKeyLabel[GCE],attachInternals(),autocapitalize[GSCE],autofocus[GSCE],"
14251                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],dir[GSCE],draggable[GSCE],"
14252                 + "enterKeyHint[GSCE],focus(),hidden[GSCE],hidePopover(),inert[GSCE],innerText[GSCE],"
14253                 + "inputMode[GSCE],isContentEditable[GCE],lang[GSCE],nonce[GSCE],offsetHeight[GCE],offsetLeft[GCE],"
14254                 + "offsetParent[GCE],offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],onanimationcancel[GSCE],"
14255                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
14256                 + "onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
14257                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
14258                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
14259                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
14260                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
14261                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
14262                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
14263                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
14264                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
14265                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
14266                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14267                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14268                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
14269                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
14270                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
14271                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
14272                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
14273                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
14274                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
14275                 + "onwebkittransitionend[GSCE],onwheel[GSCE],outerText[GSCE],popover[GSCE],showPopover(),"
14276                 + "spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE],togglePopover(),"
14277                 + "translate[GSCE]")
14278     @HtmlUnitNYI(CHROME = "accessKey[GSCE],autofocus[GSCE],"
14279                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
14280                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
14281                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
14282                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
14283                 + "offsetTop[GCE],offsetWidth[GCE],"
14284                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
14285                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
14286                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
14287                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
14288                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
14289                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
14290                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
14291                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
14292                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
14293                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
14294                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
14295                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14296                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14297                 + "onpointermove[GSCE],onpointerout[GSCE],"
14298                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
14299                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
14300                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
14301                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
14302                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
14303                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
14304                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
14305             EDGE = "accessKey[GSCE],autofocus[GSCE],"
14306                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
14307                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
14308                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
14309                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
14310                 + "offsetTop[GCE],offsetWidth[GCE],"
14311                 + "onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
14312                 + "onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
14313                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
14314                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],"
14315                 + "ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],"
14316                 + "onended[GSCE],onerror[GSCE],onfocus[GSCE],"
14317                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
14318                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
14319                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],"
14320                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
14321                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
14322                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14323                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14324                 + "onpointermove[GSCE],onpointerout[GSCE],"
14325                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
14326                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
14327                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],"
14328                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],"
14329                 + "ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],"
14330                 + "ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],"
14331                 + "outerText[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
14332             FF = "accessKey[GSCE],autofocus[GSCE],"
14333                 + "blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
14334                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
14335                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
14336                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
14337                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
14338                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
14339                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
14340                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
14341                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
14342                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
14343                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
14344                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
14345                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
14346                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
14347                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14348                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14349                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
14350                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
14351                 + "onseeked[GSCE],onseeking[GSCE],"
14352                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
14353                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
14354                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
14355                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]",
14356             FF_ESR = "accessKey[GSCE],autofocus[GSCE],blur(),click(),constructor(),contentEditable[GSCE],dataset[GCE],"
14357                 + "dir[GSCE],enterKeyHint[GSCE],focus(),"
14358                 + "hidden[GSCE],innerText[GSCE],isContentEditable[GCE],lang[GSCE],"
14359                 + "offsetHeight[GCE],offsetLeft[GCE],offsetParent[GCE],"
14360                 + "offsetTop[GCE],offsetWidth[GCE],onabort[GSCE],"
14361                 + "onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
14362                 + "onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],"
14363                 + "onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],"
14364                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
14365                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],"
14366                 + "onfocus[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
14367                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
14368                 + "onloadstart[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],"
14369                 + "onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
14370                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
14371                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
14372                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
14373                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],onseeking[GSCE],"
14374                 + "onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],"
14375                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],"
14376                 + "ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],"
14377                 + "onwaiting[GSCE],outerText[GSCE],spellcheck[GSCE],style[GSCE],tabIndex[GSCE],title[GSCE]")
14378     public void wbr() throws Exception {
14379         test("wbr");
14380     }
14381 
14382     /**
14383      * Test {@link org.htmlunit.html.HtmlExample}.
14384      *
14385      * @throws Exception if the test fails
14386      */
14387     @Test
14388     @Alerts(CHROME = "constructor(),width[GSCE]",
14389             EDGE = "constructor(),width[GSCE]",
14390             FF = "constructor(),width[GSCE]",
14391             FF_ESR = "constructor(),width[GSCE]")
14392     public void xmp() throws Exception {
14393         test("xmp");
14394     }
14395 
14396     /**
14397      * Test {@link org.htmlunit.html.HtmlInput}.
14398      *
14399      * @throws Exception if the test fails
14400      */
14401     @Test
14402     @Alerts(CHROME = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],checked[GSCE],checkValidity(),"
14403                 + "constructor(),defaultChecked[GSCE],defaultValue[GSCE],dirName[GSCE],disabled[GSCE],files[GSCE],"
14404                 + "form[GCE],formAction[GSCE],formEnctype[GSCE],formMethod[GSCE],formNoValidate[GSCE],"
14405                 + "formTarget[GSCE],height[GSCE],incremental[GSCE],indeterminate[GSCE],labels[GCE],list[GCE],"
14406                 + "max[GSCE],maxLength[GSCE],min[GSCE],minLength[GSCE],multiple[GSCE],name[GSCE],pattern[GSCE],"
14407                 + "placeholder[GSCE],popoverTargetAction[GSCE],popoverTargetElement[GSCE],readOnly[GSCE],"
14408                 + "reportValidity(),required[GSCE],select(),selectionDirection[GSCE],selectionEnd[GSCE],"
14409                 + "selectionStart[GSCE],setCustomValidity(),setRangeText(),setSelectionRange(),showPicker(),"
14410                 + "size[GSCE],src[GSCE],step[GSCE],stepDown(),stepUp(),type[GSCE],useMap[GSCE],"
14411                 + "validationMessage[GCE],validity[GCE],value[GSCE],valueAsDate[GSCE],valueAsNumber[GSCE],"
14412                 + "webkitdirectory[GSCE],webkitEntries[GCE],width[GSCE],"
14413                 + "willValidate[GCE]",
14414             EDGE = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],checked[GSCE],checkValidity(),"
14415                 + "constructor(),defaultChecked[GSCE],defaultValue[GSCE],dirName[GSCE],disabled[GSCE],files[GSCE],"
14416                 + "form[GCE],formAction[GSCE],formEnctype[GSCE],formMethod[GSCE],formNoValidate[GSCE],"
14417                 + "formTarget[GSCE],height[GSCE],incremental[GSCE],indeterminate[GSCE],labels[GCE],list[GCE],"
14418                 + "max[GSCE],maxLength[GSCE],min[GSCE],minLength[GSCE],multiple[GSCE],name[GSCE],pattern[GSCE],"
14419                 + "placeholder[GSCE],popoverTargetAction[GSCE],popoverTargetElement[GSCE],readOnly[GSCE],"
14420                 + "reportValidity(),required[GSCE],select(),selectionDirection[GSCE],selectionEnd[GSCE],"
14421                 + "selectionStart[GSCE],setCustomValidity(),setRangeText(),setSelectionRange(),showPicker(),"
14422                 + "size[GSCE],src[GSCE],step[GSCE],stepDown(),stepUp(),type[GSCE],useMap[GSCE],"
14423                 + "validationMessage[GCE],validity[GCE],value[GSCE],valueAsDate[GSCE],valueAsNumber[GSCE],"
14424                 + "webkitdirectory[GSCE],webkitEntries[GCE],width[GSCE],"
14425                 + "willValidate[GCE]",
14426             FF = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],checked[GSCE],checkValidity(),"
14427                 + "constructor(),defaultChecked[GSCE],defaultValue[GSCE],dirName[GSCE],disabled[GSCE],files[GSCE],"
14428                 + "form[GCE],formAction[GSCE],formEnctype[GSCE],formMethod[GSCE],formNoValidate[GSCE],"
14429                 + "formTarget[GSCE],height[GSCE],indeterminate[GSCE],labels[GCE],list[GCE],max[GSCE],"
14430                 + "maxLength[GSCE],min[GSCE],minLength[GSCE],mozIsTextField(),multiple[GSCE],name[GSCE],"
14431                 + "pattern[GSCE],placeholder[GSCE],popoverTargetAction[GSCE],popoverTargetElement[GSCE],"
14432                 + "readOnly[GSCE],reportValidity(),required[GSCE],select(),selectionDirection[GSCE],"
14433                 + "selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),setRangeText(),setSelectionRange(),"
14434                 + "showPicker(),size[GSCE],src[GSCE],step[GSCE],stepDown(),stepUp(),textLength[GCE],type[GSCE],"
14435                 + "useMap[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],valueAsDate[GSCE],"
14436                 + "valueAsNumber[GSCE],webkitdirectory[GSCE],webkitEntries[GCE],width[GSCE],"
14437                 + "willValidate[GCE]",
14438             FF_ESR = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],checked[GSCE],checkValidity(),"
14439                 + "constructor(),defaultChecked[GSCE],defaultValue[GSCE],dirName[GSCE],disabled[GSCE],files[GSCE],"
14440                 + "form[GCE],formAction[GSCE],formEnctype[GSCE],formMethod[GSCE],formNoValidate[GSCE],"
14441                 + "formTarget[GSCE],height[GSCE],indeterminate[GSCE],labels[GCE],list[GCE],max[GSCE],"
14442                 + "maxLength[GSCE],min[GSCE],minLength[GSCE],mozIsTextField(),multiple[GSCE],name[GSCE],"
14443                 + "pattern[GSCE],placeholder[GSCE],popoverTargetAction[GSCE],popoverTargetElement[GSCE],"
14444                 + "readOnly[GSCE],reportValidity(),required[GSCE],select(),selectionDirection[GSCE],"
14445                 + "selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),setRangeText(),setSelectionRange(),"
14446                 + "showPicker(),size[GSCE],src[GSCE],step[GSCE],stepDown(),stepUp(),textLength[GCE],type[GSCE],"
14447                 + "useMap[GSCE],validationMessage[GCE],validity[GCE],value[GSCE],valueAsDate[GSCE],"
14448                 + "valueAsNumber[GSCE],webkitdirectory[GSCE],webkitEntries[GCE],width[GSCE],"
14449                 + "willValidate[GCE]")
14450     @HtmlUnitNYI(CHROME = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],checked[GSCE],checkValidity(),"
14451                 + "constructor(),defaultChecked[GSCE],defaultValue[GSCE],disabled[GSCE],files[GCE],form[GCE],"
14452                 + "formNoValidate[GSCE],height[GSCE],labels[GCE],max[GSCE],maxLength[GSCE],"
14453                 + "min[GSCE],minLength[GSCE],name[GSCE],placeholder[GSCE],readOnly[GSCE],required[GSCE],"
14454                 + "select(),selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
14455                 + "setSelectionRange(),size[GSCE],src[GSCE],step[GSCE],type[GSCE],validity[GCE],value[GSCE],"
14456                 + "width[GSCE],willValidate[GCE]",
14457             EDGE = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],checked[GSCE],checkValidity(),"
14458                 + "constructor(),defaultChecked[GSCE],defaultValue[GSCE],disabled[GSCE],files[GCE],form[GCE],"
14459                 + "formNoValidate[GSCE],height[GSCE],labels[GCE],max[GSCE],maxLength[GSCE],"
14460                 + "min[GSCE],minLength[GSCE],name[GSCE],placeholder[GSCE],readOnly[GSCE],required[GSCE],"
14461                 + "select(),selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
14462                 + "setSelectionRange(),size[GSCE],src[GSCE],step[GSCE],type[GSCE],validity[GCE],value[GSCE],"
14463                 + "width[GSCE],willValidate[GCE]",
14464             FF_ESR = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],checked[GSCE],checkValidity(),"
14465                 + "constructor(),defaultChecked[GSCE],defaultValue[GSCE],disabled[GSCE],files[GCE],form[GCE],"
14466                 + "formNoValidate[GSCE],height[GSCE],labels[GCE],max[GSCE],maxLength[GSCE],"
14467                 + "min[GSCE],minLength[GSCE],name[GSCE],placeholder[GSCE],readOnly[GSCE],required[GSCE],"
14468                 + "select(),selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
14469                 + "setSelectionRange(),size[GSCE],src[GSCE],step[GSCE],textLength[GCE],type[GSCE],"
14470                 + "validity[GCE],value[GSCE],width[GSCE],willValidate[GCE]",
14471             FF = "accept[GSCE],align[GSCE],alt[GSCE],autocomplete[GSCE],checked[GSCE],checkValidity(),"
14472                 + "constructor(),defaultChecked[GSCE],defaultValue[GSCE],disabled[GSCE],files[GCE],form[GCE],"
14473                 + "formNoValidate[GSCE],height[GSCE],labels[GCE],max[GSCE],maxLength[GSCE],"
14474                 + "min[GSCE],minLength[GSCE],name[GSCE],placeholder[GSCE],readOnly[GSCE],required[GSCE],"
14475                 + "select(),selectionEnd[GSCE],selectionStart[GSCE],setCustomValidity(),"
14476                 + "setSelectionRange(),size[GSCE],src[GSCE],step[GSCE],textLength[GCE],type[GSCE],"
14477                 + "validity[GCE],value[GSCE],width[GSCE],willValidate[GCE]")
14478     public void input() throws Exception {
14479         test("input");
14480     }
14481 
14482     /**
14483      * Test {@link org.htmlunit.html.HtmlData}.
14484      *
14485      * @throws Exception if the test fails
14486      */
14487     @Test
14488     @Alerts(CHROME = "constructor(),value[GSCE]",
14489             EDGE = "constructor(),value[GSCE]",
14490             FF = "constructor(),value[GSCE]",
14491             FF_ESR = "constructor(),value[GSCE]")
14492     public void data() throws Exception {
14493         test("data");
14494     }
14495 
14496     /**
14497      * Test HtmlContent.
14498      *
14499      * @throws Exception if the test fails
14500      */
14501     @Test
14502     @Alerts(CHROME = "constructor()",
14503             EDGE = "constructor()",
14504             FF = "constructor()",
14505             FF_ESR = "constructor()")
14506     public void content() throws Exception {
14507         test("content");
14508     }
14509 
14510     /**
14511      * Test {@link org.htmlunit.html.HtmlPicture}.
14512      *
14513      * @throws Exception if the test fails
14514      */
14515     @Test
14516     @Alerts(CHROME = "constructor()",
14517             EDGE = "constructor()",
14518             FF = "constructor()",
14519             FF_ESR = "constructor()")
14520     public void picutre() throws Exception {
14521         test("picture");
14522     }
14523 
14524     /**
14525      * Test {@link org.htmlunit.html.HtmlTemplate}.
14526      *
14527      * @throws Exception if the test fails
14528      */
14529     @Test
14530     @Alerts(CHROME = "constructor(),content[GCE],shadowRootClonable[GSCE],shadowRootDelegatesFocus[GSCE],"
14531                 + "shadowRootMode[GSCE],"
14532                 + "shadowRootSerializable[GSCE]",
14533             EDGE = "constructor(),content[GCE],shadowRootClonable[GSCE],shadowRootDelegatesFocus[GSCE],"
14534                 + "shadowRootMode[GSCE],"
14535                 + "shadowRootSerializable[GSCE]",
14536             FF = "constructor(),content[GCE],shadowRootClonable[GSCE],shadowRootDelegatesFocus[GSCE],"
14537                 + "shadowRootMode[GSCE],"
14538                 + "shadowRootSerializable[GSCE]",
14539             FF_ESR = "constructor(),content[GCE],shadowRootClonable[GSCE],shadowRootDelegatesFocus[GSCE],"
14540                 + "shadowRootMode[GSCE],"
14541                 + "shadowRootSerializable[GSCE]")
14542     @HtmlUnitNYI(CHROME = "constructor(),content[GCE]",
14543             EDGE = "constructor(),content[GCE]",
14544             FF = "constructor(),content[GCE]",
14545             FF_ESR = "constructor(),content[GCE]")
14546     public void template() throws Exception {
14547         test("template");
14548     }
14549 
14550     /**
14551      * Test {@link org.htmlunit.javascript.host.event.KeyboardEvent}.
14552      *
14553      * @throws Exception if the test fails
14554      */
14555     @Test
14556     @Alerts(CHROME = "altKey[GCE],charCode[GCE],code[GCE],constructor(),ctrlKey[GCE],DOM_KEY_LOCATION_LEFT[E],"
14557                 + "DOM_KEY_LOCATION_NUMPAD[E],DOM_KEY_LOCATION_RIGHT[E],DOM_KEY_LOCATION_STANDARD[E],"
14558                 + "getModifierState(),initKeyboardEvent(),isComposing[GCE],key[GCE],keyCode[GCE],location[GCE],"
14559                 + "metaKey[GCE],repeat[GCE],"
14560                 + "shiftKey[GCE]",
14561             EDGE = "altKey[GCE],charCode[GCE],code[GCE],constructor(),ctrlKey[GCE],DOM_KEY_LOCATION_LEFT[E],"
14562                 + "DOM_KEY_LOCATION_NUMPAD[E],DOM_KEY_LOCATION_RIGHT[E],DOM_KEY_LOCATION_STANDARD[E],"
14563                 + "getModifierState(),initKeyboardEvent(),isComposing[GCE],key[GCE],keyCode[GCE],location[GCE],"
14564                 + "metaKey[GCE],repeat[GCE],"
14565                 + "shiftKey[GCE]",
14566             FF = "altKey[GCE],charCode[GCE],code[GCE],constructor(),ctrlKey[GCE],DOM_KEY_LOCATION_LEFT[E],"
14567                 + "DOM_KEY_LOCATION_NUMPAD[E],DOM_KEY_LOCATION_RIGHT[E],DOM_KEY_LOCATION_STANDARD[E],DOM_VK_0[E],"
14568                 + "DOM_VK_1[E],DOM_VK_2[E],DOM_VK_3[E],DOM_VK_4[E],DOM_VK_5[E],DOM_VK_6[E],DOM_VK_7[E],DOM_VK_8[E],"
14569                 + "DOM_VK_9[E],DOM_VK_A[E],DOM_VK_ACCEPT[E],DOM_VK_ADD[E],DOM_VK_ALT[E],DOM_VK_ALTGR[E],"
14570                 + "DOM_VK_AMPERSAND[E],DOM_VK_ASTERISK[E],DOM_VK_AT[E],DOM_VK_ATTN[E],DOM_VK_B[E],"
14571                 + "DOM_VK_BACK_QUOTE[E],DOM_VK_BACK_SLASH[E],DOM_VK_BACK_SPACE[E],DOM_VK_C[E],DOM_VK_CANCEL[E],"
14572                 + "DOM_VK_CAPS_LOCK[E],DOM_VK_CIRCUMFLEX[E],DOM_VK_CLEAR[E],DOM_VK_CLOSE_BRACKET[E],"
14573                 + "DOM_VK_CLOSE_CURLY_BRACKET[E],DOM_VK_CLOSE_PAREN[E],DOM_VK_COLON[E],DOM_VK_COMMA[E],"
14574                 + "DOM_VK_CONTEXT_MENU[E],DOM_VK_CONTROL[E],DOM_VK_CONVERT[E],DOM_VK_CRSEL[E],DOM_VK_D[E],"
14575                 + "DOM_VK_DECIMAL[E],DOM_VK_DELETE[E],DOM_VK_DIVIDE[E],DOM_VK_DOLLAR[E],DOM_VK_DOUBLE_QUOTE[E],"
14576                 + "DOM_VK_DOWN[E],DOM_VK_E[E],DOM_VK_EISU[E],DOM_VK_END[E],DOM_VK_EQUALS[E],DOM_VK_EREOF[E],"
14577                 + "DOM_VK_ESCAPE[E],DOM_VK_EXCLAMATION[E],DOM_VK_EXECUTE[E],DOM_VK_EXSEL[E],DOM_VK_F10[E],"
14578                 + "DOM_VK_F11[E],DOM_VK_F12[E],DOM_VK_F13[E],DOM_VK_F14[E],DOM_VK_F15[E],DOM_VK_F16[E],"
14579                 + "DOM_VK_F17[E],DOM_VK_F18[E],DOM_VK_F19[E],DOM_VK_F1[E],DOM_VK_F20[E],DOM_VK_F21[E],DOM_VK_F22[E],"
14580                 + "DOM_VK_F23[E],DOM_VK_F24[E],DOM_VK_F2[E],DOM_VK_F3[E],DOM_VK_F4[E],DOM_VK_F5[E],DOM_VK_F6[E],"
14581                 + "DOM_VK_F7[E],DOM_VK_F8[E],DOM_VK_F9[E],DOM_VK_F[E],DOM_VK_FINAL[E],DOM_VK_G[E],"
14582                 + "DOM_VK_GREATER_THAN[E],DOM_VK_H[E],DOM_VK_HANGUL[E],DOM_VK_HANJA[E],DOM_VK_HASH[E],"
14583                 + "DOM_VK_HELP[E],DOM_VK_HOME[E],DOM_VK_HYPHEN_MINUS[E],DOM_VK_I[E],DOM_VK_INSERT[E],DOM_VK_J[E],"
14584                 + "DOM_VK_JUNJA[E],DOM_VK_K[E],DOM_VK_KANA[E],DOM_VK_KANJI[E],DOM_VK_L[E],DOM_VK_LEFT[E],"
14585                 + "DOM_VK_LESS_THAN[E],DOM_VK_M[E],DOM_VK_META[E],DOM_VK_MODECHANGE[E],DOM_VK_MULTIPLY[E],"
14586                 + "DOM_VK_N[E],DOM_VK_NONCONVERT[E],DOM_VK_NUM_LOCK[E],DOM_VK_NUMPAD0[E],DOM_VK_NUMPAD1[E],"
14587                 + "DOM_VK_NUMPAD2[E],DOM_VK_NUMPAD3[E],DOM_VK_NUMPAD4[E],DOM_VK_NUMPAD5[E],DOM_VK_NUMPAD6[E],"
14588                 + "DOM_VK_NUMPAD7[E],DOM_VK_NUMPAD8[E],DOM_VK_NUMPAD9[E],DOM_VK_O[E],DOM_VK_OPEN_BRACKET[E],"
14589                 + "DOM_VK_OPEN_CURLY_BRACKET[E],DOM_VK_OPEN_PAREN[E],DOM_VK_P[E],DOM_VK_PA1[E],DOM_VK_PAGE_DOWN[E],"
14590                 + "DOM_VK_PAGE_UP[E],DOM_VK_PAUSE[E],DOM_VK_PERCENT[E],DOM_VK_PERIOD[E],DOM_VK_PIPE[E],"
14591                 + "DOM_VK_PLAY[E],DOM_VK_PLUS[E],DOM_VK_PRINT[E],DOM_VK_PRINTSCREEN[E],DOM_VK_PROCESSKEY[E],"
14592                 + "DOM_VK_Q[E],DOM_VK_QUESTION_MARK[E],DOM_VK_QUOTE[E],DOM_VK_R[E],DOM_VK_RETURN[E],DOM_VK_RIGHT[E],"
14593                 + "DOM_VK_S[E],DOM_VK_SCROLL_LOCK[E],DOM_VK_SELECT[E],DOM_VK_SEMICOLON[E],DOM_VK_SEPARATOR[E],"
14594                 + "DOM_VK_SHIFT[E],DOM_VK_SLASH[E],DOM_VK_SLEEP[E],DOM_VK_SPACE[E],DOM_VK_SUBTRACT[E],DOM_VK_T[E],"
14595                 + "DOM_VK_TAB[E],DOM_VK_TILDE[E],DOM_VK_U[E],DOM_VK_UNDERSCORE[E],DOM_VK_UP[E],DOM_VK_V[E],"
14596                 + "DOM_VK_VOLUME_DOWN[E],DOM_VK_VOLUME_MUTE[E],DOM_VK_VOLUME_UP[E],DOM_VK_W[E],DOM_VK_WIN[E],"
14597                 + "DOM_VK_WIN_ICO_00[E],DOM_VK_WIN_ICO_CLEAR[E],DOM_VK_WIN_ICO_HELP[E],DOM_VK_WIN_OEM_ATTN[E],"
14598                 + "DOM_VK_WIN_OEM_AUTO[E],DOM_VK_WIN_OEM_BACKTAB[E],DOM_VK_WIN_OEM_CLEAR[E],DOM_VK_WIN_OEM_COPY[E],"
14599                 + "DOM_VK_WIN_OEM_CUSEL[E],DOM_VK_WIN_OEM_ENLW[E],DOM_VK_WIN_OEM_FINISH[E],"
14600                 + "DOM_VK_WIN_OEM_FJ_JISHO[E],DOM_VK_WIN_OEM_FJ_LOYA[E],DOM_VK_WIN_OEM_FJ_MASSHOU[E],"
14601                 + "DOM_VK_WIN_OEM_FJ_ROYA[E],DOM_VK_WIN_OEM_FJ_TOUROKU[E],DOM_VK_WIN_OEM_JUMP[E],"
14602                 + "DOM_VK_WIN_OEM_PA1[E],DOM_VK_WIN_OEM_PA2[E],DOM_VK_WIN_OEM_PA3[E],DOM_VK_WIN_OEM_RESET[E],"
14603                 + "DOM_VK_WIN_OEM_WSCTRL[E],DOM_VK_X[E],DOM_VK_Y[E],DOM_VK_Z[E],DOM_VK_ZOOM[E],getModifierState(),"
14604                 + "initKeyboardEvent(),isComposing[GCE],key[GCE],keyCode[GCE],location[GCE],metaKey[GCE],"
14605                 + "repeat[GCE],"
14606                 + "shiftKey[GCE]",
14607             FF_ESR = "altKey[GCE],charCode[GCE],code[GCE],constructor(),ctrlKey[GCE],DOM_KEY_LOCATION_LEFT[E],"
14608                 + "DOM_KEY_LOCATION_NUMPAD[E],DOM_KEY_LOCATION_RIGHT[E],DOM_KEY_LOCATION_STANDARD[E],DOM_VK_0[E],"
14609                 + "DOM_VK_1[E],DOM_VK_2[E],DOM_VK_3[E],DOM_VK_4[E],DOM_VK_5[E],DOM_VK_6[E],DOM_VK_7[E],DOM_VK_8[E],"
14610                 + "DOM_VK_9[E],DOM_VK_A[E],DOM_VK_ACCEPT[E],DOM_VK_ADD[E],DOM_VK_ALT[E],DOM_VK_ALTGR[E],"
14611                 + "DOM_VK_AMPERSAND[E],DOM_VK_ASTERISK[E],DOM_VK_AT[E],DOM_VK_ATTN[E],DOM_VK_B[E],"
14612                 + "DOM_VK_BACK_QUOTE[E],DOM_VK_BACK_SLASH[E],DOM_VK_BACK_SPACE[E],DOM_VK_C[E],DOM_VK_CANCEL[E],"
14613                 + "DOM_VK_CAPS_LOCK[E],DOM_VK_CIRCUMFLEX[E],DOM_VK_CLEAR[E],DOM_VK_CLOSE_BRACKET[E],"
14614                 + "DOM_VK_CLOSE_CURLY_BRACKET[E],DOM_VK_CLOSE_PAREN[E],DOM_VK_COLON[E],DOM_VK_COMMA[E],"
14615                 + "DOM_VK_CONTEXT_MENU[E],DOM_VK_CONTROL[E],DOM_VK_CONVERT[E],DOM_VK_CRSEL[E],DOM_VK_D[E],"
14616                 + "DOM_VK_DECIMAL[E],DOM_VK_DELETE[E],DOM_VK_DIVIDE[E],DOM_VK_DOLLAR[E],DOM_VK_DOUBLE_QUOTE[E],"
14617                 + "DOM_VK_DOWN[E],DOM_VK_E[E],DOM_VK_EISU[E],DOM_VK_END[E],DOM_VK_EQUALS[E],DOM_VK_EREOF[E],"
14618                 + "DOM_VK_ESCAPE[E],DOM_VK_EXCLAMATION[E],DOM_VK_EXECUTE[E],DOM_VK_EXSEL[E],DOM_VK_F10[E],"
14619                 + "DOM_VK_F11[E],DOM_VK_F12[E],DOM_VK_F13[E],DOM_VK_F14[E],DOM_VK_F15[E],DOM_VK_F16[E],"
14620                 + "DOM_VK_F17[E],DOM_VK_F18[E],DOM_VK_F19[E],DOM_VK_F1[E],DOM_VK_F20[E],DOM_VK_F21[E],DOM_VK_F22[E],"
14621                 + "DOM_VK_F23[E],DOM_VK_F24[E],DOM_VK_F2[E],DOM_VK_F3[E],DOM_VK_F4[E],DOM_VK_F5[E],DOM_VK_F6[E],"
14622                 + "DOM_VK_F7[E],DOM_VK_F8[E],DOM_VK_F9[E],DOM_VK_F[E],DOM_VK_FINAL[E],DOM_VK_G[E],"
14623                 + "DOM_VK_GREATER_THAN[E],DOM_VK_H[E],DOM_VK_HANGUL[E],DOM_VK_HANJA[E],DOM_VK_HASH[E],"
14624                 + "DOM_VK_HELP[E],DOM_VK_HOME[E],DOM_VK_HYPHEN_MINUS[E],DOM_VK_I[E],DOM_VK_INSERT[E],DOM_VK_J[E],"
14625                 + "DOM_VK_JUNJA[E],DOM_VK_K[E],DOM_VK_KANA[E],DOM_VK_KANJI[E],DOM_VK_L[E],DOM_VK_LEFT[E],"
14626                 + "DOM_VK_LESS_THAN[E],DOM_VK_M[E],DOM_VK_META[E],DOM_VK_MODECHANGE[E],DOM_VK_MULTIPLY[E],"
14627                 + "DOM_VK_N[E],DOM_VK_NONCONVERT[E],DOM_VK_NUM_LOCK[E],DOM_VK_NUMPAD0[E],DOM_VK_NUMPAD1[E],"
14628                 + "DOM_VK_NUMPAD2[E],DOM_VK_NUMPAD3[E],DOM_VK_NUMPAD4[E],DOM_VK_NUMPAD5[E],DOM_VK_NUMPAD6[E],"
14629                 + "DOM_VK_NUMPAD7[E],DOM_VK_NUMPAD8[E],DOM_VK_NUMPAD9[E],DOM_VK_O[E],DOM_VK_OPEN_BRACKET[E],"
14630                 + "DOM_VK_OPEN_CURLY_BRACKET[E],DOM_VK_OPEN_PAREN[E],DOM_VK_P[E],DOM_VK_PA1[E],DOM_VK_PAGE_DOWN[E],"
14631                 + "DOM_VK_PAGE_UP[E],DOM_VK_PAUSE[E],DOM_VK_PERCENT[E],DOM_VK_PERIOD[E],DOM_VK_PIPE[E],"
14632                 + "DOM_VK_PLAY[E],DOM_VK_PLUS[E],DOM_VK_PRINT[E],DOM_VK_PRINTSCREEN[E],DOM_VK_PROCESSKEY[E],"
14633                 + "DOM_VK_Q[E],DOM_VK_QUESTION_MARK[E],DOM_VK_QUOTE[E],DOM_VK_R[E],DOM_VK_RETURN[E],DOM_VK_RIGHT[E],"
14634                 + "DOM_VK_S[E],DOM_VK_SCROLL_LOCK[E],DOM_VK_SELECT[E],DOM_VK_SEMICOLON[E],DOM_VK_SEPARATOR[E],"
14635                 + "DOM_VK_SHIFT[E],DOM_VK_SLASH[E],DOM_VK_SLEEP[E],DOM_VK_SPACE[E],DOM_VK_SUBTRACT[E],DOM_VK_T[E],"
14636                 + "DOM_VK_TAB[E],DOM_VK_TILDE[E],DOM_VK_U[E],DOM_VK_UNDERSCORE[E],DOM_VK_UP[E],DOM_VK_V[E],"
14637                 + "DOM_VK_VOLUME_DOWN[E],DOM_VK_VOLUME_MUTE[E],DOM_VK_VOLUME_UP[E],DOM_VK_W[E],DOM_VK_WIN[E],"
14638                 + "DOM_VK_WIN_ICO_00[E],DOM_VK_WIN_ICO_CLEAR[E],DOM_VK_WIN_ICO_HELP[E],DOM_VK_WIN_OEM_ATTN[E],"
14639                 + "DOM_VK_WIN_OEM_AUTO[E],DOM_VK_WIN_OEM_BACKTAB[E],DOM_VK_WIN_OEM_CLEAR[E],DOM_VK_WIN_OEM_COPY[E],"
14640                 + "DOM_VK_WIN_OEM_CUSEL[E],DOM_VK_WIN_OEM_ENLW[E],DOM_VK_WIN_OEM_FINISH[E],"
14641                 + "DOM_VK_WIN_OEM_FJ_JISHO[E],DOM_VK_WIN_OEM_FJ_LOYA[E],DOM_VK_WIN_OEM_FJ_MASSHOU[E],"
14642                 + "DOM_VK_WIN_OEM_FJ_ROYA[E],DOM_VK_WIN_OEM_FJ_TOUROKU[E],DOM_VK_WIN_OEM_JUMP[E],"
14643                 + "DOM_VK_WIN_OEM_PA1[E],DOM_VK_WIN_OEM_PA2[E],DOM_VK_WIN_OEM_PA3[E],DOM_VK_WIN_OEM_RESET[E],"
14644                 + "DOM_VK_WIN_OEM_WSCTRL[E],DOM_VK_X[E],DOM_VK_Y[E],DOM_VK_Z[E],DOM_VK_ZOOM[E],getModifierState(),"
14645                 + "initKeyboardEvent(),isComposing[GCE],key[GCE],keyCode[GCE],location[GCE],metaKey[GCE],"
14646                 + "repeat[GCE],"
14647                 + "shiftKey[GCE]")
14648     @HtmlUnitNYI(CHROME = "altKey[GCE],charCode[GCE],code[GCE],constructor(),ctrlKey[GCE],"
14649                 + "DOM_KEY_LOCATION_LEFT[E],DOM_KEY_LOCATION_NUMPAD[E],DOM_KEY_LOCATION_RIGHT[E],"
14650                 + "DOM_KEY_LOCATION_STANDARD[E],"
14651                 + "initKeyboardEvent(),isComposing[GCE],key[GCE],keyCode[GCE],location[GCE],metaKey[GCE],"
14652                 + "repeat[GCE],shiftKey[GCE]",
14653             EDGE = "altKey[GCE],charCode[GCE],code[GCE],constructor(),ctrlKey[GCE],"
14654                 + "DOM_KEY_LOCATION_LEFT[E],DOM_KEY_LOCATION_NUMPAD[E],DOM_KEY_LOCATION_RIGHT[E],"
14655                 + "DOM_KEY_LOCATION_STANDARD[E],"
14656                 + "initKeyboardEvent(),isComposing[GCE],key[GCE],keyCode[GCE],location[GCE],metaKey[GCE],"
14657                 + "repeat[GCE],shiftKey[GCE]",
14658             FF_ESR = "altKey[GCE],charCode[GCE],code[GCE],constructor(),ctrlKey[GCE],DOM_KEY_LOCATION_LEFT[E],"
14659                 + "DOM_KEY_LOCATION_NUMPAD[E],DOM_KEY_LOCATION_RIGHT[E],DOM_KEY_LOCATION_STANDARD[E],DOM_VK_0[E],"
14660                 + "DOM_VK_1[E],DOM_VK_2[E],DOM_VK_3[E],DOM_VK_4[E],DOM_VK_5[E],DOM_VK_6[E],DOM_VK_7[E],DOM_VK_8[E],"
14661                 + "DOM_VK_9[E],DOM_VK_A[E],DOM_VK_ACCEPT[E],DOM_VK_ADD[E],DOM_VK_ALT[E],DOM_VK_ALTGR[E],"
14662                 + "DOM_VK_AMPERSAND[E],DOM_VK_ASTERISK[E],DOM_VK_AT[E],DOM_VK_ATTN[E],DOM_VK_B[E],"
14663                 + "DOM_VK_BACK_QUOTE[E],DOM_VK_BACK_SLASH[E],DOM_VK_BACK_SPACE[E],DOM_VK_C[E],DOM_VK_CANCEL[E],"
14664                 + "DOM_VK_CAPS_LOCK[E],DOM_VK_CIRCUMFLEX[E],DOM_VK_CLEAR[E],DOM_VK_CLOSE_BRACKET[E],"
14665                 + "DOM_VK_CLOSE_CURLY_BRACKET[E],DOM_VK_CLOSE_PAREN[E],DOM_VK_COLON[E],DOM_VK_COMMA[E],"
14666                 + "DOM_VK_CONTEXT_MENU[E],DOM_VK_CONTROL[E],DOM_VK_CONVERT[E],DOM_VK_CRSEL[E],DOM_VK_D[E],"
14667                 + "DOM_VK_DECIMAL[E],DOM_VK_DELETE[E],DOM_VK_DIVIDE[E],DOM_VK_DOLLAR[E],DOM_VK_DOUBLE_QUOTE[E],"
14668                 + "DOM_VK_DOWN[E],DOM_VK_E[E],DOM_VK_EISU[E],DOM_VK_END[E],DOM_VK_EQUALS[E],DOM_VK_EREOF[E],"
14669                 + "DOM_VK_ESCAPE[E],DOM_VK_EXCLAMATION[E],DOM_VK_EXECUTE[E],DOM_VK_EXSEL[E],DOM_VK_F10[E],"
14670                 + "DOM_VK_F11[E],DOM_VK_F12[E],DOM_VK_F13[E],DOM_VK_F14[E],DOM_VK_F15[E],DOM_VK_F16[E],"
14671                 + "DOM_VK_F17[E],DOM_VK_F18[E],DOM_VK_F19[E],DOM_VK_F1[E],DOM_VK_F20[E],DOM_VK_F21[E],"
14672                 + "DOM_VK_F22[E],DOM_VK_F23[E],DOM_VK_F24[E],DOM_VK_F2[E],DOM_VK_F3[E],DOM_VK_F4[E],DOM_VK_F5[E],"
14673                 + "DOM_VK_F6[E],DOM_VK_F7[E],DOM_VK_F8[E],DOM_VK_F9[E],DOM_VK_F[E],DOM_VK_FINAL[E],DOM_VK_G[E],"
14674                 + "DOM_VK_GREATER_THAN[E],DOM_VK_H[E],DOM_VK_HANGUL[E],DOM_VK_HANJA[E],DOM_VK_HASH[E],"
14675                 + "DOM_VK_HELP[E],DOM_VK_HOME[E],DOM_VK_HYPHEN_MINUS[E],DOM_VK_I[E],DOM_VK_INSERT[E],DOM_VK_J[E],"
14676                 + "DOM_VK_JUNJA[E],DOM_VK_K[E],DOM_VK_KANA[E],DOM_VK_KANJI[E],DOM_VK_L[E],DOM_VK_LEFT[E],"
14677                 + "DOM_VK_LESS_THAN[E],DOM_VK_M[E],DOM_VK_META[E],DOM_VK_MODECHANGE[E],DOM_VK_MULTIPLY[E],"
14678                 + "DOM_VK_N[E],DOM_VK_NONCONVERT[E],DOM_VK_NUM_LOCK[E],DOM_VK_NUMPAD0[E],DOM_VK_NUMPAD1[E],"
14679                 + "DOM_VK_NUMPAD2[E],DOM_VK_NUMPAD3[E],DOM_VK_NUMPAD4[E],DOM_VK_NUMPAD5[E],DOM_VK_NUMPAD6[E],"
14680                 + "DOM_VK_NUMPAD7[E],DOM_VK_NUMPAD8[E],DOM_VK_NUMPAD9[E],DOM_VK_O[E],DOM_VK_OPEN_BRACKET[E],"
14681                 + "DOM_VK_OPEN_CURLY_BRACKET[E],DOM_VK_OPEN_PAREN[E],DOM_VK_P[E],DOM_VK_PA1[E],DOM_VK_PAGE_DOWN[E],"
14682                 + "DOM_VK_PAGE_UP[E],DOM_VK_PAUSE[E],DOM_VK_PERCENT[E],DOM_VK_PERIOD[E],DOM_VK_PIPE[E],"
14683                 + "DOM_VK_PLAY[E],DOM_VK_PLUS[E],DOM_VK_PRINT[E],DOM_VK_PRINTSCREEN[E],DOM_VK_PROCESSKEY[E],"
14684                 + "DOM_VK_Q[E],DOM_VK_QUESTION_MARK[E],DOM_VK_QUOTE[E],DOM_VK_R[E],DOM_VK_RETURN[E],DOM_VK_RIGHT[E],"
14685                 + "DOM_VK_S[E],DOM_VK_SCROLL_LOCK[E],DOM_VK_SELECT[E],DOM_VK_SEMICOLON[E],DOM_VK_SEPARATOR[E],"
14686                 + "DOM_VK_SHIFT[E],DOM_VK_SLASH[E],DOM_VK_SLEEP[E],DOM_VK_SPACE[E],DOM_VK_SUBTRACT[E],DOM_VK_T[E],"
14687                 + "DOM_VK_TAB[E],DOM_VK_TILDE[E],DOM_VK_U[E],DOM_VK_UNDERSCORE[E],DOM_VK_UP[E],DOM_VK_V[E],"
14688                 + "DOM_VK_VOLUME_DOWN[E],DOM_VK_VOLUME_MUTE[E],DOM_VK_VOLUME_UP[E],DOM_VK_W[E],DOM_VK_WIN[E],"
14689                 + "DOM_VK_WIN_ICO_00[E],DOM_VK_WIN_ICO_CLEAR[E],DOM_VK_WIN_ICO_HELP[E],DOM_VK_WIN_OEM_ATTN[E],"
14690                 + "DOM_VK_WIN_OEM_AUTO[E],DOM_VK_WIN_OEM_BACKTAB[E],DOM_VK_WIN_OEM_CLEAR[E],DOM_VK_WIN_OEM_COPY[E],"
14691                 + "DOM_VK_WIN_OEM_CUSEL[E],DOM_VK_WIN_OEM_ENLW[E],DOM_VK_WIN_OEM_FINISH[E],DOM_VK_WIN_OEM_FJ_JISHO[E],"
14692                 + "DOM_VK_WIN_OEM_FJ_LOYA[E],DOM_VK_WIN_OEM_FJ_MASSHOU[E],DOM_VK_WIN_OEM_FJ_ROYA[E],"
14693                 + "DOM_VK_WIN_OEM_FJ_TOUROKU[E],DOM_VK_WIN_OEM_JUMP[E],DOM_VK_WIN_OEM_PA1[E],DOM_VK_WIN_OEM_PA2[E],"
14694                 + "DOM_VK_WIN_OEM_PA3[E],DOM_VK_WIN_OEM_RESET[E],DOM_VK_WIN_OEM_WSCTRL[E],DOM_VK_X[E],DOM_VK_Y[E],"
14695                 + "DOM_VK_Z[E],DOM_VK_ZOOM[E],"
14696                 + "initKeyboardEvent(),isComposing[GCE],key[GCE],keyCode[GCE],location[GCE],"
14697                 + "metaKey[GCE],repeat[GCE],shiftKey[GCE]",
14698             FF = "altKey[GCE],charCode[GCE],code[GCE],constructor(),ctrlKey[GCE],DOM_KEY_LOCATION_LEFT[E],"
14699                 + "DOM_KEY_LOCATION_NUMPAD[E],DOM_KEY_LOCATION_RIGHT[E],DOM_KEY_LOCATION_STANDARD[E],DOM_VK_0[E],"
14700                 + "DOM_VK_1[E],DOM_VK_2[E],DOM_VK_3[E],DOM_VK_4[E],DOM_VK_5[E],DOM_VK_6[E],DOM_VK_7[E],DOM_VK_8[E],"
14701                 + "DOM_VK_9[E],DOM_VK_A[E],DOM_VK_ACCEPT[E],DOM_VK_ADD[E],DOM_VK_ALT[E],DOM_VK_ALTGR[E],"
14702                 + "DOM_VK_AMPERSAND[E],DOM_VK_ASTERISK[E],DOM_VK_AT[E],DOM_VK_ATTN[E],DOM_VK_B[E],"
14703                 + "DOM_VK_BACK_QUOTE[E],DOM_VK_BACK_SLASH[E],DOM_VK_BACK_SPACE[E],DOM_VK_C[E],DOM_VK_CANCEL[E],"
14704                 + "DOM_VK_CAPS_LOCK[E],DOM_VK_CIRCUMFLEX[E],DOM_VK_CLEAR[E],DOM_VK_CLOSE_BRACKET[E],"
14705                 + "DOM_VK_CLOSE_CURLY_BRACKET[E],DOM_VK_CLOSE_PAREN[E],DOM_VK_COLON[E],DOM_VK_COMMA[E],"
14706                 + "DOM_VK_CONTEXT_MENU[E],DOM_VK_CONTROL[E],DOM_VK_CONVERT[E],DOM_VK_CRSEL[E],DOM_VK_D[E],"
14707                 + "DOM_VK_DECIMAL[E],DOM_VK_DELETE[E],DOM_VK_DIVIDE[E],DOM_VK_DOLLAR[E],DOM_VK_DOUBLE_QUOTE[E],"
14708                 + "DOM_VK_DOWN[E],DOM_VK_E[E],DOM_VK_EISU[E],DOM_VK_END[E],DOM_VK_EQUALS[E],DOM_VK_EREOF[E],"
14709                 + "DOM_VK_ESCAPE[E],DOM_VK_EXCLAMATION[E],DOM_VK_EXECUTE[E],DOM_VK_EXSEL[E],DOM_VK_F10[E],"
14710                 + "DOM_VK_F11[E],DOM_VK_F12[E],DOM_VK_F13[E],DOM_VK_F14[E],DOM_VK_F15[E],DOM_VK_F16[E],"
14711                 + "DOM_VK_F17[E],DOM_VK_F18[E],DOM_VK_F19[E],DOM_VK_F1[E],DOM_VK_F20[E],DOM_VK_F21[E],"
14712                 + "DOM_VK_F22[E],DOM_VK_F23[E],DOM_VK_F24[E],DOM_VK_F2[E],DOM_VK_F3[E],DOM_VK_F4[E],DOM_VK_F5[E],"
14713                 + "DOM_VK_F6[E],DOM_VK_F7[E],DOM_VK_F8[E],DOM_VK_F9[E],DOM_VK_F[E],DOM_VK_FINAL[E],DOM_VK_G[E],"
14714                 + "DOM_VK_GREATER_THAN[E],DOM_VK_H[E],DOM_VK_HANGUL[E],DOM_VK_HANJA[E],DOM_VK_HASH[E],"
14715                 + "DOM_VK_HELP[E],DOM_VK_HOME[E],DOM_VK_HYPHEN_MINUS[E],DOM_VK_I[E],DOM_VK_INSERT[E],DOM_VK_J[E],"
14716                 + "DOM_VK_JUNJA[E],DOM_VK_K[E],DOM_VK_KANA[E],DOM_VK_KANJI[E],DOM_VK_L[E],DOM_VK_LEFT[E],"
14717                 + "DOM_VK_LESS_THAN[E],DOM_VK_M[E],DOM_VK_META[E],DOM_VK_MODECHANGE[E],DOM_VK_MULTIPLY[E],"
14718                 + "DOM_VK_N[E],DOM_VK_NONCONVERT[E],DOM_VK_NUM_LOCK[E],DOM_VK_NUMPAD0[E],DOM_VK_NUMPAD1[E],"
14719                 + "DOM_VK_NUMPAD2[E],DOM_VK_NUMPAD3[E],DOM_VK_NUMPAD4[E],DOM_VK_NUMPAD5[E],DOM_VK_NUMPAD6[E],"
14720                 + "DOM_VK_NUMPAD7[E],DOM_VK_NUMPAD8[E],DOM_VK_NUMPAD9[E],DOM_VK_O[E],DOM_VK_OPEN_BRACKET[E],"
14721                 + "DOM_VK_OPEN_CURLY_BRACKET[E],DOM_VK_OPEN_PAREN[E],DOM_VK_P[E],DOM_VK_PA1[E],DOM_VK_PAGE_DOWN[E],"
14722                 + "DOM_VK_PAGE_UP[E],DOM_VK_PAUSE[E],DOM_VK_PERCENT[E],DOM_VK_PERIOD[E],DOM_VK_PIPE[E],"
14723                 + "DOM_VK_PLAY[E],DOM_VK_PLUS[E],DOM_VK_PRINT[E],DOM_VK_PRINTSCREEN[E],DOM_VK_PROCESSKEY[E],"
14724                 + "DOM_VK_Q[E],DOM_VK_QUESTION_MARK[E],DOM_VK_QUOTE[E],DOM_VK_R[E],DOM_VK_RETURN[E],DOM_VK_RIGHT[E],"
14725                 + "DOM_VK_S[E],DOM_VK_SCROLL_LOCK[E],DOM_VK_SELECT[E],DOM_VK_SEMICOLON[E],DOM_VK_SEPARATOR[E],"
14726                 + "DOM_VK_SHIFT[E],DOM_VK_SLASH[E],DOM_VK_SLEEP[E],DOM_VK_SPACE[E],DOM_VK_SUBTRACT[E],DOM_VK_T[E],"
14727                 + "DOM_VK_TAB[E],DOM_VK_TILDE[E],DOM_VK_U[E],DOM_VK_UNDERSCORE[E],DOM_VK_UP[E],DOM_VK_V[E],"
14728                 + "DOM_VK_VOLUME_DOWN[E],DOM_VK_VOLUME_MUTE[E],DOM_VK_VOLUME_UP[E],DOM_VK_W[E],DOM_VK_WIN[E],"
14729                 + "DOM_VK_WIN_ICO_00[E],DOM_VK_WIN_ICO_CLEAR[E],DOM_VK_WIN_ICO_HELP[E],DOM_VK_WIN_OEM_ATTN[E],"
14730                 + "DOM_VK_WIN_OEM_AUTO[E],DOM_VK_WIN_OEM_BACKTAB[E],DOM_VK_WIN_OEM_CLEAR[E],DOM_VK_WIN_OEM_COPY[E],"
14731                 + "DOM_VK_WIN_OEM_CUSEL[E],DOM_VK_WIN_OEM_ENLW[E],DOM_VK_WIN_OEM_FINISH[E],DOM_VK_WIN_OEM_FJ_JISHO[E],"
14732                 + "DOM_VK_WIN_OEM_FJ_LOYA[E],DOM_VK_WIN_OEM_FJ_MASSHOU[E],DOM_VK_WIN_OEM_FJ_ROYA[E],"
14733                 + "DOM_VK_WIN_OEM_FJ_TOUROKU[E],DOM_VK_WIN_OEM_JUMP[E],DOM_VK_WIN_OEM_PA1[E],DOM_VK_WIN_OEM_PA2[E],"
14734                 + "DOM_VK_WIN_OEM_PA3[E],DOM_VK_WIN_OEM_RESET[E],DOM_VK_WIN_OEM_WSCTRL[E],DOM_VK_X[E],DOM_VK_Y[E],"
14735                 + "DOM_VK_Z[E],DOM_VK_ZOOM[E],"
14736                 + "initKeyboardEvent(),isComposing[GCE],key[GCE],keyCode[GCE],location[GCE],"
14737                 + "metaKey[GCE],repeat[GCE],shiftKey[GCE]")
14738     public void keyboardEvent() throws Exception {
14739         testString("", "document.createEvent('KeyboardEvent')");
14740     }
14741 
14742     /**
14743      * Test {@link org.htmlunit.javascript.host.event.UIEvent}.
14744      *
14745      * @throws Exception if the test fails
14746      */
14747     @Test
14748     @Alerts(CHROME = "AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
14749                 + "CAPTURING_PHASE[E],composed[GCE],composedPath(),constructor(),currentTarget[GCE],"
14750                 + "defaultPrevented[GCE],eventPhase[GCE],initEvent(),NONE[E],preventDefault(),returnValue[GSCE],"
14751                 + "srcElement[GCE],stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],"
14752                 + "type[GCE]",
14753             EDGE = "AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
14754                 + "CAPTURING_PHASE[E],composed[GCE],composedPath(),constructor(),currentTarget[GCE],"
14755                 + "defaultPrevented[GCE],eventPhase[GCE],initEvent(),NONE[E],preventDefault(),returnValue[GSCE],"
14756                 + "srcElement[GCE],stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],"
14757                 + "type[GCE]",
14758             FF = "ALT_MASK[E],AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
14759                 + "CAPTURING_PHASE[E],composed[GCE],composedPath(),constructor(),CONTROL_MASK[E],currentTarget[GCE],"
14760                 + "defaultPrevented[GCE],eventPhase[GCE],explicitOriginalTarget[GCE],initEvent(),META_MASK[E],"
14761                 + "NONE[E],originalTarget[GCE],preventDefault(),returnValue[GSCE],SHIFT_MASK[E],srcElement[GCE],"
14762                 + "stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],"
14763                 + "type[GCE]",
14764             FF_ESR = "ALT_MASK[E],AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
14765                 + "CAPTURING_PHASE[E],composed[GCE],composedPath(),constructor(),CONTROL_MASK[E],currentTarget[GCE],"
14766                 + "defaultPrevented[GCE],eventPhase[GCE],explicitOriginalTarget[GCE],initEvent(),META_MASK[E],"
14767                 + "NONE[E],originalTarget[GCE],preventDefault(),returnValue[GSCE],SHIFT_MASK[E],srcElement[GCE],"
14768                 + "stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],"
14769                 + "type[GCE]")
14770     @HtmlUnitNYI(CHROME = "AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
14771                 + "CAPTURING_PHASE[E],composed[GCE],constructor(),currentTarget[GCE],defaultPrevented[GCE],"
14772                 + "eventPhase[GCE],initEvent(),NONE[E],preventDefault(),returnValue[GSCE],srcElement[GCE],"
14773                 + "stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],type[GCE]",
14774             EDGE = "AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
14775                 + "CAPTURING_PHASE[E],composed[GCE],constructor(),currentTarget[GCE],defaultPrevented[GCE],"
14776                 + "eventPhase[GCE],initEvent(),NONE[E],preventDefault(),returnValue[GSCE],srcElement[GCE],"
14777                 + "stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],type[GCE]",
14778             FF_ESR = "ALT_MASK[E],AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
14779                 + "CAPTURING_PHASE[E],composed[GCE],constructor(),CONTROL_MASK[E],"
14780                 + "currentTarget[GCE],defaultPrevented[GCE],"
14781                 + "eventPhase[GCE],initEvent(),META_MASK[E],NONE[E],"
14782                 + "preventDefault(),returnValue[GSCE],SHIFT_MASK[E],srcElement[GCE],"
14783                 + "stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],type[GCE]",
14784             FF = "ALT_MASK[E],AT_TARGET[E],bubbles[GCE],BUBBLING_PHASE[E],cancelable[GCE],cancelBubble[GSCE],"
14785                 + "CAPTURING_PHASE[E],composed[GCE],constructor(),CONTROL_MASK[E],"
14786                 + "currentTarget[GCE],defaultPrevented[GCE],"
14787                 + "eventPhase[GCE],initEvent(),META_MASK[E],NONE[E],"
14788                 + "preventDefault(),returnValue[GSCE],SHIFT_MASK[E],srcElement[GCE],"
14789                 + "stopImmediatePropagation(),stopPropagation(),target[GCE],timeStamp[GCE],type[GCE]")
14790     public void event2() throws Exception {
14791         testString("", "document.createEvent('Event')");
14792     }
14793 
14794     /**
14795      * Test {@link org.htmlunit.javascript.host.event.UIEvent}.
14796      *
14797      * @throws Exception if the test fails
14798      */
14799     @Test
14800     @Alerts(CHROME = "constructor(),detail[GCE],initUIEvent(),sourceCapabilities[GCE],view[GCE],which[GCE]",
14801             EDGE = "constructor(),detail[GCE],initUIEvent(),sourceCapabilities[GCE],view[GCE],which[GCE]",
14802             FF = "constructor(),detail[GCE],initUIEvent(),layerX[GCE],layerY[GCE],rangeOffset[GCE],"
14803                 + "rangeParent[GCE],SCROLL_PAGE_DOWN[E],SCROLL_PAGE_UP[E],view[GCE],"
14804                 + "which[GCE]",
14805             FF_ESR = "constructor(),detail[GCE],initUIEvent(),layerX[GCE],layerY[GCE],rangeOffset[GCE],"
14806                 + "rangeParent[GCE],SCROLL_PAGE_DOWN[E],SCROLL_PAGE_UP[E],view[GCE],"
14807                 + "which[GCE]")
14808     @HtmlUnitNYI(CHROME = "constructor(),detail[GCE],initUIEvent(),view[GCE],which[GCE]",
14809             EDGE = "constructor(),detail[GCE],initUIEvent(),view[GCE],which[GCE]",
14810             FF_ESR = "constructor(),detail[GCE],initUIEvent(),SCROLL_PAGE_DOWN[E],SCROLL_PAGE_UP[E],"
14811                 + "view[GCE],which[GCE]",
14812             FF = "constructor(),detail[GCE],initUIEvent(),SCROLL_PAGE_DOWN[E],SCROLL_PAGE_UP[E],"
14813                 + "view[GCE],which[GCE]")
14814     public void uiEvent() throws Exception {
14815         testString("", "document.createEvent('UIEvent')");
14816     }
14817 
14818     /**
14819      * Test {@link org.htmlunit.javascript.host.URL}.
14820      *
14821      * @throws Exception if the test fails
14822      */
14823     @Test
14824     @Alerts(CHROME = "constructor(),hash[GSCE],host[GSCE],hostname[GSCE],href[GSCE],origin[GCE],password[GSCE],"
14825                 + "pathname[GSCE],port[GSCE],protocol[GSCE],search[GSCE],searchParams[GCE],toJSON(),toString(),"
14826                 + "username[GSCE]",
14827             EDGE = "constructor(),hash[GSCE],host[GSCE],hostname[GSCE],href[GSCE],origin[GCE],password[GSCE],"
14828                 + "pathname[GSCE],port[GSCE],protocol[GSCE],search[GSCE],searchParams[GCE],toJSON(),toString(),"
14829                 + "username[GSCE]",
14830             FF = "constructor(),hash[GSCE],host[GSCE],hostname[GSCE],href[GSCE],origin[GCE],password[GSCE],"
14831                 + "pathname[GSCE],port[GSCE],protocol[GSCE],search[GSCE],searchParams[GCE],toJSON(),toString(),"
14832                 + "username[GSCE]",
14833             FF_ESR = "constructor(),hash[GSCE],host[GSCE],hostname[GSCE],href[GSCE],origin[GCE],password[GSCE],"
14834                 + "pathname[GSCE],port[GSCE],protocol[GSCE],search[GSCE],searchParams[GCE],toJSON(),toString(),"
14835                 + "username[GSCE]")
14836     public void url() throws Exception {
14837         testString("", "new URL('http://developer.mozilla.org')");
14838     }
14839 
14840     /**
14841      * Test {@link org.htmlunit.javascript.host.URL}.
14842      *
14843      * @throws Exception if the test fails
14844      */
14845     @Test
14846     @Alerts(CHROME = "constructor(),hash[GSCE],host[GSCE],hostname[GSCE],href[GSCE],origin[GCE],password[GSCE],"
14847                 + "pathname[GSCE],port[GSCE],protocol[GSCE],search[GSCE],searchParams[GCE],toJSON(),toString(),"
14848                 + "username[GSCE]",
14849             EDGE = "constructor(),hash[GSCE],host[GSCE],hostname[GSCE],href[GSCE],origin[GCE],password[GSCE],"
14850                 + "pathname[GSCE],port[GSCE],protocol[GSCE],search[GSCE],searchParams[GCE],toJSON(),toString(),"
14851                 + "username[GSCE]",
14852             FF = "constructor(),hash[GSCE],host[GSCE],hostname[GSCE],href[GSCE],origin[GCE],password[GSCE],"
14853                 + "pathname[GSCE],port[GSCE],protocol[GSCE],search[GSCE],searchParams[GCE],toJSON(),toString(),"
14854                 + "username[GSCE]",
14855             FF_ESR = "constructor(),hash[GSCE],host[GSCE],hostname[GSCE],href[GSCE],origin[GCE],password[GSCE],"
14856                 + "pathname[GSCE],port[GSCE],protocol[GSCE],search[GSCE],searchParams[GCE],toJSON(),toString(),"
14857                 + "username[GSCE]")
14858     public void webkitURL() throws Exception {
14859         testString("", "new webkitURL('http://developer.mozilla.org')");
14860     }
14861 
14862     /**
14863      * Test {@link org.htmlunit.javascript.host.event.DragEvent}.
14864      *
14865      * @throws Exception if the test fails
14866      */
14867     @Test
14868     @Alerts(CHROME = "constructor(),dataTransfer[GCE]",
14869             EDGE = "constructor(),dataTransfer[GCE]",
14870             FF = "constructor(),dataTransfer[GCE],initDragEvent()",
14871             FF_ESR = "constructor(),dataTransfer[GCE],initDragEvent()")
14872     @HtmlUnitNYI(CHROME = "constructor()",
14873             EDGE = "constructor()",
14874             FF_ESR = "constructor()",
14875             FF = "constructor()")
14876     public void dragEvent() throws Exception {
14877         testString("", "document.createEvent('DragEvent')");
14878     }
14879 
14880     /**
14881      * Test {@link org.htmlunit.javascript.host.event.PointerEvent}.
14882      *
14883      * @throws Exception if the test fails
14884      */
14885     @Test
14886     @Alerts(CHROME = "altitudeAngle[GCE],azimuthAngle[GCE],constructor(),getCoalescedEvents(),getPredictedEvents(),"
14887                 + "height[GCE],isPrimary[GCE],persistentDeviceId[GCE],pointerId[GCE],pointerType[GCE],pressure[GCE],"
14888                 + "tangentialPressure[GCE],tiltX[GCE],tiltY[GCE],twist[GCE],"
14889                 + "width[GCE]",
14890             EDGE = "altitudeAngle[GCE],azimuthAngle[GCE],constructor(),getCoalescedEvents(),getPredictedEvents(),"
14891                 + "height[GCE],isPrimary[GCE],persistentDeviceId[GCE],pointerId[GCE],pointerType[GCE],pressure[GCE],"
14892                 + "tangentialPressure[GCE],tiltX[GCE],tiltY[GCE],twist[GCE],"
14893                 + "width[GCE]",
14894             FF = "altitudeAngle[GCE],azimuthAngle[GCE],constructor(),getCoalescedEvents(),getPredictedEvents(),"
14895                 + "height[GCE],isPrimary[GCE],pointerId[GCE],pointerType[GCE],pressure[GCE],tangentialPressure[GCE],"
14896                 + "tiltX[GCE],tiltY[GCE],twist[GCE],"
14897                 + "width[GCE]",
14898             FF_ESR = "constructor(),getCoalescedEvents(),getPredictedEvents(),height[GCE],isPrimary[GCE],"
14899                 + "pointerId[GCE],pointerType[GCE],pressure[GCE],tangentialPressure[GCE],tiltX[GCE],tiltY[GCE],"
14900                 + "twist[GCE],"
14901                 + "width[GCE]")
14902     @HtmlUnitNYI(CHROME = "altitudeAngle[GCE],azimuthAngle[GCE],constructor(),height[GCE],isPrimary[GCE],"
14903                 + "pointerId[GCE],pointerType[GCE],pressure[GCE],tiltX[GCE],tiltY[GCE],width[GCE]",
14904             EDGE = "altitudeAngle[GCE],azimuthAngle[GCE],constructor(),height[GCE],isPrimary[GCE],"
14905                 + "pointerId[GCE],pointerType[GCE],pressure[GCE],tiltX[GCE],tiltY[GCE],width[GCE]",
14906             FF = "altitudeAngle[GCE],azimuthAngle[GCE],constructor(),height[GCE],isPrimary[GCE],"
14907                 + "pointerId[GCE],pointerType[GCE],pressure[GCE],tiltX[GCE],tiltY[GCE],width[GCE]",
14908             FF_ESR = "constructor(),height[GCE],isPrimary[GCE],pointerId[GCE],pointerType[GCE],"
14909                 + "pressure[GCE],tiltX[GCE],tiltY[GCE],width[GCE]")
14910     public void pointerEvent() throws Exception {
14911         testString("", "new PointerEvent('click')");
14912     }
14913 
14914     /**
14915      * Test {@link org.htmlunit.javascript.host.event.PointerEvent}.
14916      *
14917      * @throws Exception if the test fails
14918      */
14919     @Test
14920     @Alerts(CHROME = "NotSupportedError/DOMException",
14921             EDGE = "NotSupportedError/DOMException",
14922             FF = "NotSupportedError/DOMException",
14923             FF_ESR = "NotSupportedError/DOMException")
14924     public void pointerEvent2() throws Exception {
14925         testString("", " document.createEvent('PointerEvent')");
14926     }
14927 
14928     /**
14929      * Test {@link org.htmlunit.javascript.host.event.WheelEvent}.
14930      *
14931      * @throws Exception if the test fails
14932      */
14933     @Test
14934     @Alerts(CHROME = "constructor(),deltaMode[GCE],deltaX[GCE],deltaY[GCE],deltaZ[GCE],DOM_DELTA_LINE[E],"
14935                 + "DOM_DELTA_PAGE[E],DOM_DELTA_PIXEL[E],wheelDelta[GCE],wheelDeltaX[GCE],"
14936                 + "wheelDeltaY[GCE]",
14937             EDGE = "constructor(),deltaMode[GCE],deltaX[GCE],deltaY[GCE],deltaZ[GCE],DOM_DELTA_LINE[E],"
14938                 + "DOM_DELTA_PAGE[E],DOM_DELTA_PIXEL[E],wheelDelta[GCE],wheelDeltaX[GCE],"
14939                 + "wheelDeltaY[GCE]",
14940             FF = "NotSupportedError/DOMException",
14941             FF_ESR = "NotSupportedError/DOMException")
14942     @HtmlUnitNYI(CHROME = "constructor(),DOM_DELTA_LINE[E],DOM_DELTA_PAGE[E],DOM_DELTA_PIXEL[E]",
14943             EDGE = "constructor(),DOM_DELTA_LINE[E],DOM_DELTA_PAGE[E],DOM_DELTA_PIXEL[E]")
14944     public void wheelEvent() throws Exception {
14945         testString("", "document.createEvent('WheelEvent')");
14946     }
14947 
14948     /**
14949      * Test {@link org.htmlunit.javascript.host.event.MouseEvent}.
14950      *
14951      * @throws Exception if the test fails
14952      */
14953     @Test
14954     @Alerts(CHROME = "altKey[GCE],button[GCE],buttons[GCE],clientX[GCE],clientY[GCE],constructor(),ctrlKey[GCE],"
14955                 + "fromElement[GCE],getModifierState(),initMouseEvent(),layerX[GCE],layerY[GCE],metaKey[GCE],"
14956                 + "movementX[GCE],movementY[GCE],offsetX[GCE],offsetY[GCE],pageX[GCE],pageY[GCE],relatedTarget[GCE],"
14957                 + "screenX[GCE],screenY[GCE],shiftKey[GCE],toElement[GCE],x[GCE],"
14958                 + "y[GCE]",
14959             EDGE = "altKey[GCE],button[GCE],buttons[GCE],clientX[GCE],clientY[GCE],constructor(),ctrlKey[GCE],"
14960                 + "fromElement[GCE],getModifierState(),initMouseEvent(),layerX[GCE],layerY[GCE],metaKey[GCE],"
14961                 + "movementX[GCE],movementY[GCE],offsetX[GCE],offsetY[GCE],pageX[GCE],pageY[GCE],relatedTarget[GCE],"
14962                 + "screenX[GCE],screenY[GCE],shiftKey[GCE],toElement[GCE],x[GCE],"
14963                 + "y[GCE]",
14964             FF = "altKey[GCE],button[GCE],buttons[GCE],clientX[GCE],clientY[GCE],constructor(),ctrlKey[GCE],"
14965                 + "getModifierState(),initMouseEvent(),initNSMouseEvent(),metaKey[GCE],movementX[GCE],"
14966                 + "movementY[GCE],MOZ_SOURCE_CURSOR[E],MOZ_SOURCE_ERASER[E],MOZ_SOURCE_KEYBOARD[E],"
14967                 + "MOZ_SOURCE_MOUSE[E],MOZ_SOURCE_PEN[E],MOZ_SOURCE_TOUCH[E],MOZ_SOURCE_UNKNOWN[E],"
14968                 + "mozInputSource[GCE],mozPressure[GCE],offsetX[GCE],offsetY[GCE],pageX[GCE],pageY[GCE],"
14969                 + "relatedTarget[GCE],screenX[GCE],screenY[GCE],shiftKey[GCE],x[GCE],"
14970                 + "y[GCE]",
14971             FF_ESR = "altKey[GCE],button[GCE],buttons[GCE],clientX[GCE],clientY[GCE],constructor(),ctrlKey[GCE],"
14972                 + "getModifierState(),initMouseEvent(),initNSMouseEvent(),metaKey[GCE],movementX[GCE],"
14973                 + "movementY[GCE],MOZ_SOURCE_CURSOR[E],MOZ_SOURCE_ERASER[E],MOZ_SOURCE_KEYBOARD[E],"
14974                 + "MOZ_SOURCE_MOUSE[E],MOZ_SOURCE_PEN[E],MOZ_SOURCE_TOUCH[E],MOZ_SOURCE_UNKNOWN[E],"
14975                 + "mozInputSource[GCE],mozPressure[GCE],offsetX[GCE],offsetY[GCE],pageX[GCE],pageY[GCE],"
14976                 + "relatedTarget[GCE],screenX[GCE],screenY[GCE],shiftKey[GCE],x[GCE],"
14977                 + "y[GCE]")
14978     @HtmlUnitNYI(CHROME = "altKey[GCE],button[GCE],buttons[GCE],clientX[GCE],clientY[GCE],constructor(),ctrlKey[GCE],"
14979                 + "initMouseEvent(),metaKey[GCE],pageX[GCE],pageY[GCE],screenX[GCE],screenY[GCE],shiftKey[GCE]",
14980             EDGE = "altKey[GCE],button[GCE],buttons[GCE],clientX[GCE],clientY[GCE],constructor(),ctrlKey[GCE],"
14981                 + "initMouseEvent(),metaKey[GCE],pageX[GCE],pageY[GCE],screenX[GCE],screenY[GCE],shiftKey[GCE]",
14982             FF_ESR = "altKey[GCE],button[GCE],buttons[GCE],clientX[GCE],clientY[GCE],constructor(),ctrlKey[GCE],"
14983                 + "initMouseEvent(),metaKey[GCE],MOZ_SOURCE_CURSOR[E],"
14984                 + "MOZ_SOURCE_ERASER[E],MOZ_SOURCE_KEYBOARD[E],MOZ_SOURCE_MOUSE[E],MOZ_SOURCE_PEN[E],"
14985                 + "MOZ_SOURCE_TOUCH[E],MOZ_SOURCE_UNKNOWN[E],"
14986                 + "pageX[GCE],pageY[GCE],screenX[GCE],screenY[GCE],shiftKey[GCE]",
14987             FF = "altKey[GCE],button[GCE],buttons[GCE],clientX[GCE],clientY[GCE],constructor(),ctrlKey[GCE],"
14988                 + "initMouseEvent(),metaKey[GCE],MOZ_SOURCE_CURSOR[E],"
14989                 + "MOZ_SOURCE_ERASER[E],MOZ_SOURCE_KEYBOARD[E],MOZ_SOURCE_MOUSE[E],MOZ_SOURCE_PEN[E],"
14990                 + "MOZ_SOURCE_TOUCH[E],MOZ_SOURCE_UNKNOWN[E],"
14991                 + "pageX[GCE],pageY[GCE],screenX[GCE],screenY[GCE],shiftKey[GCE]")
14992     public void mouseEvent() throws Exception {
14993         testString("", "document.createEvent('MouseEvent')");
14994     }
14995 
14996 
14997 
14998     /**
14999      * Test {@link org.htmlunit.javascript.host.event.CompositionEvent}.
15000      *
15001      * @throws Exception if the test fails
15002      */
15003     @Test
15004     @Alerts(CHROME = "constructor(),data[GCE],initCompositionEvent()",
15005             EDGE = "constructor(),data[GCE],initCompositionEvent()",
15006             FF = "constructor(),data[GCE],initCompositionEvent(),locale[GCE]",
15007             FF_ESR = "constructor(),data[GCE],initCompositionEvent(),locale[GCE]")
15008     @HtmlUnitNYI(CHROME = "constructor(),data[GCE]",
15009             EDGE = "constructor(),data[GCE]",
15010             FF_ESR = "constructor(),data[GCE]",
15011             FF = "constructor(),data[GCE]")
15012     public void compositionEvent() throws Exception {
15013         testString("", "document.createEvent('CompositionEvent')");
15014     }
15015 
15016     /**
15017      * Test {@link org.htmlunit.javascript.host.event.FocusEvent}.
15018      *
15019      * @throws Exception if the test fails
15020      */
15021     @Test
15022     @Alerts(CHROME = "constructor(),relatedTarget[GCE]",
15023             EDGE = "constructor(),relatedTarget[GCE]",
15024             FF = "constructor(),relatedTarget[GCE]",
15025             FF_ESR = "constructor(),relatedTarget[GCE]")
15026     @HtmlUnitNYI(CHROME = "constructor()",
15027             EDGE = "constructor()",
15028             FF_ESR = "constructor()",
15029             FF = "constructor()")
15030     public void focusEvent() throws Exception {
15031         testString("", "document.createEvent('FocusEvent')");
15032     }
15033 
15034     /**
15035      * Test {@link org.htmlunit.javascript.host.event.InputEvent}.
15036      *
15037      * @throws Exception if the test fails
15038      */
15039     @Test
15040     @Alerts(CHROME = "constructor(),data[GCE],dataTransfer[GCE],getTargetRanges(),inputType[GCE],isComposing[GCE]",
15041             EDGE = "constructor(),data[GCE],dataTransfer[GCE],getTargetRanges(),inputType[GCE],isComposing[GCE]",
15042             FF = "constructor(),data[GCE],dataTransfer[GCE],getTargetRanges(),inputType[GCE],isComposing[GCE]",
15043             FF_ESR = "constructor(),data[GCE],dataTransfer[GCE],getTargetRanges(),inputType[GCE],isComposing[GCE]")
15044     @HtmlUnitNYI(CHROME = "constructor(),data[GCE],inputType[GCE],isComposing[GCE]",
15045             EDGE = "constructor(),data[GCE],inputType[GCE],isComposing[GCE]",
15046             FF_ESR = "constructor(),data[GCE],inputType[GCE],isComposing[GCE]",
15047             FF = "constructor(),data[GCE],inputType[GCE],isComposing[GCE]")
15048     public void inputEvent() throws Exception {
15049         testString("", "new InputEvent('input')");
15050     }
15051 
15052     /**
15053      * Test {@link org.htmlunit.javascript.host.event.MouseWheelEvent}.
15054      *
15055      * @throws Exception if the test fails
15056      */
15057     @Test
15058     @Alerts(CHROME = "NotSupportedError/DOMException",
15059             EDGE = "NotSupportedError/DOMException",
15060             FF = "NotSupportedError/DOMException",
15061             FF_ESR = "NotSupportedError/DOMException")
15062     public void mouseWheelEvent() throws Exception {
15063         testString("", "document.createEvent('MouseWheelEvent')");
15064     }
15065 
15066     /**
15067      * Test {@link org.htmlunit.javascript.host.event.SVGZoomEvent}.
15068      *
15069      * @throws Exception if the test fails
15070      */
15071     @Test
15072     @Alerts("NotSupportedError/DOMException")
15073     public void svgZoomEvent() throws Exception {
15074         testString("", "document.createEvent('SVGZoomEvent')");
15075     }
15076 
15077     /**
15078      * Test {@link org.htmlunit.javascript.host.event.TextEvent}.
15079      *
15080      * @throws Exception if the test fails
15081      */
15082     @Test
15083     @Alerts(CHROME = "constructor(),data[GCE],initTextEvent()",
15084             EDGE = "constructor(),data[GCE],initTextEvent()",
15085             FF = "constructor(),data[GCE],initTextEvent()",
15086             FF_ESR = "constructor(),data[GCE],initCompositionEvent(),locale[GCE]")
15087     @HtmlUnitNYI(CHROME = "constructor(),data[GCE]",
15088             EDGE = "constructor(),data[GCE]",
15089             FF_ESR = "constructor(),data[GCE]",
15090             FF = "constructor(),data[GCE]")
15091     public void textEvent() throws Exception {
15092         testString("", "document.createEvent('TextEvent')");
15093     }
15094 
15095     /**
15096      * Test {@link org.htmlunit.javascript.host.event.TouchEvent}.
15097      *
15098      * @throws Exception if the test fails
15099      */
15100     @Test
15101     @Alerts(CHROME = "altKey[GCE],changedTouches[GCE],constructor(),ctrlKey[GCE],metaKey[GCE],shiftKey[GCE],"
15102                 + "targetTouches[GCE],"
15103                 + "touches[GCE]",
15104             EDGE = "altKey[GCE],changedTouches[GCE],constructor(),ctrlKey[GCE],metaKey[GCE],shiftKey[GCE],"
15105                 + "targetTouches[GCE],"
15106                 + "touches[GCE]",
15107             FF = "ReferenceError",
15108             FF_ESR = "ReferenceError")
15109     @HtmlUnitNYI(CHROME = "constructor()",
15110             EDGE = "constructor()")
15111     public void touchEvent2() throws Exception {
15112         testString("", "new TouchEvent('touch')");
15113     }
15114 
15115     /**
15116      * Test {@link org.htmlunit.html.HtmlSlot}.
15117      *
15118      * @throws Exception if the test fails
15119      */
15120     @Test
15121     @Alerts(CHROME = "assign(),assignedElements(),assignedNodes(),constructor(),name[GSCE]",
15122             EDGE = "assign(),assignedElements(),assignedNodes(),constructor(),name[GSCE]",
15123             FF = "assign(),assignedElements(),assignedNodes(),constructor(),name[GSCE]",
15124             FF_ESR = "assign(),assignedElements(),assignedNodes(),constructor(),name[GSCE]")
15125     @HtmlUnitNYI(CHROME = "constructor()",
15126             EDGE = "constructor()",
15127             FF_ESR = "constructor()",
15128             FF = "constructor()")
15129     public void slot() throws Exception {
15130         test("slot");
15131     }
15132 
15133     /**
15134      * Test {@link org.htmlunit.javascript.host.html.HTMLDocument}.
15135      *
15136      * @throws Exception if the test fails
15137      */
15138     @Test
15139     @Alerts(CHROME = "activeElement[GCE],adoptedStyleSheets[GSCE],adoptNode(),alinkColor[GSCE],all[GCE],anchors[GCE],"
15140                 + "append(),applets[GCE],bgColor[GSCE],body[GSCE],browsingTopics(),captureEvents(),"
15141                 + "caretPositionFromPoint(),caretRangeFromPoint(),characterSet[GCE],charset[GCE],"
15142                 + "childElementCount[GCE],children[GCE],clear(),close(),compatMode[GCE],constructor(),"
15143                 + "contentType[GCE],cookie[GSCE],createAttribute(),createAttributeNS(),createCDATASection(),"
15144                 + "createComment(),createDocumentFragment(),createElement(),createElementNS(),createEvent(),"
15145                 + "createExpression(),createNodeIterator(),createNSResolver(),createProcessingInstruction(),"
15146                 + "createRange(),createTextNode(),createTreeWalker(),currentScript[GCE],defaultView[GCE],"
15147                 + "designMode[GSCE],dir[GSCE],doctype[GCE],documentElement[GCE],documentURI[GCE],domain[GSCE],"
15148                 + "elementFromPoint(),elementsFromPoint(),embeds[GCE],evaluate(),execCommand(),exitFullscreen(),"
15149                 + "exitPictureInPicture(),exitPointerLock(),featurePolicy[GCE],fgColor[GSCE],firstElementChild[GCE],"
15150                 + "fonts[GCE],forms[GCE],fragmentDirective[GCE],fullscreen[GSCE],fullscreenElement[GSCE],"
15151                 + "fullscreenEnabled[GSCE],getAnimations(),getElementById(),getElementsByClassName(),"
15152                 + "getElementsByName(),getElementsByTagName(),getElementsByTagNameNS(),getSelection(),hasFocus(),"
15153                 + "hasPrivateToken(),hasRedemptionRecord(),hasStorageAccess(),hasUnpartitionedCookieAccess(),"
15154                 + "head[GCE],hidden[GCE],images[GCE],implementation[GCE],importNode(),inputEncoding[GCE],"
15155                 + "lastElementChild[GCE],lastModified[GCE],linkColor[GSCE],links[GCE],moveBefore(),onabort[GSCE],"
15156                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
15157                 + "onbeforecopy[GSCE],onbeforecut[GSCE],onbeforeinput[GSCE],onbeforematch[GSCE],onbeforepaste[GSCE],"
15158                 + "onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
15159                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncommand[GSCE],"
15160                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
15161                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
15162                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
15163                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
15164                 + "onformdata[GSCE],onfreeze[GSCE],onfullscreenchange[GSCE],onfullscreenerror[GSCE],"
15165                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
15166                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
15167                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
15168                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
15169                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],"
15170                 + "onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],onpointerlockchange[GSCE],"
15171                 + "onpointerlockerror[GSCE],onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],"
15172                 + "onpointerrawupdate[GSCE],onpointerup[GSCE],onprerenderingchange[GSCE],onprogress[GSCE],"
15173                 + "onratechange[GSCE],onreadystatechange[GSCE],onreset[GSCE],onresize[GSCE],onresume[GSCE],"
15174                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
15175                 + "onsearch[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
15176                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
15177                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
15178                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvisibilitychange[GSCE],onvolumechange[GSCE],"
15179                 + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
15180                 + "onwebkitanimationstart[GSCE],onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],"
15181                 + "onwebkittransitionend[GSCE],onwheel[GSCE],open(),pictureInPictureElement[GCE],"
15182                 + "pictureInPictureEnabled[GCE],plugins[GCE],pointerLockElement[GCE],prepend(),prerendering[GCE],"
15183                 + "queryCommandEnabled(),queryCommandIndeterm(),queryCommandState(),queryCommandSupported(),"
15184                 + "queryCommandValue(),querySelector(),querySelectorAll(),readyState[GCE],referrer[GCE],"
15185                 + "releaseEvents(),replaceChildren(),requestStorageAccess(),requestStorageAccessFor(),"
15186                 + "rootElement[GCE],scripts[GCE],scrollingElement[GCE],startViewTransition(),styleSheets[GCE],"
15187                 + "timeline[GCE],title[GSCE],URL[GCE],visibilityState[GCE],vlinkColor[GSCE],wasDiscarded[GCE],"
15188                 + "webkitCancelFullScreen(),webkitCurrentFullScreenElement[GCE],webkitExitFullscreen(),"
15189                 + "webkitFullscreenElement[GCE],webkitFullscreenEnabled[GCE],webkitHidden[GCE],"
15190                 + "webkitIsFullScreen[GCE],webkitVisibilityState[GCE],write(),writeln(),xmlEncoding[GCE],"
15191                 + "xmlStandalone[GSCE],"
15192                 + "xmlVersion[GSCE]",
15193             EDGE = "activeElement[GCE],adoptedStyleSheets[GSCE],adoptNode(),alinkColor[GSCE],all[GCE],anchors[GCE],"
15194                 + "append(),applets[GCE],bgColor[GSCE],body[GSCE],browsingTopics(),captureEvents(),"
15195                 + "caretPositionFromPoint(),caretRangeFromPoint(),characterSet[GCE],charset[GCE],"
15196                 + "childElementCount[GCE],children[GCE],clear(),close(),compatMode[GCE],constructor(),"
15197                 + "contentType[GCE],cookie[GSCE],createAttribute(),createAttributeNS(),createCDATASection(),"
15198                 + "createComment(),createDocumentFragment(),createElement(),createElementNS(),createEvent(),"
15199                 + "createExpression(),createNodeIterator(),createNSResolver(),createProcessingInstruction(),"
15200                 + "createRange(),createTextNode(),createTreeWalker(),currentScript[GCE],defaultView[GCE],"
15201                 + "designMode[GSCE],dir[GSCE],doctype[GCE],documentElement[GCE],documentURI[GCE],domain[GSCE],"
15202                 + "elementFromPoint(),elementsFromPoint(),embeds[GCE],evaluate(),execCommand(),exitFullscreen(),"
15203                 + "exitPictureInPicture(),exitPointerLock(),featurePolicy[GCE],fgColor[GSCE],firstElementChild[GCE],"
15204                 + "fonts[GCE],forms[GCE],fragmentDirective[GCE],fullscreen[GSCE],fullscreenElement[GSCE],"
15205                 + "fullscreenEnabled[GSCE],getAnimations(),getElementById(),getElementsByClassName(),"
15206                 + "getElementsByName(),getElementsByTagName(),getElementsByTagNameNS(),getSelection(),hasFocus(),"
15207                 + "hasPrivateToken(),hasRedemptionRecord(),hasStorageAccess(),hasUnpartitionedCookieAccess(),"
15208                 + "head[GCE],hidden[GCE],images[GCE],implementation[GCE],importNode(),inputEncoding[GCE],"
15209                 + "lastElementChild[GCE],lastModified[GCE],linkColor[GSCE],links[GCE],moveBefore(),onabort[GSCE],"
15210                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
15211                 + "onbeforecopy[GSCE],onbeforecut[GSCE],onbeforeinput[GSCE],onbeforematch[GSCE],onbeforepaste[GSCE],"
15212                 + "onbeforetoggle[GSCE],onbeforexrselect[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
15213                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncommand[GSCE],"
15214                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
15215                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
15216                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
15217                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
15218                 + "onformdata[GSCE],onfreeze[GSCE],onfullscreenchange[GSCE],onfullscreenerror[GSCE],"
15219                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
15220                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
15221                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
15222                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
15223                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],"
15224                 + "onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],onpointerlockchange[GSCE],"
15225                 + "onpointerlockerror[GSCE],onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],"
15226                 + "onpointerrawupdate[GSCE],onpointerup[GSCE],onprerenderingchange[GSCE],onprogress[GSCE],"
15227                 + "onratechange[GSCE],onreadystatechange[GSCE],onreset[GSCE],onresize[GSCE],onresume[GSCE],"
15228                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
15229                 + "onsearch[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
15230                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
15231                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
15232                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvisibilitychange[GSCE],onvolumechange[GSCE],"
15233                 + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
15234                 + "onwebkitanimationstart[GSCE],onwebkitfullscreenchange[GSCE],onwebkitfullscreenerror[GSCE],"
15235                 + "onwebkittransitionend[GSCE],onwheel[GSCE],open(),pictureInPictureElement[GCE],"
15236                 + "pictureInPictureEnabled[GCE],plugins[GCE],pointerLockElement[GCE],prepend(),prerendering[GCE],"
15237                 + "queryCommandEnabled(),queryCommandIndeterm(),queryCommandState(),queryCommandSupported(),"
15238                 + "queryCommandValue(),querySelector(),querySelectorAll(),readyState[GCE],referrer[GCE],"
15239                 + "releaseEvents(),replaceChildren(),requestStorageAccess(),requestStorageAccessFor(),"
15240                 + "rootElement[GCE],scripts[GCE],scrollingElement[GCE],startViewTransition(),styleSheets[GCE],"
15241                 + "timeline[GCE],title[GSCE],URL[GCE],visibilityState[GCE],vlinkColor[GSCE],wasDiscarded[GCE],"
15242                 + "webkitCancelFullScreen(),webkitCurrentFullScreenElement[GCE],webkitExitFullscreen(),"
15243                 + "webkitFullscreenElement[GCE],webkitFullscreenEnabled[GCE],webkitHidden[GCE],"
15244                 + "webkitIsFullScreen[GCE],webkitVisibilityState[GCE],write(),writeln(),xmlEncoding[GCE],"
15245                 + "xmlStandalone[GSCE],"
15246                 + "xmlVersion[GSCE]",
15247             FF = "activeElement[GCE],adoptedStyleSheets[GSCE],adoptNode(),alinkColor[GSCE],all[GCE],anchors[GCE],"
15248                 + "append(),applets[GCE],bgColor[GSCE],body[GSCE],captureEvents(),caretPositionFromPoint(),"
15249                 + "characterSet[GCE],charset[GCE],childElementCount[GCE],children[GCE],clear(),close(),"
15250                 + "compatMode[GCE],constructor(),contentType[GCE],cookie[GSCE],createAttribute(),"
15251                 + "createAttributeNS(),createCDATASection(),createComment(),createDocumentFragment(),"
15252                 + "createElement(),createElementNS(),createEvent(),createExpression(),createNodeIterator(),"
15253                 + "createNSResolver(),createProcessingInstruction(),createRange(),createTextNode(),"
15254                 + "createTreeWalker(),currentScript[GCE],defaultView[GCE],designMode[GSCE],dir[GSCE],doctype[GCE],"
15255                 + "documentElement[GCE],documentURI[GCE],domain[GSCE],elementFromPoint(),elementsFromPoint(),"
15256                 + "embeds[GCE],enableStyleSheetsForSet(),evaluate(),execCommand(),exitFullscreen(),"
15257                 + "exitPointerLock(),fgColor[GSCE],firstElementChild[GCE],fonts[GCE],forms[GCE],"
15258                 + "fragmentDirective[GCE],fullscreen[GSCE],fullscreenElement[GSCE],fullscreenEnabled[GSCE],"
15259                 + "getAnimations(),getElementById(),getElementsByClassName(),getElementsByName(),"
15260                 + "getElementsByTagName(),getElementsByTagNameNS(),getSelection(),hasFocus(),hasStorageAccess(),"
15261                 + "head[GCE],hidden[GCE],images[GCE],implementation[GCE],importNode(),inputEncoding[GCE],"
15262                 + "lastElementChild[GCE],lastModified[GCE],lastStyleSheetSet[GCE],linkColor[GSCE],links[GCE],"
15263                 + "mozCancelFullScreen(),mozFullScreen[GCE],mozFullScreenElement[GCE],mozFullScreenEnabled[GCE],"
15264                 + "mozSetImageElement(),onabort[GSCE],onafterscriptexecute[GSCE],onanimationcancel[GSCE],"
15265                 + "onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],"
15266                 + "onbeforeinput[GSCE],onbeforescriptexecute[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],"
15267                 + "oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
15268                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
15269                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
15270                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
15271                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
15272                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],onfullscreenchange[GSCE],onfullscreenerror[GSCE],"
15273                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
15274                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
15275                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
15276                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
15277                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
15278                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
15279                 + "onpointerlockchange[GSCE],onpointerlockerror[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
15280                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],"
15281                 + "onreadystatechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
15282                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
15283                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
15284                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
15285                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvisibilitychange[GSCE],onvolumechange[GSCE],"
15286                 + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
15287                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],open(),plugins[GCE],"
15288                 + "pointerLockElement[GCE],preferredStyleSheetSet[GCE],prepend(),queryCommandEnabled(),"
15289                 + "queryCommandIndeterm(),queryCommandState(),queryCommandSupported(),queryCommandValue(),"
15290                 + "querySelector(),querySelectorAll(),readyState[GCE],referrer[GCE],releaseCapture(),"
15291                 + "releaseEvents(),replaceChildren(),requestStorageAccess(),rootElement[GCE],scripts[GCE],"
15292                 + "scrollingElement[GCE],selectedStyleSheetSet[GSCE],styleSheets[GCE],styleSheetSets[GCE],"
15293                 + "timeline[GCE],title[GSCE],URL[GCE],visibilityState[GCE],vlinkColor[GSCE],write(),"
15294                 + "writeln()",
15295             FF_ESR = "activeElement[GCE],adoptedStyleSheets[GSCE],adoptNode(),alinkColor[GSCE],all[GCE],anchors[GCE],"
15296                 + "append(),applets[GCE],bgColor[GSCE],body[GSCE],captureEvents(),caretPositionFromPoint(),"
15297                 + "characterSet[GCE],charset[GCE],childElementCount[GCE],children[GCE],clear(),close(),"
15298                 + "compatMode[GCE],constructor(),contentType[GCE],cookie[GSCE],createAttribute(),"
15299                 + "createAttributeNS(),createCDATASection(),createComment(),createDocumentFragment(),"
15300                 + "createElement(),createElementNS(),createEvent(),createExpression(),createNodeIterator(),"
15301                 + "createNSResolver(),createProcessingInstruction(),createRange(),createTextNode(),"
15302                 + "createTreeWalker(),currentScript[GCE],defaultView[GCE],designMode[GSCE],dir[GSCE],doctype[GCE],"
15303                 + "documentElement[GCE],documentURI[GCE],domain[GSCE],elementFromPoint(),elementsFromPoint(),"
15304                 + "embeds[GCE],enableStyleSheetsForSet(),evaluate(),execCommand(),exitFullscreen(),"
15305                 + "exitPointerLock(),fgColor[GSCE],firstElementChild[GCE],fonts[GCE],forms[GCE],fullscreen[GSCE],"
15306                 + "fullscreenElement[GSCE],fullscreenEnabled[GSCE],getAnimations(),getElementById(),"
15307                 + "getElementsByClassName(),getElementsByName(),getElementsByTagName(),getElementsByTagNameNS(),"
15308                 + "getSelection(),hasFocus(),hasStorageAccess(),head[GCE],hidden[GCE],images[GCE],"
15309                 + "implementation[GCE],importNode(),inputEncoding[GCE],lastElementChild[GCE],lastModified[GCE],"
15310                 + "lastStyleSheetSet[GCE],linkColor[GSCE],links[GCE],mozCancelFullScreen(),mozFullScreen[GCE],"
15311                 + "mozFullScreenElement[GCE],mozFullScreenEnabled[GCE],mozSetImageElement(),onabort[GSCE],"
15312                 + "onafterscriptexecute[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],"
15313                 + "onanimationiteration[GSCE],onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],"
15314                 + "onbeforescriptexecute[GSCE],onbeforetoggle[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
15315                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextlost[GSCE],"
15316                 + "oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],"
15317                 + "ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
15318                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
15319                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
15320                 + "onfullscreenchange[GSCE],onfullscreenerror[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
15321                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
15322                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
15323                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
15324                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
15325                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
15326                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointerlockchange[GSCE],onpointerlockerror[GSCE],"
15327                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
15328                 + "onratechange[GSCE],onreadystatechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],"
15329                 + "onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
15330                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
15331                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
15332                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvisibilitychange[GSCE],onvolumechange[GSCE],"
15333                 + "onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
15334                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],open(),plugins[GCE],"
15335                 + "pointerLockElement[GCE],preferredStyleSheetSet[GCE],prepend(),queryCommandEnabled(),"
15336                 + "queryCommandIndeterm(),queryCommandState(),queryCommandSupported(),queryCommandValue(),"
15337                 + "querySelector(),querySelectorAll(),readyState[GCE],referrer[GCE],releaseCapture(),"
15338                 + "releaseEvents(),replaceChildren(),requestStorageAccess(),rootElement[GCE],scripts[GCE],"
15339                 + "scrollingElement[GCE],selectedStyleSheetSet[GSCE],styleSheets[GCE],styleSheetSets[GCE],"
15340                 + "timeline[GCE],title[GSCE],URL[GCE],visibilityState[GCE],vlinkColor[GSCE],write(),"
15341                 + "writeln()")
15342     @HtmlUnitNYI(CHROME = "TypeError",
15343             EDGE = "TypeError",
15344             FF_ESR = "TypeError",
15345             FF = "TypeError")
15346     public void document() throws Exception {
15347         testString("", "new Document()");
15348     }
15349 
15350     /**
15351      * Test {@link org.htmlunit.javascript.host.html.HTMLDocument}.
15352      *
15353      * @throws Exception if the test fails
15354      */
15355     @Test
15356     @Alerts(CHROME = "constructor()",
15357             EDGE = "constructor()",
15358             FF = "constructor()",
15359             FF_ESR = "constructor()")
15360     @HtmlUnitNYI(CHROME = "constructor(),dispatchEvent(),documentElement[GCE],getElementById(),"
15361                 + "open(),write(),writeln()",
15362             EDGE = "constructor(),dispatchEvent(),documentElement[GCE],getElementById(),"
15363                 + "open(),write(),writeln()",
15364             FF_ESR = "close(),constructor(),dispatchEvent(),documentElement[GCE],getElementById(),"
15365                 + "open(),write(),writeln()",
15366             FF = "close(),constructor(),dispatchEvent(),documentElement[GCE],getElementById(),"
15367                 + "open(),write(),writeln()")
15368     public void htmlDocument() throws Exception {
15369         testString("", "document");
15370     }
15371 
15372     /**
15373      * Test {@link org.htmlunit.javascript.host.dom.Document}.
15374      *
15375      * @throws Exception if the test fails
15376      */
15377     @Test
15378     @Alerts(CHROME = "constructor()",
15379             EDGE = "constructor()",
15380             FF = "constructor()",
15381             FF_ESR = "constructor()")
15382     @HtmlUnitNYI(CHROME = "constructor(),getElementsByTagName()",
15383             EDGE = "constructor(),getElementsByTagName()",
15384             FF_ESR = "constructor(),getElementsByTagName()",
15385             FF = "constructor(),getElementsByTagName()")
15386     public void xmlDocument() throws Exception {
15387         testString("", "xmlDocument");
15388     }
15389 
15390     /**
15391      * @throws Exception if the test fails
15392      */
15393     @Test
15394     @Alerts(CHROME = "attributeStyleMap[GCE],autofocus[GSCE],blur(),className[GCE],constructor(),dataset[GCE],focus(),"
15395                 + "nonce[GSCE],onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
15396                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],"
15397                 + "onbeforexrselect[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
15398                 + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncommand[GSCE],"
15399                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
15400                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
15401                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
15402                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
15403                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
15404                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
15405                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
15406                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
15407                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
15408                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
15409                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
15410                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
15411                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
15412                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
15413                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
15414                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
15415                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
15416                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
15417                 + "onwebkittransitionend[GSCE],onwheel[GSCE],ownerSVGElement[GCE],style[GSCE],tabIndex[GSCE],"
15418                 + "viewportElement[GCE]",
15419             EDGE = "attributeStyleMap[GCE],autofocus[GSCE],blur(),className[GCE],constructor(),dataset[GCE],focus(),"
15420                 + "nonce[GSCE],onabort[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],onanimationstart[GSCE],"
15421                 + "onauxclick[GSCE],onbeforeinput[GSCE],onbeforematch[GSCE],onbeforetoggle[GSCE],"
15422                 + "onbeforexrselect[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],"
15423                 + "onchange[GSCE],onclick[GSCE],onclose[GSCE],oncommand[GSCE],"
15424                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
15425                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
15426                 + "ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],"
15427                 + "ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
15428                 + "onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],"
15429                 + "onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],"
15430                 + "onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],"
15431                 + "onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],"
15432                 + "onmousewheel[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
15433                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
15434                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerrawupdate[GSCE],"
15435                 + "onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],onresize[GSCE],"
15436                 + "onscroll[GSCE],onscrollend[GSCE],onscrollsnapchange[GSCE],onscrollsnapchanging[GSCE],"
15437                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
15438                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
15439                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
15440                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
15441                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
15442                 + "onwebkittransitionend[GSCE],onwheel[GSCE],ownerSVGElement[GCE],style[GSCE],tabIndex[GSCE],"
15443                 + "viewportElement[GCE]",
15444             FF = "autofocus[GSCE],blur(),className[GCE],constructor(),dataset[GCE],focus(),id[GSCE],nonce[GSCE],"
15445                 + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
15446                 + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],"
15447                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
15448                 + "oncontentvisibilityautostatechange[GSCE],oncontextlost[GSCE],oncontextmenu[GSCE],"
15449                 + "oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],"
15450                 + "ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],ondragleave[GSCE],ondragover[GSCE],"
15451                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
15452                 + "onerror[GSCE],onfocus[GSCE],onformdata[GSCE],ongotpointercapture[GSCE],oninput[GSCE],"
15453                 + "oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],"
15454                 + "onloadedmetadata[GSCE],onloadstart[GSCE],onlostpointercapture[GSCE],onmousedown[GSCE],"
15455                 + "onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],"
15456                 + "onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],onpaste[GSCE],"
15457                 + "onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],onpointerdown[GSCE],"
15458                 + "onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],onpointerout[GSCE],"
15459                 + "onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],onreset[GSCE],"
15460                 + "onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onsecuritypolicyviolation[GSCE],onseeked[GSCE],"
15461                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],"
15462                 + "onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],"
15463                 + "ontransitioncancel[GSCE],ontransitionend[GSCE],ontransitionrun[GSCE],ontransitionstart[GSCE],"
15464                 + "onvolumechange[GSCE],onwaiting[GSCE],onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],"
15465                 + "onwebkitanimationstart[GSCE],onwebkittransitionend[GSCE],onwheel[GSCE],ownerSVGElement[GCE],"
15466                 + "style[GSCE],tabIndex[GSCE],"
15467                 + "viewportElement[GCE]",
15468             FF_ESR = "autofocus[GSCE],blur(),className[GCE],constructor(),dataset[GCE],focus(),id[GSCE],nonce[GSCE],"
15469                 + "onabort[GSCE],onanimationcancel[GSCE],onanimationend[GSCE],onanimationiteration[GSCE],"
15470                 + "onanimationstart[GSCE],onauxclick[GSCE],onbeforeinput[GSCE],onbeforetoggle[GSCE],onblur[GSCE],"
15471                 + "oncancel[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],"
15472                 + "oncontextlost[GSCE],oncontextmenu[GSCE],oncontextrestored[GSCE],oncopy[GSCE],oncuechange[GSCE],"
15473                 + "oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragexit[GSCE],"
15474                 + "ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],"
15475                 + "onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],onformdata[GSCE],"
15476                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
15477                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
15478                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
15479                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],"
15480                 + "onmozfullscreenerror[GSCE],onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],"
15481                 + "onpointercancel[GSCE],onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],"
15482                 + "onpointermove[GSCE],onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],"
15483                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
15484                 + "onsecuritypolicyviolation[GSCE],onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
15485                 + "onselectionchange[GSCE],onselectstart[GSCE],onslotchange[GSCE],onstalled[GSCE],onsubmit[GSCE],"
15486                 + "onsuspend[GSCE],ontimeupdate[GSCE],ontoggle[GSCE],ontransitioncancel[GSCE],ontransitionend[GSCE],"
15487                 + "ontransitionrun[GSCE],ontransitionstart[GSCE],onvolumechange[GSCE],onwaiting[GSCE],"
15488                 + "onwebkitanimationend[GSCE],onwebkitanimationiteration[GSCE],onwebkitanimationstart[GSCE],"
15489                 + "onwebkittransitionend[GSCE],onwheel[GSCE],ownerSVGElement[GCE],style[GSCE],tabIndex[GSCE],"
15490                 + "viewportElement[GCE]")
15491     @HtmlUnitNYI(CHROME = "constructor(),onabort[GSCE],onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
15492                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
15493                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
15494                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
15495                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
15496                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
15497                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
15498                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
15499                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
15500                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],"
15501                 + "onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],"
15502                 + "onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],"
15503                 + "onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
15504                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
15505                 + "onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],"
15506                 + "ontimeupdate[GSCE],ontoggle[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],style[GSCE]",
15507             EDGE = "constructor(),onabort[GSCE],onauxclick[GSCE],onblur[GSCE],oncancel[GSCE],oncanplay[GSCE],"
15508                 + "oncanplaythrough[GSCE],onchange[GSCE],onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],"
15509                 + "oncopy[GSCE],oncuechange[GSCE],oncut[GSCE],ondblclick[GSCE],ondrag[GSCE],ondragend[GSCE],"
15510                 + "ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],ondragstart[GSCE],ondrop[GSCE],"
15511                 + "ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],onerror[GSCE],onfocus[GSCE],"
15512                 + "ongotpointercapture[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
15513                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
15514                 + "onlostpointercapture[GSCE],onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],"
15515                 + "onmousemove[GSCE],onmouseout[GSCE],onmouseover[GSCE],onmouseup[GSCE],onmousewheel[GSCE],"
15516                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onpointercancel[GSCE],"
15517                 + "onpointerdown[GSCE],onpointerenter[GSCE],onpointerleave[GSCE],onpointermove[GSCE],"
15518                 + "onpointerout[GSCE],onpointerover[GSCE],onpointerup[GSCE],onprogress[GSCE],onratechange[GSCE],"
15519                 + "onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],"
15520                 + "onseeked[GSCE],onseeking[GSCE],onselect[GSCE],"
15521                 + "onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],onsubmit[GSCE],onsuspend[GSCE],"
15522                 + "ontimeupdate[GSCE],ontoggle[GSCE],onvolumechange[GSCE],onwaiting[GSCE],onwheel[GSCE],style[GSCE]",
15523             FF_ESR = "constructor(),onabort[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
15524                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncut[GSCE],ondblclick[GSCE],"
15525                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
15526                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
15527                 + "onerror[GSCE],onfocus[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
15528                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
15529                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
15530                 + "onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],"
15531                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onprogress[GSCE],"
15532                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onseeked[GSCE],"
15533                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],"
15534                 + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],onvolumechange[GSCE],"
15535                 + "onwaiting[GSCE],style[GSCE]",
15536             FF = "constructor(),onabort[GSCE],onblur[GSCE],oncanplay[GSCE],oncanplaythrough[GSCE],onchange[GSCE],"
15537                 + "onclick[GSCE],onclose[GSCE],oncontextmenu[GSCE],oncopy[GSCE],oncut[GSCE],ondblclick[GSCE],"
15538                 + "ondrag[GSCE],ondragend[GSCE],ondragenter[GSCE],ondragleave[GSCE],ondragover[GSCE],"
15539                 + "ondragstart[GSCE],ondrop[GSCE],ondurationchange[GSCE],onemptied[GSCE],onended[GSCE],"
15540                 + "onerror[GSCE],onfocus[GSCE],oninput[GSCE],oninvalid[GSCE],onkeydown[GSCE],onkeypress[GSCE],"
15541                 + "onkeyup[GSCE],onload[GSCE],onloadeddata[GSCE],onloadedmetadata[GSCE],onloadstart[GSCE],"
15542                 + "onmousedown[GSCE],onmouseenter[GSCE],onmouseleave[GSCE],onmousemove[GSCE],onmouseout[GSCE],"
15543                 + "onmouseover[GSCE],onmouseup[GSCE],onmozfullscreenchange[GSCE],onmozfullscreenerror[GSCE],"
15544                 + "onpaste[GSCE],onpause[GSCE],onplay[GSCE],onplaying[GSCE],onprogress[GSCE],"
15545                 + "onratechange[GSCE],onreset[GSCE],onresize[GSCE],onscroll[GSCE],onscrollend[GSCE],onseeked[GSCE],"
15546                 + "onseeking[GSCE],onselect[GSCE],onselectionchange[GSCE],onselectstart[GSCE],onstalled[GSCE],"
15547                 + "onsubmit[GSCE],onsuspend[GSCE],ontimeupdate[GSCE],onvolumechange[GSCE],"
15548                 + "onwaiting[GSCE],style[GSCE]")
15549     public void svgElement() throws Exception {
15550         testString("", "svg");
15551     }
15552 
15553     /**
15554      * @throws Exception if the test fails
15555      */
15556     @Test
15557     @Alerts(CHROME = "constructor(),localName[GCE],name[GCE],namespaceURI[GCE],ownerElement[GCE],prefix[GCE],"
15558                 + "specified[GCE],"
15559                 + "value[GSCE]",
15560             EDGE = "constructor(),localName[GCE],name[GCE],namespaceURI[GCE],ownerElement[GCE],prefix[GCE],"
15561                 + "specified[GCE],"
15562                 + "value[GSCE]",
15563             FF = "constructor(),localName[GCE],name[GCE],namespaceURI[GCE],ownerElement[GCE],prefix[GCE],"
15564                 + "specified[GCE],"
15565                 + "value[GSCE]",
15566             FF_ESR = "constructor(),localName[GCE],name[GCE],namespaceURI[GCE],ownerElement[GCE],prefix[GCE],"
15567                 + "specified[GCE],"
15568                 + "value[GSCE]")
15569     public void nodeAndAttr() throws Exception {
15570         testString("", "document.createAttribute('some_attrib')");
15571     }
15572 
15573     /**
15574      * @throws Exception if the test fails
15575      */
15576     @Test
15577     @Alerts(CHROME = "cloneContents(),cloneRange(),collapse(),commonAncestorContainer[GCE],compareBoundaryPoints(),"
15578                 + "comparePoint(),constructor(),createContextualFragment(),deleteContents(),detach(),END_TO_END[E],"
15579                 + "END_TO_START[E],expand(),extractContents(),getBoundingClientRect(),getClientRects(),insertNode(),"
15580                 + "intersectsNode(),isPointInRange(),selectNode(),selectNodeContents(),setEnd(),setEndAfter(),"
15581                 + "setEndBefore(),setStart(),setStartAfter(),setStartBefore(),START_TO_END[E],START_TO_START[E],"
15582                 + "surroundContents(),"
15583                 + "toString()",
15584             EDGE = "cloneContents(),cloneRange(),collapse(),commonAncestorContainer[GCE],compareBoundaryPoints(),"
15585                 + "comparePoint(),constructor(),createContextualFragment(),deleteContents(),detach(),END_TO_END[E],"
15586                 + "END_TO_START[E],expand(),extractContents(),getBoundingClientRect(),getClientRects(),insertNode(),"
15587                 + "intersectsNode(),isPointInRange(),selectNode(),selectNodeContents(),setEnd(),setEndAfter(),"
15588                 + "setEndBefore(),setStart(),setStartAfter(),setStartBefore(),START_TO_END[E],START_TO_START[E],"
15589                 + "surroundContents(),"
15590                 + "toString()",
15591             FF = "cloneContents(),cloneRange(),collapse(),commonAncestorContainer[GCE],compareBoundaryPoints(),"
15592                 + "comparePoint(),constructor(),createContextualFragment(),deleteContents(),detach(),END_TO_END[E],"
15593                 + "END_TO_START[E],extractContents(),getBoundingClientRect(),getClientRects(),insertNode(),"
15594                 + "intersectsNode(),isPointInRange(),selectNode(),selectNodeContents(),setEnd(),setEndAfter(),"
15595                 + "setEndBefore(),setStart(),setStartAfter(),setStartBefore(),START_TO_END[E],START_TO_START[E],"
15596                 + "surroundContents(),"
15597                 + "toString()",
15598             FF_ESR = "cloneContents(),cloneRange(),collapse(),commonAncestorContainer[GCE],compareBoundaryPoints(),"
15599                 + "comparePoint(),constructor(),createContextualFragment(),deleteContents(),detach(),END_TO_END[E],"
15600                 + "END_TO_START[E],extractContents(),getBoundingClientRect(),getClientRects(),insertNode(),"
15601                 + "intersectsNode(),isPointInRange(),selectNode(),selectNodeContents(),setEnd(),setEndAfter(),"
15602                 + "setEndBefore(),setStart(),setStartAfter(),setStartBefore(),START_TO_END[E],START_TO_START[E],"
15603                 + "surroundContents(),"
15604                 + "toString()")
15605     @HtmlUnitNYI(CHROME = "cloneContents(),cloneRange(),collapse(),commonAncestorContainer[GCE],"
15606                 + "compareBoundaryPoints(),constructor(),createContextualFragment(),deleteContents(),detach(),"
15607                 + "END_TO_END[E],END_TO_START[E],extractContents(),getBoundingClientRect(),"
15608                 + "getClientRects(),insertNode(),selectNode(),selectNodeContents(),setEnd(),setEndAfter(),"
15609                 + "setEndBefore(),setStart(),setStartAfter(),setStartBefore(),START_TO_END[E],START_TO_START[E],"
15610                 + "surroundContents(),toString()",
15611             EDGE = "cloneContents(),cloneRange(),collapse(),commonAncestorContainer[GCE],"
15612                 + "compareBoundaryPoints(),constructor(),createContextualFragment(),deleteContents(),detach(),"
15613                 + "END_TO_END[E],END_TO_START[E],extractContents(),getBoundingClientRect(),"
15614                 + "getClientRects(),insertNode(),selectNode(),selectNodeContents(),setEnd(),setEndAfter(),"
15615                 + "setEndBefore(),setStart(),setStartAfter(),setStartBefore(),START_TO_END[E],START_TO_START[E],"
15616                 + "surroundContents(),toString()",
15617             FF_ESR = "cloneContents(),cloneRange(),collapse(),commonAncestorContainer[GCE],"
15618                 + "compareBoundaryPoints(),constructor(),createContextualFragment(),deleteContents(),"
15619                 + "detach(),END_TO_END[E],END_TO_START[E],extractContents(),"
15620                 + "getBoundingClientRect(),getClientRects(),insertNode(),selectNode(),selectNodeContents(),"
15621                 + "setEnd(),setEndAfter(),setEndBefore(),setStart(),setStartAfter(),setStartBefore(),"
15622                 + "START_TO_END[E],START_TO_START[E],surroundContents(),toString()",
15623             FF = "cloneContents(),cloneRange(),collapse(),commonAncestorContainer[GCE],"
15624                 + "compareBoundaryPoints(),constructor(),createContextualFragment(),deleteContents(),"
15625                 + "detach(),END_TO_END[E],END_TO_START[E],extractContents(),"
15626                 + "getBoundingClientRect(),getClientRects(),insertNode(),selectNode(),selectNodeContents(),"
15627                 + "setEnd(),setEndAfter(),setEndBefore(),setStart(),setStartAfter(),setStartBefore(),"
15628                 + "START_TO_END[E],START_TO_START[E],surroundContents(),toString()")
15629     public void range() throws Exception {
15630         testString("", "document.createRange()");
15631     }
15632 
15633     /**
15634      * @throws Exception if the test fails
15635      */
15636     @Test
15637     @Alerts(CHROME = "append(),childElementCount[GCE],children[GCE],constructor(),firstElementChild[GCE],"
15638                 + "getElementById(),lastElementChild[GCE],moveBefore(),prepend(),querySelector(),querySelectorAll(),"
15639                 + "replaceChildren()",
15640             EDGE = "append(),childElementCount[GCE],children[GCE],constructor(),firstElementChild[GCE],"
15641                 + "getElementById(),lastElementChild[GCE],moveBefore(),prepend(),querySelector(),querySelectorAll(),"
15642                 + "replaceChildren()",
15643             FF = "append(),childElementCount[GCE],children[GCE],constructor(),firstElementChild[GCE],"
15644                 + "getElementById(),lastElementChild[GCE],prepend(),querySelector(),querySelectorAll(),"
15645                 + "replaceChildren()",
15646             FF_ESR = "append(),childElementCount[GCE],children[GCE],constructor(),firstElementChild[GCE],"
15647                 + "getElementById(),lastElementChild[GCE],prepend(),querySelector(),querySelectorAll(),"
15648                 + "replaceChildren()")
15649     @HtmlUnitNYI(CHROME = "append(),childElementCount[GCE],children[GCE],constructor(),firstElementChild[GCE],"
15650                 + "getElementById(),lastElementChild[GCE],prepend(),querySelector(),querySelectorAll(),"
15651                 + "replaceChildren()",
15652             EDGE = "append(),childElementCount[GCE],children[GCE],constructor(),firstElementChild[GCE],"
15653                 + "getElementById(),lastElementChild[GCE],prepend(),querySelector(),querySelectorAll(),"
15654                 + "replaceChildren()")
15655     public void documentFragment() throws Exception {
15656         testString("", "document.createDocumentFragment()");
15657     }
15658 
15659     /**
15660      * @throws Exception if the test fails
15661      */
15662     @Test
15663     @Alerts(CHROME = "baseLatency[GCE],close(),constructor(),createMediaElementSource(),createMediaStreamDestination(),"
15664                 + "createMediaStreamSource(),getOutputTimestamp(),onerror[GSCE],onsinkchange[GSCE],"
15665                 + "outputLatency[GCE],resume(),setSinkId(),sinkId[GCE],"
15666                 + "suspend()",
15667             EDGE = "baseLatency[GCE],close(),constructor(),createMediaElementSource(),createMediaStreamDestination(),"
15668                 + "createMediaStreamSource(),getOutputTimestamp(),onerror[GSCE],onsinkchange[GSCE],"
15669                 + "outputLatency[GCE],resume(),setSinkId(),sinkId[GCE],"
15670                 + "suspend()",
15671             FF = "baseLatency[GCE],close(),constructor(),createMediaElementSource(),createMediaStreamDestination(),"
15672                 + "createMediaStreamSource(),createMediaStreamTrackSource(),getOutputTimestamp(),outputLatency[GCE],"
15673                 + "suspend()",
15674             FF_ESR = "baseLatency[GCE],close(),constructor(),createMediaElementSource(),createMediaStreamDestination(),"
15675                 + "createMediaStreamSource(),createMediaStreamTrackSource(),getOutputTimestamp(),outputLatency[GCE],"
15676                 + "suspend()")
15677     @HtmlUnitNYI(CHROME = "constructor()",
15678             EDGE = "constructor()",
15679             FF_ESR = "constructor()",
15680             FF = "constructor()")
15681     public void audioContext() throws Exception {
15682         testString("", "new AudioContext()");
15683     }
15684 
15685     /**
15686      * @throws Exception if the test fails
15687      */
15688     @Test
15689     @Alerts(CHROME = "constructor(),length[GCE],oncomplete[GSCE],resume(),startRendering(),suspend()",
15690             EDGE = "constructor(),length[GCE],oncomplete[GSCE],resume(),startRendering(),suspend()",
15691             FF = "constructor(),length[GCE],oncomplete[GSCE],startRendering()",
15692             FF_ESR = "constructor(),length[GCE],oncomplete[GSCE],startRendering()")
15693     @HtmlUnitNYI(CHROME = "constructor(),startRendering()",
15694             EDGE = "constructor(),startRendering()",
15695             FF_ESR = "constructor(),startRendering()",
15696             FF = "constructor(),startRendering()")
15697     public void offlineAudioContext() throws Exception {
15698         testString("", "new OfflineAudioContext({length: 44100 * 1, sampleRate: 44100})");
15699     }
15700 
15701     /**
15702      * @throws Exception if the test fails
15703      */
15704     @Test
15705     @Alerts(CHROME = "automationRate[GSCE],cancelAndHoldAtTime(),cancelScheduledValues(),constructor(),"
15706                 + "defaultValue[GCE],exponentialRampToValueAtTime(),linearRampToValueAtTime(),maxValue[GCE],"
15707                 + "minValue[GCE],setTargetAtTime(),setValueAtTime(),setValueCurveAtTime(),"
15708                 + "value[GSCE]",
15709             EDGE = "automationRate[GSCE],cancelAndHoldAtTime(),cancelScheduledValues(),constructor(),"
15710                 + "defaultValue[GCE],exponentialRampToValueAtTime(),linearRampToValueAtTime(),maxValue[GCE],"
15711                 + "minValue[GCE],setTargetAtTime(),setValueAtTime(),setValueCurveAtTime(),"
15712                 + "value[GSCE]",
15713             FF = "cancelScheduledValues(),constructor(),defaultValue[GCE],exponentialRampToValueAtTime(),"
15714                 + "linearRampToValueAtTime(),maxValue[GCE],minValue[GCE],setTargetAtTime(),setValueAtTime(),"
15715                 + "setValueCurveAtTime(),"
15716                 + "value[GSCE]",
15717             FF_ESR = "cancelScheduledValues(),constructor(),defaultValue[GCE],exponentialRampToValueAtTime(),"
15718                 + "linearRampToValueAtTime(),maxValue[GCE],minValue[GCE],setTargetAtTime(),setValueAtTime(),"
15719                 + "setValueCurveAtTime(),"
15720                 + "value[GSCE]")
15721     @HtmlUnitNYI(CHROME = "constructor(),defaultValue[GCE],maxValue[GCE],minValue[GCE],value[GSCE]",
15722             EDGE = "constructor(),defaultValue[GCE],maxValue[GCE],minValue[GCE],value[GSCE]",
15723             FF_ESR = "constructor(),defaultValue[GCE],maxValue[GCE],minValue[GCE],value[GSCE]",
15724             FF = "constructor(),defaultValue[GCE],maxValue[GCE],minValue[GCE],value[GSCE]")
15725     public void audioParam() throws Exception {
15726         testString("var audioCtx = new AudioContext(); var gainNode = new GainNode(audioCtx);", "gainNode.gain");
15727     }
15728 
15729     /**
15730      * @throws Exception if the test fails
15731      */
15732     @Test
15733     @Alerts(CHROME = "constructor(),gain[GCE]",
15734             EDGE = "constructor(),gain[GCE]",
15735             FF = "constructor(),gain[GCE]",
15736             FF_ESR = "constructor(),gain[GCE]")
15737     public void gainNode() throws Exception {
15738         testString("var audioCtx = new AudioContext();", "new GainNode(audioCtx)");
15739     }
15740 
15741     /**
15742      * @throws Exception if the test fails
15743      */
15744     @Test
15745     @Alerts(CHROME = "constructor(),returnValue[GSCE]",
15746             EDGE = "constructor(),returnValue[GSCE]",
15747             FF = "constructor(),returnValue[GSCE]",
15748             FF_ESR = "constructor(),returnValue[GSCE]")
15749     public void beforeUnloadEvent() throws Exception {
15750         testString("", "document.createEvent('BeforeUnloadEvent')");
15751     }
15752 
15753     /**
15754      * @throws Exception if the test fails
15755      */
15756     @Test
15757     @Alerts(CHROME = "code[GCE],constructor(),reason[GCE],wasClean[GCE]",
15758             EDGE = "code[GCE],constructor(),reason[GCE],wasClean[GCE]",
15759             FF = "code[GCE],constructor(),reason[GCE],wasClean[GCE]",
15760             FF_ESR = "code[GCE],constructor(),reason[GCE],wasClean[GCE]")
15761     public void closeEvent() throws Exception {
15762         testString("", "new CloseEvent('type-close')");
15763     }
15764 
15765     /**
15766      * @throws Exception if the test fails
15767      */
15768     @Test
15769     @Alerts(CHROME = "constructor(),data[GCE],timecode[GCE]",
15770             EDGE = "constructor(),data[GCE],timecode[GCE]",
15771             FF = "constructor(),data[GCE]",
15772             FF_ESR = "constructor(),data[GCE]")
15773     @HtmlUnitNYI(CHROME = "constructor(),data[GCE]",
15774             EDGE = "constructor(),data[GCE]")
15775     public void blobEvent() throws Exception {
15776         testString("var debug = {hello: 'world'};"
15777                     + "var blob = new Blob([JSON.stringify(debug, null, 2)], {type : 'application/json'});",
15778                     "new BlobEvent('blob', { 'data': blob })");
15779     }
15780 
15781     /**
15782      * Test {@link org.htmlunit.javascript.host.event.TouchEvent}.
15783      *
15784      * @throws Exception if the test fails
15785      */
15786     @Test
15787     @Alerts(CHROME = "altKey[GCE],changedTouches[GCE],constructor(),ctrlKey[GCE],metaKey[GCE],shiftKey[GCE],"
15788                 + "targetTouches[GCE],"
15789                 + "touches[GCE]",
15790             EDGE = "altKey[GCE],changedTouches[GCE],constructor(),ctrlKey[GCE],metaKey[GCE],shiftKey[GCE],"
15791                 + "targetTouches[GCE],"
15792                 + "touches[GCE]",
15793             FF = "ReferenceError",
15794             FF_ESR = "ReferenceError")
15795     @HtmlUnitNYI(CHROME = "constructor()",
15796             EDGE = "constructor()")
15797     public void touchEvent() throws Exception {
15798         testString("", "new TouchEvent('touch')");
15799     }
15800 
15801     /**
15802      * Test {@link org.htmlunit.javascript.host.event.DeviceMotionEvent}.
15803      *
15804      * @throws Exception if the test fails
15805      */
15806     @Test
15807     @Alerts(CHROME = "acceleration[GCE],accelerationIncludingGravity[GCE],constructor(),interval[GCE],"
15808                 + "rotationRate[GCE]",
15809             EDGE = "acceleration[GCE],accelerationIncludingGravity[GCE],constructor(),interval[GCE],"
15810                 + "rotationRate[GCE]",
15811             FF = "acceleration[GCE],accelerationIncludingGravity[GCE],constructor(),initDeviceMotionEvent(),"
15812                 + "interval[GCE],"
15813                 + "rotationRate[GCE]",
15814             FF_ESR = "acceleration[GCE],accelerationIncludingGravity[GCE],constructor(),initDeviceMotionEvent(),"
15815                 + "interval[GCE],"
15816                 + "rotationRate[GCE]")
15817     @HtmlUnitNYI(CHROME = "constructor()",
15818             EDGE = "constructor()",
15819             FF = "constructor()",
15820             FF_ESR = "constructor()")
15821     public void deviceMotionEvent() throws Exception {
15822         testString("", "new DeviceMotionEvent('motion')");
15823     }
15824 
15825     /**
15826      * Test {@link org.htmlunit.javascript.host.event.ErrorEvent}.
15827      *
15828      * @throws Exception if the test fails
15829      */
15830     @Test
15831     @Alerts(CHROME = "colno[GCE],constructor(),error[GCE],filename[GCE],lineno[GCE],message[GCE]",
15832             EDGE = "colno[GCE],constructor(),error[GCE],filename[GCE],lineno[GCE],message[GCE]",
15833             FF = "colno[GCE],constructor(),error[GCE],filename[GCE],lineno[GCE],message[GCE]",
15834             FF_ESR = "colno[GCE],constructor(),error[GCE],filename[GCE],lineno[GCE],message[GCE]")
15835     @HtmlUnitNYI(CHROME = "constructor()",
15836             EDGE = "constructor()",
15837             FF_ESR = "constructor()",
15838             FF = "constructor()")
15839     public void errorEvent() throws Exception {
15840         testString("", "new ErrorEvent('error')");
15841     }
15842 
15843     /**
15844      * Test {@link org.htmlunit.javascript.host.event.GamepadEvent}.
15845      *
15846      * @throws Exception if the test fails
15847      */
15848     @Test
15849     @Alerts(CHROME = "constructor(),gamepad[GCE]",
15850             EDGE = "constructor(),gamepad[GCE]",
15851             FF = "constructor(),gamepad[GCE]",
15852             FF_ESR = "constructor(),gamepad[GCE]")
15853     @HtmlUnitNYI(CHROME = "constructor()",
15854             EDGE = "constructor()",
15855             FF_ESR = "constructor()",
15856             FF = "constructor()")
15857     public void gamepadEvent() throws Exception {
15858         testString("", "new GamepadEvent('gamepad')");
15859     }
15860 
15861     /**
15862      * Test {@link org.htmlunit.javascript.host.event.MutationEvent}.
15863      *
15864      * @throws Exception if the test fails
15865      */
15866     @Test
15867     @Alerts(CHROME = "NotSupportedError/DOMException",
15868             EDGE = "NotSupportedError/DOMException",
15869             FF = "ADDITION[E],attrChange[GCE],attrName[GCE],constructor(),initMutationEvent(),MODIFICATION[E],"
15870                 + "newValue[GCE],prevValue[GCE],relatedNode[GCE],"
15871                 + "REMOVAL[E]",
15872             FF_ESR = "ADDITION[E],attrChange[GCE],attrName[GCE],constructor(),initMutationEvent(),MODIFICATION[E],"
15873                 + "newValue[GCE],prevValue[GCE],relatedNode[GCE],"
15874                 + "REMOVAL[E]")
15875     @HtmlUnitNYI(FF_ESR = "ADDITION[E],constructor(),MODIFICATION[E],REMOVAL[E]",
15876             FF = "ADDITION[E],constructor(),MODIFICATION[E],REMOVAL[E]")
15877     public void mutationEvent() throws Exception {
15878         testString("", "document.createEvent('MutationEvent')");
15879     }
15880 
15881     /**
15882      * Test {@link org.htmlunit.javascript.host.event.OfflineAudioCompletionEvent}.
15883      *
15884      * @throws Exception if the test fails
15885      */
15886     @Test
15887     @Alerts("NotSupportedError/DOMException")
15888     public void offlineAudioCompletionEvent() throws Exception {
15889         testString("", "document.createEvent('OfflineAudioCompletionEvent')");
15890     }
15891 
15892     /**
15893      * @throws Exception if the test fails
15894      */
15895     @Test
15896     @Alerts(CHROME = "constructor(),persisted[GCE]",
15897             EDGE = "constructor(),persisted[GCE]",
15898             FF = "constructor(),persisted[GCE]",
15899             FF_ESR = "constructor(),persisted[GCE]")
15900     @HtmlUnitNYI(CHROME = "constructor()",
15901             EDGE = "constructor()",
15902             FF = "constructor()",
15903             FF_ESR = "constructor()")
15904     public void pageTransitionEvent() throws Exception {
15905         testString("", "new PageTransitionEvent('transition')");
15906     }
15907 
15908     /**
15909      * Test {@link org.htmlunit.javascript.host.media.SourceBufferList}.
15910      *
15911      * @throws Exception if the test fails
15912      */
15913     @Test
15914     @Alerts(CHROME = "constructor(),length[GCE],onaddsourcebuffer[GSCE],onremovesourcebuffer[GSCE]",
15915             EDGE = "constructor(),length[GCE],onaddsourcebuffer[GSCE],onremovesourcebuffer[GSCE]",
15916             FF = "constructor(),length[GCE],onaddsourcebuffer[GSCE],onremovesourcebuffer[GSCE]",
15917             FF_ESR = "constructor(),length[GCE],onaddsourcebuffer[GSCE],onremovesourcebuffer[GSCE]")
15918     @HtmlUnitNYI(CHROME = "TypeError",
15919             EDGE = "TypeError",
15920             FF = "TypeError",
15921             FF_ESR = "TypeError")
15922     public void sourceBufferList() throws Exception {
15923         testString("var mediaSource = new MediaSource;", "mediaSource.sourceBuffers");
15924     }
15925 
15926     /**
15927      * Test {@link HTMLCollection}.
15928      *
15929      * @throws Exception if the test fails
15930      */
15931     @Test
15932     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem()",
15933             EDGE = "constructor(),item(),length[GCE],namedItem()",
15934             FF = "constructor(),item(),length[GCE],namedItem()",
15935             FF_ESR = "constructor(),item(),length[GCE],namedItem()")
15936     public void htmlCollection() throws Exception {
15937         testString("", "document.getElementsByTagName('div')");
15938     }
15939 
15940     /**
15941      * Test {@link HTMLCollection}.
15942      *
15943      * @throws Exception if the test fails
15944      */
15945     @Test
15946     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem()",
15947             EDGE = "constructor(),item(),length[GCE],namedItem()",
15948             FF = "constructor(),item(),length[GCE],namedItem()",
15949             FF_ESR = "constructor(),item(),length[GCE],namedItem()")
15950     public void htmlCollectionDocumentAnchors() throws Exception {
15951         testString("", "document.anchors");
15952     }
15953 
15954     /**
15955      * Test {@link HTMLCollection}.
15956      *
15957      * @throws Exception if the test fails
15958      */
15959     @Test
15960     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem()",
15961             EDGE = "constructor(),item(),length[GCE],namedItem()",
15962             FF = "constructor(),item(),length[GCE],namedItem()",
15963             FF_ESR = "constructor(),item(),length[GCE],namedItem()")
15964     public void htmlCollectionDocumentApplets() throws Exception {
15965         testString("", "document.applets");
15966     }
15967 
15968     /**
15969      * Test {@link HTMLCollection}.
15970      *
15971      * @throws Exception if the test fails
15972      */
15973     @Test
15974     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem()",
15975             EDGE = "constructor(),item(),length[GCE],namedItem()",
15976             FF = "constructor(),item(),length[GCE],namedItem()",
15977             FF_ESR = "constructor(),item(),length[GCE],namedItem()")
15978     public void htmlCollectionDocumentEmbeds() throws Exception {
15979         testString("", "document.embeds");
15980     }
15981 
15982     /**
15983      * Test {@link HTMLCollection}.
15984      *
15985      * @throws Exception if the test fails
15986      */
15987     @Test
15988     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem()",
15989             EDGE = "constructor(),item(),length[GCE],namedItem()",
15990             FF = "constructor(),item(),length[GCE],namedItem()",
15991             FF_ESR = "constructor(),item(),length[GCE],namedItem()")
15992     public void htmlCollectionDocumentForms() throws Exception {
15993         testString("", "document.forms");
15994     }
15995 
15996     /**
15997      * Test {@link HTMLCollection}.
15998      *
15999      * @throws Exception if the test fails
16000      */
16001     @Test
16002     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem()",
16003             EDGE = "constructor(),item(),length[GCE],namedItem()",
16004             FF = "constructor(),item(),length[GCE],namedItem()",
16005             FF_ESR = "constructor(),item(),length[GCE],namedItem()")
16006     public void htmlCollectionDocumentImages() throws Exception {
16007         testString("", "document.images");
16008     }
16009 
16010     /**
16011      * Test {@link HTMLCollection}.
16012      *
16013      * @throws Exception if the test fails
16014      */
16015     @Test
16016     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem()",
16017             EDGE = "constructor(),item(),length[GCE],namedItem()",
16018             FF = "constructor(),item(),length[GCE],namedItem()",
16019             FF_ESR = "constructor(),item(),length[GCE],namedItem()")
16020     public void htmlCollectionDocumentLinks() throws Exception {
16021         testString("", "document.links");
16022     }
16023 
16024     /**
16025      * Test {@link HTMLCollection}.
16026      *
16027      * @throws Exception if the test fails
16028      */
16029     @Test
16030     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem()",
16031             EDGE = "constructor(),item(),length[GCE],namedItem()",
16032             FF = "constructor(),item(),length[GCE],namedItem()",
16033             FF_ESR = "constructor(),item(),length[GCE],namedItem()")
16034     public void htmlCollectionDocumentScripts() throws Exception {
16035         testString("", "document.scripts");
16036     }
16037 
16038     /**
16039      * Test {@link NodeList}.
16040      *
16041      * @throws Exception if the test fails
16042      */
16043     @Test
16044     @Alerts(CHROME = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()",
16045             EDGE = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()",
16046             FF = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()",
16047             FF_ESR = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()")
16048     public void nodeListElementById() throws Exception {
16049         testString("", "document.getElementById('myLog').childNodes");
16050     }
16051 
16052     /**
16053      * Test {@link NodeList}.
16054      *
16055      * @throws Exception if the test fails
16056      */
16057     @Test
16058     @Alerts(CHROME = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()",
16059             EDGE = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()",
16060             FF = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()",
16061             FF_ESR = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()")
16062     public void nodeListElementsByName() throws Exception {
16063         testString("", "document.getElementsByName('myLog')");
16064     }
16065 
16066     /**
16067      * Test {@link NodeList}.
16068      *
16069      * @throws Exception if the test fails
16070      */
16071     @Test
16072     @Alerts(CHROME = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()",
16073             EDGE = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()",
16074             FF = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()",
16075             FF_ESR = "constructor(),entries(),forEach(),item(),keys(),length[GCE],values()")
16076     public void nodeListButtonLabels() throws Exception {
16077         testString("var button = document.createElement('button');", "button.labels");
16078     }
16079 
16080     /**
16081      * Test {@link ComputedCSSStyleDeclaration}.
16082      *
16083      * @throws Exception if the test fails
16084      */
16085     @Test
16086     @Alerts(CHROME = "constructor(),cssFloat[GSCE],cssText[GSCE],getPropertyPriority(),getPropertyValue(),item(),"
16087                 + "length[GCE],parentRule[GCE],removeProperty(),"
16088                 + "setProperty()",
16089             EDGE = "constructor(),cssFloat[GSCE],cssText[GSCE],getPropertyPriority(),getPropertyValue(),item(),"
16090                 + "length[GCE],parentRule[GCE],removeProperty(),"
16091                 + "setProperty()",
16092             FF = "-moz-animation-delay[GSCE],-moz-animation-direction[GSCE],-moz-animation-duration[GSCE],"
16093                 + "-moz-animation-fill-mode[GSCE],-moz-animation-iteration-count[GSCE],-moz-animation-name[GSCE],"
16094                 + "-moz-animation-play-state[GSCE],-moz-animation-timing-function[GSCE],-moz-animation[GSCE],"
16095                 + "-moz-appearance[GSCE],-moz-backface-visibility[GSCE],-moz-border-end-color[GSCE],"
16096                 + "-moz-border-end-style[GSCE],-moz-border-end-width[GSCE],-moz-border-end[GSCE],"
16097                 + "-moz-border-image[GSCE],-moz-border-start-color[GSCE],-moz-border-start-style[GSCE],"
16098                 + "-moz-border-start-width[GSCE],-moz-border-start[GSCE],-moz-box-align[GSCE],"
16099                 + "-moz-box-direction[GSCE],-moz-box-flex[GSCE],-moz-box-ordinal-group[GSCE],-moz-box-orient[GSCE],"
16100                 + "-moz-box-pack[GSCE],-moz-box-sizing[GSCE],-moz-float-edge[GSCE],-moz-font-feature-settings[GSCE],"
16101                 + "-moz-font-language-override[GSCE],-moz-force-broken-image-icon[GSCE],-moz-hyphens[GSCE],"
16102                 + "-moz-margin-end[GSCE],-moz-margin-start[GSCE],-moz-orient[GSCE],-moz-padding-end[GSCE],"
16103                 + "-moz-padding-start[GSCE],-moz-perspective-origin[GSCE],-moz-perspective[GSCE],"
16104                 + "-moz-tab-size[GSCE],-moz-text-size-adjust[GSCE],-moz-transform-origin[GSCE],"
16105                 + "-moz-transform-style[GSCE],-moz-transform[GSCE],-moz-user-select[GSCE],"
16106                 + "-moz-window-dragging[GSCE],-webkit-align-content[GSCE],-webkit-align-items[GSCE],"
16107                 + "-webkit-align-self[GSCE],-webkit-animation-delay[GSCE],-webkit-animation-direction[GSCE],"
16108                 + "-webkit-animation-duration[GSCE],-webkit-animation-fill-mode[GSCE],"
16109                 + "-webkit-animation-iteration-count[GSCE],-webkit-animation-name[GSCE],"
16110                 + "-webkit-animation-play-state[GSCE],-webkit-animation-timing-function[GSCE],"
16111                 + "-webkit-animation[GSCE],-webkit-appearance[GSCE],-webkit-backface-visibility[GSCE],"
16112                 + "-webkit-background-clip[GSCE],-webkit-background-origin[GSCE],-webkit-background-size[GSCE],"
16113                 + "-webkit-border-bottom-left-radius[GSCE],-webkit-border-bottom-right-radius[GSCE],"
16114                 + "-webkit-border-image[GSCE],-webkit-border-radius[GSCE],-webkit-border-top-left-radius[GSCE],"
16115                 + "-webkit-border-top-right-radius[GSCE],-webkit-box-align[GSCE],-webkit-box-direction[GSCE],"
16116                 + "-webkit-box-flex[GSCE],-webkit-box-ordinal-group[GSCE],-webkit-box-orient[GSCE],"
16117                 + "-webkit-box-pack[GSCE],-webkit-box-shadow[GSCE],-webkit-box-sizing[GSCE],-webkit-clip-path[GSCE],"
16118                 + "-webkit-filter[GSCE],-webkit-flex-basis[GSCE],-webkit-flex-direction[GSCE],"
16119                 + "-webkit-flex-flow[GSCE],-webkit-flex-grow[GSCE],-webkit-flex-shrink[GSCE],"
16120                 + "-webkit-flex-wrap[GSCE],-webkit-flex[GSCE],-webkit-font-feature-settings[GSCE],"
16121                 + "-webkit-justify-content[GSCE],-webkit-line-clamp[GSCE],-webkit-mask-clip[GSCE],"
16122                 + "-webkit-mask-composite[GSCE],-webkit-mask-image[GSCE],-webkit-mask-origin[GSCE],"
16123                 + "-webkit-mask-position-x[GSCE],-webkit-mask-position-y[GSCE],-webkit-mask-position[GSCE],"
16124                 + "-webkit-mask-repeat[GSCE],-webkit-mask-size[GSCE],-webkit-mask[GSCE],-webkit-order[GSCE],"
16125                 + "-webkit-perspective-origin[GSCE],-webkit-perspective[GSCE],-webkit-text-fill-color[GSCE],"
16126                 + "-webkit-text-security[GSCE],-webkit-text-size-adjust[GSCE],-webkit-text-stroke-color[GSCE],"
16127                 + "-webkit-text-stroke-width[GSCE],-webkit-text-stroke[GSCE],-webkit-transform-origin[GSCE],"
16128                 + "-webkit-transform-style[GSCE],-webkit-transform[GSCE],-webkit-transition-delay[GSCE],"
16129                 + "-webkit-transition-duration[GSCE],-webkit-transition-property[GSCE],"
16130                 + "-webkit-transition-timing-function[GSCE],-webkit-transition[GSCE],-webkit-user-select[GSCE],"
16131                 + "accent-color[GSCE],accentColor[GSCE],align-content[GSCE],align-items[GSCE],align-self[GSCE],"
16132                 + "alignContent[GSCE],alignItems[GSCE],alignSelf[GSCE],all[GSCE],animation-composition[GSCE],"
16133                 + "animation-delay[GSCE],animation-direction[GSCE],animation-duration[GSCE],"
16134                 + "animation-fill-mode[GSCE],animation-iteration-count[GSCE],animation-name[GSCE],"
16135                 + "animation-play-state[GSCE],animation-timing-function[GSCE],animation[GSCE],"
16136                 + "animationComposition[GSCE],animationDelay[GSCE],animationDirection[GSCE],animationDuration[GSCE],"
16137                 + "animationFillMode[GSCE],animationIterationCount[GSCE],animationName[GSCE],"
16138                 + "animationPlayState[GSCE],animationTimingFunction[GSCE],appearance[GSCE],aspect-ratio[GSCE],"
16139                 + "aspectRatio[GSCE],backdrop-filter[GSCE],backdropFilter[GSCE],backface-visibility[GSCE],"
16140                 + "backfaceVisibility[GSCE],background-attachment[GSCE],background-blend-mode[GSCE],"
16141                 + "background-clip[GSCE],background-color[GSCE],background-image[GSCE],background-origin[GSCE],"
16142                 + "background-position-x[GSCE],background-position-y[GSCE],background-position[GSCE],"
16143                 + "background-repeat[GSCE],background-size[GSCE],background[GSCE],backgroundAttachment[GSCE],"
16144                 + "backgroundBlendMode[GSCE],backgroundClip[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
16145                 + "backgroundOrigin[GSCE],backgroundPosition[GSCE],backgroundPositionX[GSCE],"
16146                 + "backgroundPositionY[GSCE],backgroundRepeat[GSCE],backgroundSize[GSCE],baseline-source[GSCE],"
16147                 + "baselineSource[GSCE],block-size[GSCE],blockSize[GSCE],border-block-color[GSCE],"
16148                 + "border-block-end-color[GSCE],border-block-end-style[GSCE],border-block-end-width[GSCE],"
16149                 + "border-block-end[GSCE],border-block-start-color[GSCE],border-block-start-style[GSCE],"
16150                 + "border-block-start-width[GSCE],border-block-start[GSCE],border-block-style[GSCE],"
16151                 + "border-block-width[GSCE],border-block[GSCE],border-bottom-color[GSCE],"
16152                 + "border-bottom-left-radius[GSCE],border-bottom-right-radius[GSCE],border-bottom-style[GSCE],"
16153                 + "border-bottom-width[GSCE],border-bottom[GSCE],border-collapse[GSCE],border-color[GSCE],"
16154                 + "border-end-end-radius[GSCE],border-end-start-radius[GSCE],border-image-outset[GSCE],"
16155                 + "border-image-repeat[GSCE],border-image-slice[GSCE],border-image-source[GSCE],"
16156                 + "border-image-width[GSCE],border-image[GSCE],border-inline-color[GSCE],"
16157                 + "border-inline-end-color[GSCE],border-inline-end-style[GSCE],border-inline-end-width[GSCE],"
16158                 + "border-inline-end[GSCE],border-inline-start-color[GSCE],border-inline-start-style[GSCE],"
16159                 + "border-inline-start-width[GSCE],border-inline-start[GSCE],border-inline-style[GSCE],"
16160                 + "border-inline-width[GSCE],border-inline[GSCE],border-left-color[GSCE],border-left-style[GSCE],"
16161                 + "border-left-width[GSCE],border-left[GSCE],border-radius[GSCE],border-right-color[GSCE],"
16162                 + "border-right-style[GSCE],border-right-width[GSCE],border-right[GSCE],border-spacing[GSCE],"
16163                 + "border-start-end-radius[GSCE],border-start-start-radius[GSCE],border-style[GSCE],"
16164                 + "border-top-color[GSCE],border-top-left-radius[GSCE],border-top-right-radius[GSCE],"
16165                 + "border-top-style[GSCE],border-top-width[GSCE],border-top[GSCE],border-width[GSCE],border[GSCE],"
16166                 + "borderBlock[GSCE],borderBlockColor[GSCE],borderBlockEnd[GSCE],borderBlockEndColor[GSCE],"
16167                 + "borderBlockEndStyle[GSCE],borderBlockEndWidth[GSCE],borderBlockStart[GSCE],"
16168                 + "borderBlockStartColor[GSCE],borderBlockStartStyle[GSCE],borderBlockStartWidth[GSCE],"
16169                 + "borderBlockStyle[GSCE],borderBlockWidth[GSCE],borderBottom[GSCE],borderBottomColor[GSCE],"
16170                 + "borderBottomLeftRadius[GSCE],borderBottomRightRadius[GSCE],borderBottomStyle[GSCE],"
16171                 + "borderBottomWidth[GSCE],borderCollapse[GSCE],borderColor[GSCE],borderEndEndRadius[GSCE],"
16172                 + "borderEndStartRadius[GSCE],borderImage[GSCE],borderImageOutset[GSCE],borderImageRepeat[GSCE],"
16173                 + "borderImageSlice[GSCE],borderImageSource[GSCE],borderImageWidth[GSCE],borderInline[GSCE],"
16174                 + "borderInlineColor[GSCE],borderInlineEnd[GSCE],borderInlineEndColor[GSCE],"
16175                 + "borderInlineEndStyle[GSCE],borderInlineEndWidth[GSCE],borderInlineStart[GSCE],"
16176                 + "borderInlineStartColor[GSCE],borderInlineStartStyle[GSCE],borderInlineStartWidth[GSCE],"
16177                 + "borderInlineStyle[GSCE],borderInlineWidth[GSCE],borderLeft[GSCE],borderLeftColor[GSCE],"
16178                 + "borderLeftStyle[GSCE],borderLeftWidth[GSCE],borderRadius[GSCE],borderRight[GSCE],"
16179                 + "borderRightColor[GSCE],borderRightStyle[GSCE],borderRightWidth[GSCE],borderSpacing[GSCE],"
16180                 + "borderStartEndRadius[GSCE],borderStartStartRadius[GSCE],borderStyle[GSCE],borderTop[GSCE],"
16181                 + "borderTopColor[GSCE],borderTopLeftRadius[GSCE],borderTopRightRadius[GSCE],borderTopStyle[GSCE],"
16182                 + "borderTopWidth[GSCE],borderWidth[GSCE],bottom[GSCE],box-decoration-break[GSCE],box-shadow[GSCE],"
16183                 + "box-sizing[GSCE],boxDecorationBreak[GSCE],boxShadow[GSCE],boxSizing[GSCE],break-after[GSCE],"
16184                 + "break-before[GSCE],break-inside[GSCE],breakAfter[GSCE],breakBefore[GSCE],breakInside[GSCE],"
16185                 + "caption-side[GSCE],captionSide[GSCE],caret-color[GSCE],caretColor[GSCE],clear[GSCE],"
16186                 + "clip-path[GSCE],clip-rule[GSCE],clip[GSCE],clipPath[GSCE],clipRule[GSCE],color-adjust[GSCE],"
16187                 + "color-interpolation-filters[GSCE],color-interpolation[GSCE],color-scheme[GSCE],color[GSCE],"
16188                 + "colorAdjust[GSCE],colorInterpolation[GSCE],colorInterpolationFilters[GSCE],colorScheme[GSCE],"
16189                 + "column-count[GSCE],column-fill[GSCE],column-gap[GSCE],column-rule-color[GSCE],"
16190                 + "column-rule-style[GSCE],column-rule-width[GSCE],column-rule[GSCE],column-span[GSCE],"
16191                 + "column-width[GSCE],columnCount[GSCE],columnFill[GSCE],columnGap[GSCE],columnRule[GSCE],"
16192                 + "columnRuleColor[GSCE],columnRuleStyle[GSCE],columnRuleWidth[GSCE],columns[GSCE],columnSpan[GSCE],"
16193                 + "columnWidth[GSCE],constructor(),contain-intrinsic-block-size[GSCE],"
16194                 + "contain-intrinsic-height[GSCE],contain-intrinsic-inline-size[GSCE],contain-intrinsic-size[GSCE],"
16195                 + "contain-intrinsic-width[GSCE],contain[GSCE],container-name[GSCE],container-type[GSCE],"
16196                 + "container[GSCE],containerName[GSCE],containerType[GSCE],containIntrinsicBlockSize[GSCE],"
16197                 + "containIntrinsicHeight[GSCE],containIntrinsicInlineSize[GSCE],containIntrinsicSize[GSCE],"
16198                 + "containIntrinsicWidth[GSCE],content-visibility[GSCE],content[GSCE],contentVisibility[GSCE],"
16199                 + "counter-increment[GSCE],counter-reset[GSCE],counter-set[GSCE],counterIncrement[GSCE],"
16200                 + "counterReset[GSCE],counterSet[GSCE],cssFloat[GSCE],cursor[GSCE],cx[GSCE],cy[GSCE],d[GSCE],"
16201                 + "direction[GSCE],display[GSCE],dominant-baseline[GSCE],dominantBaseline[GSCE],empty-cells[GSCE],"
16202                 + "emptyCells[GSCE],fill-opacity[GSCE],fill-rule[GSCE],fill[GSCE],fillOpacity[GSCE],fillRule[GSCE],"
16203                 + "filter[GSCE],flex-basis[GSCE],flex-direction[GSCE],flex-flow[GSCE],flex-grow[GSCE],"
16204                 + "flex-shrink[GSCE],flex-wrap[GSCE],flex[GSCE],flexBasis[GSCE],flexDirection[GSCE],flexFlow[GSCE],"
16205                 + "flexGrow[GSCE],flexShrink[GSCE],flexWrap[GSCE],float[GSCE],flood-color[GSCE],flood-opacity[GSCE],"
16206                 + "floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],font-feature-settings[GSCE],"
16207                 + "font-kerning[GSCE],font-language-override[GSCE],font-optical-sizing[GSCE],font-palette[GSCE],"
16208                 + "font-size-adjust[GSCE],font-size[GSCE],font-stretch[GSCE],font-style[GSCE],"
16209                 + "font-synthesis-position[GSCE],font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],"
16210                 + "font-synthesis-weight[GSCE],font-synthesis[GSCE],font-variant-alternates[GSCE],"
16211                 + "font-variant-caps[GSCE],font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],"
16212                 + "font-variant-numeric[GSCE],font-variant-position[GSCE],font-variant[GSCE],"
16213                 + "font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
16214                 + "fontFeatureSettings[GSCE],fontKerning[GSCE],fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],"
16215                 + "fontPalette[GSCE],fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],"
16216                 + "fontSynthesis[GSCE],fontSynthesisPosition[GSCE],fontSynthesisSmallCaps[GSCE],"
16217                 + "fontSynthesisStyle[GSCE],fontSynthesisWeight[GSCE],fontVariant[GSCE],fontVariantAlternates[GSCE],"
16218                 + "fontVariantCaps[GSCE],fontVariantEastAsian[GSCE],fontVariantLigatures[GSCE],"
16219                 + "fontVariantNumeric[GSCE],fontVariantPosition[GSCE],fontVariationSettings[GSCE],fontWeight[GSCE],"
16220                 + "forced-color-adjust[GSCE],forcedColorAdjust[GSCE],gap[GSCE],grid-area[GSCE],"
16221                 + "grid-auto-columns[GSCE],grid-auto-flow[GSCE],grid-auto-rows[GSCE],grid-column-end[GSCE],"
16222                 + "grid-column-gap[GSCE],grid-column-start[GSCE],grid-column[GSCE],grid-gap[GSCE],"
16223                 + "grid-row-end[GSCE],grid-row-gap[GSCE],grid-row-start[GSCE],grid-row[GSCE],"
16224                 + "grid-template-areas[GSCE],grid-template-columns[GSCE],grid-template-rows[GSCE],"
16225                 + "grid-template[GSCE],grid[GSCE],gridArea[GSCE],gridAutoColumns[GSCE],gridAutoFlow[GSCE],"
16226                 + "gridAutoRows[GSCE],gridColumn[GSCE],gridColumnEnd[GSCE],gridColumnGap[GSCE],"
16227                 + "gridColumnStart[GSCE],gridGap[GSCE],gridRow[GSCE],gridRowEnd[GSCE],gridRowGap[GSCE],"
16228                 + "gridRowStart[GSCE],gridTemplate[GSCE],gridTemplateAreas[GSCE],gridTemplateColumns[GSCE],"
16229                 + "gridTemplateRows[GSCE],height[GSCE],hyphenate-character[GSCE],hyphenate-limit-chars[GSCE],"
16230                 + "hyphenateCharacter[GSCE],hyphenateLimitChars[GSCE],hyphens[GSCE],image-orientation[GSCE],"
16231                 + "image-rendering[GSCE],imageOrientation[GSCE],imageRendering[GSCE],ime-mode[GSCE],imeMode[GSCE],"
16232                 + "inline-size[GSCE],inlineSize[GSCE],inset-block-end[GSCE],inset-block-start[GSCE],"
16233                 + "inset-block[GSCE],inset-inline-end[GSCE],inset-inline-start[GSCE],inset-inline[GSCE],inset[GSCE],"
16234                 + "insetBlock[GSCE],insetBlockEnd[GSCE],insetBlockStart[GSCE],insetInline[GSCE],"
16235                 + "insetInlineEnd[GSCE],insetInlineStart[GSCE],isolation[GSCE],justify-content[GSCE],"
16236                 + "justify-items[GSCE],justify-self[GSCE],justifyContent[GSCE],justifyItems[GSCE],justifySelf[GSCE],"
16237                 + "left[GSCE],letter-spacing[GSCE],letterSpacing[GSCE],lighting-color[GSCE],lightingColor[GSCE],"
16238                 + "line-break[GSCE],line-height[GSCE],lineBreak[GSCE],lineHeight[GSCE],list-style-image[GSCE],"
16239                 + "list-style-position[GSCE],list-style-type[GSCE],list-style[GSCE],listStyle[GSCE],"
16240                 + "listStyleImage[GSCE],listStylePosition[GSCE],listStyleType[GSCE],margin-block-end[GSCE],"
16241                 + "margin-block-start[GSCE],margin-block[GSCE],margin-bottom[GSCE],margin-inline-end[GSCE],"
16242                 + "margin-inline-start[GSCE],margin-inline[GSCE],margin-left[GSCE],margin-right[GSCE],"
16243                 + "margin-top[GSCE],margin[GSCE],marginBlock[GSCE],marginBlockEnd[GSCE],marginBlockStart[GSCE],"
16244                 + "marginBottom[GSCE],marginInline[GSCE],marginInlineEnd[GSCE],marginInlineStart[GSCE],"
16245                 + "marginLeft[GSCE],marginRight[GSCE],marginTop[GSCE],marker-end[GSCE],marker-mid[GSCE],"
16246                 + "marker-start[GSCE],marker[GSCE],markerEnd[GSCE],markerMid[GSCE],markerStart[GSCE],"
16247                 + "mask-clip[GSCE],mask-composite[GSCE],mask-image[GSCE],mask-mode[GSCE],mask-origin[GSCE],"
16248                 + "mask-position-x[GSCE],mask-position-y[GSCE],mask-position[GSCE],mask-repeat[GSCE],"
16249                 + "mask-size[GSCE],mask-type[GSCE],mask[GSCE],maskClip[GSCE],maskComposite[GSCE],maskImage[GSCE],"
16250                 + "maskMode[GSCE],maskOrigin[GSCE],maskPosition[GSCE],maskPositionX[GSCE],maskPositionY[GSCE],"
16251                 + "maskRepeat[GSCE],maskSize[GSCE],maskType[GSCE],math-depth[GSCE],math-style[GSCE],mathDepth[GSCE],"
16252                 + "mathStyle[GSCE],max-block-size[GSCE],max-height[GSCE],max-inline-size[GSCE],max-width[GSCE],"
16253                 + "maxBlockSize[GSCE],maxHeight[GSCE],maxInlineSize[GSCE],maxWidth[GSCE],min-block-size[GSCE],"
16254                 + "min-height[GSCE],min-inline-size[GSCE],min-width[GSCE],minBlockSize[GSCE],minHeight[GSCE],"
16255                 + "minInlineSize[GSCE],minWidth[GSCE],mix-blend-mode[GSCE],mixBlendMode[GSCE],MozAnimation[GSCE],"
16256                 + "MozAnimationDelay[GSCE],MozAnimationDirection[GSCE],MozAnimationDuration[GSCE],"
16257                 + "MozAnimationFillMode[GSCE],MozAnimationIterationCount[GSCE],MozAnimationName[GSCE],"
16258                 + "MozAnimationPlayState[GSCE],MozAnimationTimingFunction[GSCE],MozAppearance[GSCE],"
16259                 + "MozBackfaceVisibility[GSCE],MozBorderEnd[GSCE],MozBorderEndColor[GSCE],MozBorderEndStyle[GSCE],"
16260                 + "MozBorderEndWidth[GSCE],MozBorderImage[GSCE],MozBorderStart[GSCE],MozBorderStartColor[GSCE],"
16261                 + "MozBorderStartStyle[GSCE],MozBorderStartWidth[GSCE],MozBoxAlign[GSCE],MozBoxDirection[GSCE],"
16262                 + "MozBoxFlex[GSCE],MozBoxOrdinalGroup[GSCE],MozBoxOrient[GSCE],MozBoxPack[GSCE],MozBoxSizing[GSCE],"
16263                 + "MozFloatEdge[GSCE],MozFontFeatureSettings[GSCE],MozFontLanguageOverride[GSCE],"
16264                 + "MozForceBrokenImageIcon[GSCE],MozHyphens[GSCE],MozMarginEnd[GSCE],MozMarginStart[GSCE],"
16265                 + "MozOrient[GSCE],MozPaddingEnd[GSCE],MozPaddingStart[GSCE],MozPerspective[GSCE],"
16266                 + "MozPerspectiveOrigin[GSCE],MozTabSize[GSCE],MozTextSizeAdjust[GSCE],MozTransform[GSCE],"
16267                 + "MozTransformOrigin[GSCE],MozTransformStyle[GSCE],MozUserSelect[GSCE],MozWindowDragging[GSCE],"
16268                 + "object-fit[GSCE],object-position[GSCE],objectFit[GSCE],objectPosition[GSCE],offset-anchor[GSCE],"
16269                 + "offset-distance[GSCE],offset-path[GSCE],offset-position[GSCE],offset-rotate[GSCE],offset[GSCE],"
16270                 + "offsetAnchor[GSCE],offsetDistance[GSCE],offsetPath[GSCE],offsetPosition[GSCE],offsetRotate[GSCE],"
16271                 + "opacity[GSCE],order[GSCE],outline-color[GSCE],outline-offset[GSCE],outline-style[GSCE],"
16272                 + "outline-width[GSCE],outline[GSCE],outlineColor[GSCE],outlineOffset[GSCE],outlineStyle[GSCE],"
16273                 + "outlineWidth[GSCE],overflow-anchor[GSCE],overflow-block[GSCE],overflow-clip-margin[GSCE],"
16274                 + "overflow-inline[GSCE],overflow-wrap[GSCE],overflow-x[GSCE],overflow-y[GSCE],overflow[GSCE],"
16275                 + "overflowAnchor[GSCE],overflowBlock[GSCE],overflowClipMargin[GSCE],overflowInline[GSCE],"
16276                 + "overflowWrap[GSCE],overflowX[GSCE],overflowY[GSCE],overscroll-behavior-block[GSCE],"
16277                 + "overscroll-behavior-inline[GSCE],overscroll-behavior-x[GSCE],overscroll-behavior-y[GSCE],"
16278                 + "overscroll-behavior[GSCE],overscrollBehavior[GSCE],overscrollBehaviorBlock[GSCE],"
16279                 + "overscrollBehaviorInline[GSCE],overscrollBehaviorX[GSCE],overscrollBehaviorY[GSCE],"
16280                 + "padding-block-end[GSCE],padding-block-start[GSCE],padding-block[GSCE],padding-bottom[GSCE],"
16281                 + "padding-inline-end[GSCE],padding-inline-start[GSCE],padding-inline[GSCE],padding-left[GSCE],"
16282                 + "padding-right[GSCE],padding-top[GSCE],padding[GSCE],paddingBlock[GSCE],paddingBlockEnd[GSCE],"
16283                 + "paddingBlockStart[GSCE],paddingBottom[GSCE],paddingInline[GSCE],paddingInlineEnd[GSCE],"
16284                 + "paddingInlineStart[GSCE],paddingLeft[GSCE],paddingRight[GSCE],paddingTop[GSCE],"
16285                 + "page-break-after[GSCE],page-break-before[GSCE],page-break-inside[GSCE],page[GSCE],"
16286                 + "pageBreakAfter[GSCE],pageBreakBefore[GSCE],pageBreakInside[GSCE],paint-order[GSCE],"
16287                 + "paintOrder[GSCE],perspective-origin[GSCE],perspective[GSCE],perspectiveOrigin[GSCE],"
16288                 + "place-content[GSCE],place-items[GSCE],place-self[GSCE],placeContent[GSCE],placeItems[GSCE],"
16289                 + "placeSelf[GSCE],pointer-events[GSCE],pointerEvents[GSCE],position[GSCE],print-color-adjust[GSCE],"
16290                 + "printColorAdjust[GSCE],quotes[GSCE],r[GSCE],resize[GSCE],right[GSCE],rotate[GSCE],row-gap[GSCE],"
16291                 + "rowGap[GSCE],ruby-align[GSCE],ruby-position[GSCE],rubyAlign[GSCE],rubyPosition[GSCE],rx[GSCE],"
16292                 + "ry[GSCE],scale[GSCE],scroll-behavior[GSCE],scroll-margin-block-end[GSCE],"
16293                 + "scroll-margin-block-start[GSCE],scroll-margin-block[GSCE],scroll-margin-bottom[GSCE],"
16294                 + "scroll-margin-inline-end[GSCE],scroll-margin-inline-start[GSCE],scroll-margin-inline[GSCE],"
16295                 + "scroll-margin-left[GSCE],scroll-margin-right[GSCE],scroll-margin-top[GSCE],scroll-margin[GSCE],"
16296                 + "scroll-padding-block-end[GSCE],scroll-padding-block-start[GSCE],scroll-padding-block[GSCE],"
16297                 + "scroll-padding-bottom[GSCE],scroll-padding-inline-end[GSCE],scroll-padding-inline-start[GSCE],"
16298                 + "scroll-padding-inline[GSCE],scroll-padding-left[GSCE],scroll-padding-right[GSCE],"
16299                 + "scroll-padding-top[GSCE],scroll-padding[GSCE],scroll-snap-align[GSCE],scroll-snap-stop[GSCE],"
16300                 + "scroll-snap-type[GSCE],scrollbar-color[GSCE],scrollbar-gutter[GSCE],scrollbar-width[GSCE],"
16301                 + "scrollbarColor[GSCE],scrollbarGutter[GSCE],scrollbarWidth[GSCE],scrollBehavior[GSCE],"
16302                 + "scrollMargin[GSCE],scrollMarginBlock[GSCE],scrollMarginBlockEnd[GSCE],"
16303                 + "scrollMarginBlockStart[GSCE],scrollMarginBottom[GSCE],scrollMarginInline[GSCE],"
16304                 + "scrollMarginInlineEnd[GSCE],scrollMarginInlineStart[GSCE],scrollMarginLeft[GSCE],"
16305                 + "scrollMarginRight[GSCE],scrollMarginTop[GSCE],scrollPadding[GSCE],scrollPaddingBlock[GSCE],"
16306                 + "scrollPaddingBlockEnd[GSCE],scrollPaddingBlockStart[GSCE],scrollPaddingBottom[GSCE],"
16307                 + "scrollPaddingInline[GSCE],scrollPaddingInlineEnd[GSCE],scrollPaddingInlineStart[GSCE],"
16308                 + "scrollPaddingLeft[GSCE],scrollPaddingRight[GSCE],scrollPaddingTop[GSCE],scrollSnapAlign[GSCE],"
16309                 + "scrollSnapStop[GSCE],scrollSnapType[GSCE],shape-image-threshold[GSCE],shape-margin[GSCE],"
16310                 + "shape-outside[GSCE],shape-rendering[GSCE],shapeImageThreshold[GSCE],shapeMargin[GSCE],"
16311                 + "shapeOutside[GSCE],shapeRendering[GSCE],stop-color[GSCE],stop-opacity[GSCE],stopColor[GSCE],"
16312                 + "stopOpacity[GSCE],stroke-dasharray[GSCE],stroke-dashoffset[GSCE],stroke-linecap[GSCE],"
16313                 + "stroke-linejoin[GSCE],stroke-miterlimit[GSCE],stroke-opacity[GSCE],stroke-width[GSCE],"
16314                 + "stroke[GSCE],strokeDasharray[GSCE],strokeDashoffset[GSCE],strokeLinecap[GSCE],"
16315                 + "strokeLinejoin[GSCE],strokeMiterlimit[GSCE],strokeOpacity[GSCE],strokeWidth[GSCE],tab-size[GSCE],"
16316                 + "table-layout[GSCE],tableLayout[GSCE],tabSize[GSCE],text-align-last[GSCE],text-align[GSCE],"
16317                 + "text-anchor[GSCE],text-combine-upright[GSCE],text-decoration-color[GSCE],"
16318                 + "text-decoration-line[GSCE],text-decoration-skip-ink[GSCE],text-decoration-style[GSCE],"
16319                 + "text-decoration-thickness[GSCE],text-decoration[GSCE],text-emphasis-color[GSCE],"
16320                 + "text-emphasis-position[GSCE],text-emphasis-style[GSCE],text-emphasis[GSCE],text-indent[GSCE],"
16321                 + "text-justify[GSCE],text-orientation[GSCE],text-overflow[GSCE],text-rendering[GSCE],"
16322                 + "text-shadow[GSCE],text-transform[GSCE],text-underline-offset[GSCE],text-underline-position[GSCE],"
16323                 + "text-wrap-mode[GSCE],text-wrap-style[GSCE],text-wrap[GSCE],textAlign[GSCE],textAlignLast[GSCE],"
16324                 + "textAnchor[GSCE],textCombineUpright[GSCE],textDecoration[GSCE],textDecorationColor[GSCE],"
16325                 + "textDecorationLine[GSCE],textDecorationSkipInk[GSCE],textDecorationStyle[GSCE],"
16326                 + "textDecorationThickness[GSCE],textEmphasis[GSCE],textEmphasisColor[GSCE],"
16327                 + "textEmphasisPosition[GSCE],textEmphasisStyle[GSCE],textIndent[GSCE],textJustify[GSCE],"
16328                 + "textOrientation[GSCE],textOverflow[GSCE],textRendering[GSCE],textShadow[GSCE],"
16329                 + "textTransform[GSCE],textUnderlineOffset[GSCE],textUnderlinePosition[GSCE],textWrap[GSCE],"
16330                 + "textWrapMode[GSCE],textWrapStyle[GSCE],top[GSCE],touch-action[GSCE],touchAction[GSCE],"
16331                 + "transform-box[GSCE],transform-origin[GSCE],transform-style[GSCE],transform[GSCE],"
16332                 + "transformBox[GSCE],transformOrigin[GSCE],transformStyle[GSCE],transition-behavior[GSCE],"
16333                 + "transition-delay[GSCE],transition-duration[GSCE],transition-property[GSCE],"
16334                 + "transition-timing-function[GSCE],transition[GSCE],transitionBehavior[GSCE],transitionDelay[GSCE],"
16335                 + "transitionDuration[GSCE],transitionProperty[GSCE],transitionTimingFunction[GSCE],translate[GSCE],"
16336                 + "unicode-bidi[GSCE],unicodeBidi[GSCE],user-select[GSCE],userSelect[GSCE],vector-effect[GSCE],"
16337                 + "vectorEffect[GSCE],vertical-align[GSCE],verticalAlign[GSCE],visibility[GSCE],"
16338                 + "WebkitAlignContent[GSCE],webkitAlignContent[GSCE],WebkitAlignItems[GSCE],webkitAlignItems[GSCE],"
16339                 + "WebkitAlignSelf[GSCE],webkitAlignSelf[GSCE],WebkitAnimation[GSCE],webkitAnimation[GSCE],"
16340                 + "WebkitAnimationDelay[GSCE],webkitAnimationDelay[GSCE],WebkitAnimationDirection[GSCE],"
16341                 + "webkitAnimationDirection[GSCE],WebkitAnimationDuration[GSCE],webkitAnimationDuration[GSCE],"
16342                 + "WebkitAnimationFillMode[GSCE],webkitAnimationFillMode[GSCE],WebkitAnimationIterationCount[GSCE],"
16343                 + "webkitAnimationIterationCount[GSCE],WebkitAnimationName[GSCE],webkitAnimationName[GSCE],"
16344                 + "WebkitAnimationPlayState[GSCE],webkitAnimationPlayState[GSCE],"
16345                 + "WebkitAnimationTimingFunction[GSCE],webkitAnimationTimingFunction[GSCE],WebkitAppearance[GSCE],"
16346                 + "webkitAppearance[GSCE],WebkitBackfaceVisibility[GSCE],webkitBackfaceVisibility[GSCE],"
16347                 + "WebkitBackgroundClip[GSCE],webkitBackgroundClip[GSCE],WebkitBackgroundOrigin[GSCE],"
16348                 + "webkitBackgroundOrigin[GSCE],WebkitBackgroundSize[GSCE],webkitBackgroundSize[GSCE],"
16349                 + "WebkitBorderBottomLeftRadius[GSCE],webkitBorderBottomLeftRadius[GSCE],"
16350                 + "WebkitBorderBottomRightRadius[GSCE],webkitBorderBottomRightRadius[GSCE],WebkitBorderImage[GSCE],"
16351                 + "webkitBorderImage[GSCE],WebkitBorderRadius[GSCE],webkitBorderRadius[GSCE],"
16352                 + "WebkitBorderTopLeftRadius[GSCE],webkitBorderTopLeftRadius[GSCE],WebkitBorderTopRightRadius[GSCE],"
16353                 + "webkitBorderTopRightRadius[GSCE],WebkitBoxAlign[GSCE],webkitBoxAlign[GSCE],"
16354                 + "WebkitBoxDirection[GSCE],webkitBoxDirection[GSCE],WebkitBoxFlex[GSCE],webkitBoxFlex[GSCE],"
16355                 + "WebkitBoxOrdinalGroup[GSCE],webkitBoxOrdinalGroup[GSCE],WebkitBoxOrient[GSCE],"
16356                 + "webkitBoxOrient[GSCE],WebkitBoxPack[GSCE],webkitBoxPack[GSCE],WebkitBoxShadow[GSCE],"
16357                 + "webkitBoxShadow[GSCE],WebkitBoxSizing[GSCE],webkitBoxSizing[GSCE],WebkitClipPath[GSCE],"
16358                 + "webkitClipPath[GSCE],WebkitFilter[GSCE],webkitFilter[GSCE],WebkitFlex[GSCE],webkitFlex[GSCE],"
16359                 + "WebkitFlexBasis[GSCE],webkitFlexBasis[GSCE],WebkitFlexDirection[GSCE],webkitFlexDirection[GSCE],"
16360                 + "WebkitFlexFlow[GSCE],webkitFlexFlow[GSCE],WebkitFlexGrow[GSCE],webkitFlexGrow[GSCE],"
16361                 + "WebkitFlexShrink[GSCE],webkitFlexShrink[GSCE],WebkitFlexWrap[GSCE],webkitFlexWrap[GSCE],"
16362                 + "WebkitFontFeatureSettings[GSCE],webkitFontFeatureSettings[GSCE],WebkitJustifyContent[GSCE],"
16363                 + "webkitJustifyContent[GSCE],WebkitLineClamp[GSCE],webkitLineClamp[GSCE],WebkitMask[GSCE],"
16364                 + "webkitMask[GSCE],WebkitMaskClip[GSCE],webkitMaskClip[GSCE],WebkitMaskComposite[GSCE],"
16365                 + "webkitMaskComposite[GSCE],WebkitMaskImage[GSCE],webkitMaskImage[GSCE],WebkitMaskOrigin[GSCE],"
16366                 + "webkitMaskOrigin[GSCE],WebkitMaskPosition[GSCE],webkitMaskPosition[GSCE],"
16367                 + "WebkitMaskPositionX[GSCE],webkitMaskPositionX[GSCE],WebkitMaskPositionY[GSCE],"
16368                 + "webkitMaskPositionY[GSCE],WebkitMaskRepeat[GSCE],webkitMaskRepeat[GSCE],WebkitMaskSize[GSCE],"
16369                 + "webkitMaskSize[GSCE],WebkitOrder[GSCE],webkitOrder[GSCE],WebkitPerspective[GSCE],"
16370                 + "webkitPerspective[GSCE],WebkitPerspectiveOrigin[GSCE],webkitPerspectiveOrigin[GSCE],"
16371                 + "WebkitTextFillColor[GSCE],webkitTextFillColor[GSCE],WebkitTextSecurity[GSCE],"
16372                 + "webkitTextSecurity[GSCE],WebkitTextSizeAdjust[GSCE],webkitTextSizeAdjust[GSCE],"
16373                 + "WebkitTextStroke[GSCE],webkitTextStroke[GSCE],WebkitTextStrokeColor[GSCE],"
16374                 + "webkitTextStrokeColor[GSCE],WebkitTextStrokeWidth[GSCE],webkitTextStrokeWidth[GSCE],"
16375                 + "WebkitTransform[GSCE],webkitTransform[GSCE],WebkitTransformOrigin[GSCE],"
16376                 + "webkitTransformOrigin[GSCE],WebkitTransformStyle[GSCE],webkitTransformStyle[GSCE],"
16377                 + "WebkitTransition[GSCE],webkitTransition[GSCE],WebkitTransitionDelay[GSCE],"
16378                 + "webkitTransitionDelay[GSCE],WebkitTransitionDuration[GSCE],webkitTransitionDuration[GSCE],"
16379                 + "WebkitTransitionProperty[GSCE],webkitTransitionProperty[GSCE],"
16380                 + "WebkitTransitionTimingFunction[GSCE],webkitTransitionTimingFunction[GSCE],WebkitUserSelect[GSCE],"
16381                 + "webkitUserSelect[GSCE],white-space-collapse[GSCE],white-space[GSCE],whiteSpace[GSCE],"
16382                 + "whiteSpaceCollapse[GSCE],width[GSCE],will-change[GSCE],willChange[GSCE],word-break[GSCE],"
16383                 + "word-spacing[GSCE],word-wrap[GSCE],wordBreak[GSCE],wordSpacing[GSCE],wordWrap[GSCE],"
16384                 + "writing-mode[GSCE],writingMode[GSCE],x[GSCE],y[GSCE],z-index[GSCE],zIndex[GSCE],"
16385                 + "zoom[GSCE]",
16386             FF_ESR = "-moz-animation-delay[GSCE],-moz-animation-direction[GSCE],-moz-animation-duration[GSCE],"
16387                 + "-moz-animation-fill-mode[GSCE],-moz-animation-iteration-count[GSCE],-moz-animation-name[GSCE],"
16388                 + "-moz-animation-play-state[GSCE],-moz-animation-timing-function[GSCE],-moz-animation[GSCE],"
16389                 + "-moz-appearance[GSCE],-moz-border-end-color[GSCE],-moz-border-end-style[GSCE],"
16390                 + "-moz-border-end-width[GSCE],-moz-border-end[GSCE],-moz-border-image[GSCE],"
16391                 + "-moz-border-start-color[GSCE],-moz-border-start-style[GSCE],-moz-border-start-width[GSCE],"
16392                 + "-moz-border-start[GSCE],-moz-box-align[GSCE],-moz-box-direction[GSCE],-moz-box-flex[GSCE],"
16393                 + "-moz-box-ordinal-group[GSCE],-moz-box-orient[GSCE],-moz-box-pack[GSCE],-moz-box-sizing[GSCE],"
16394                 + "-moz-float-edge[GSCE],-moz-font-feature-settings[GSCE],-moz-font-language-override[GSCE],"
16395                 + "-moz-force-broken-image-icon[GSCE],-moz-hyphens[GSCE],-moz-margin-end[GSCE],"
16396                 + "-moz-margin-start[GSCE],-moz-orient[GSCE],-moz-padding-end[GSCE],-moz-padding-start[GSCE],"
16397                 + "-moz-tab-size[GSCE],-moz-text-size-adjust[GSCE],-moz-transform-origin[GSCE],-moz-transform[GSCE],"
16398                 + "-moz-user-input[GSCE],-moz-user-modify[GSCE],-moz-user-select[GSCE],-moz-window-dragging[GSCE],"
16399                 + "-webkit-align-content[GSCE],-webkit-align-items[GSCE],-webkit-align-self[GSCE],"
16400                 + "-webkit-animation-delay[GSCE],-webkit-animation-direction[GSCE],-webkit-animation-duration[GSCE],"
16401                 + "-webkit-animation-fill-mode[GSCE],-webkit-animation-iteration-count[GSCE],"
16402                 + "-webkit-animation-name[GSCE],-webkit-animation-play-state[GSCE],"
16403                 + "-webkit-animation-timing-function[GSCE],-webkit-animation[GSCE],-webkit-appearance[GSCE],"
16404                 + "-webkit-backface-visibility[GSCE],-webkit-background-clip[GSCE],-webkit-background-origin[GSCE],"
16405                 + "-webkit-background-size[GSCE],-webkit-border-bottom-left-radius[GSCE],"
16406                 + "-webkit-border-bottom-right-radius[GSCE],-webkit-border-image[GSCE],-webkit-border-radius[GSCE],"
16407                 + "-webkit-border-top-left-radius[GSCE],-webkit-border-top-right-radius[GSCE],"
16408                 + "-webkit-box-align[GSCE],-webkit-box-direction[GSCE],-webkit-box-flex[GSCE],"
16409                 + "-webkit-box-ordinal-group[GSCE],-webkit-box-orient[GSCE],-webkit-box-pack[GSCE],"
16410                 + "-webkit-box-shadow[GSCE],-webkit-box-sizing[GSCE],-webkit-clip-path[GSCE],-webkit-filter[GSCE],"
16411                 + "-webkit-flex-basis[GSCE],-webkit-flex-direction[GSCE],-webkit-flex-flow[GSCE],"
16412                 + "-webkit-flex-grow[GSCE],-webkit-flex-shrink[GSCE],-webkit-flex-wrap[GSCE],-webkit-flex[GSCE],"
16413                 + "-webkit-justify-content[GSCE],-webkit-line-clamp[GSCE],-webkit-mask-clip[GSCE],"
16414                 + "-webkit-mask-composite[GSCE],-webkit-mask-image[GSCE],-webkit-mask-origin[GSCE],"
16415                 + "-webkit-mask-position-x[GSCE],-webkit-mask-position-y[GSCE],-webkit-mask-position[GSCE],"
16416                 + "-webkit-mask-repeat[GSCE],-webkit-mask-size[GSCE],-webkit-mask[GSCE],-webkit-order[GSCE],"
16417                 + "-webkit-perspective-origin[GSCE],-webkit-perspective[GSCE],-webkit-text-fill-color[GSCE],"
16418                 + "-webkit-text-security[GSCE],-webkit-text-size-adjust[GSCE],-webkit-text-stroke-color[GSCE],"
16419                 + "-webkit-text-stroke-width[GSCE],-webkit-text-stroke[GSCE],-webkit-transform-origin[GSCE],"
16420                 + "-webkit-transform-style[GSCE],-webkit-transform[GSCE],-webkit-transition-delay[GSCE],"
16421                 + "-webkit-transition-duration[GSCE],-webkit-transition-property[GSCE],"
16422                 + "-webkit-transition-timing-function[GSCE],-webkit-transition[GSCE],-webkit-user-select[GSCE],"
16423                 + "accent-color[GSCE],accentColor[GSCE],align-content[GSCE],align-items[GSCE],align-self[GSCE],"
16424                 + "alignContent[GSCE],alignItems[GSCE],alignSelf[GSCE],all[GSCE],animation-composition[GSCE],"
16425                 + "animation-delay[GSCE],animation-direction[GSCE],animation-duration[GSCE],"
16426                 + "animation-fill-mode[GSCE],animation-iteration-count[GSCE],animation-name[GSCE],"
16427                 + "animation-play-state[GSCE],animation-timing-function[GSCE],animation[GSCE],"
16428                 + "animationComposition[GSCE],animationDelay[GSCE],animationDirection[GSCE],animationDuration[GSCE],"
16429                 + "animationFillMode[GSCE],animationIterationCount[GSCE],animationName[GSCE],"
16430                 + "animationPlayState[GSCE],animationTimingFunction[GSCE],appearance[GSCE],aspect-ratio[GSCE],"
16431                 + "aspectRatio[GSCE],backdrop-filter[GSCE],backdropFilter[GSCE],backface-visibility[GSCE],"
16432                 + "backfaceVisibility[GSCE],background-attachment[GSCE],background-blend-mode[GSCE],"
16433                 + "background-clip[GSCE],background-color[GSCE],background-image[GSCE],background-origin[GSCE],"
16434                 + "background-position-x[GSCE],background-position-y[GSCE],background-position[GSCE],"
16435                 + "background-repeat[GSCE],background-size[GSCE],background[GSCE],backgroundAttachment[GSCE],"
16436                 + "backgroundBlendMode[GSCE],backgroundClip[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
16437                 + "backgroundOrigin[GSCE],backgroundPosition[GSCE],backgroundPositionX[GSCE],"
16438                 + "backgroundPositionY[GSCE],backgroundRepeat[GSCE],backgroundSize[GSCE],baseline-source[GSCE],"
16439                 + "baselineSource[GSCE],block-size[GSCE],blockSize[GSCE],border-block-color[GSCE],"
16440                 + "border-block-end-color[GSCE],border-block-end-style[GSCE],border-block-end-width[GSCE],"
16441                 + "border-block-end[GSCE],border-block-start-color[GSCE],border-block-start-style[GSCE],"
16442                 + "border-block-start-width[GSCE],border-block-start[GSCE],border-block-style[GSCE],"
16443                 + "border-block-width[GSCE],border-block[GSCE],border-bottom-color[GSCE],"
16444                 + "border-bottom-left-radius[GSCE],border-bottom-right-radius[GSCE],border-bottom-style[GSCE],"
16445                 + "border-bottom-width[GSCE],border-bottom[GSCE],border-collapse[GSCE],border-color[GSCE],"
16446                 + "border-end-end-radius[GSCE],border-end-start-radius[GSCE],border-image-outset[GSCE],"
16447                 + "border-image-repeat[GSCE],border-image-slice[GSCE],border-image-source[GSCE],"
16448                 + "border-image-width[GSCE],border-image[GSCE],border-inline-color[GSCE],"
16449                 + "border-inline-end-color[GSCE],border-inline-end-style[GSCE],border-inline-end-width[GSCE],"
16450                 + "border-inline-end[GSCE],border-inline-start-color[GSCE],border-inline-start-style[GSCE],"
16451                 + "border-inline-start-width[GSCE],border-inline-start[GSCE],border-inline-style[GSCE],"
16452                 + "border-inline-width[GSCE],border-inline[GSCE],border-left-color[GSCE],border-left-style[GSCE],"
16453                 + "border-left-width[GSCE],border-left[GSCE],border-radius[GSCE],border-right-color[GSCE],"
16454                 + "border-right-style[GSCE],border-right-width[GSCE],border-right[GSCE],border-spacing[GSCE],"
16455                 + "border-start-end-radius[GSCE],border-start-start-radius[GSCE],border-style[GSCE],"
16456                 + "border-top-color[GSCE],border-top-left-radius[GSCE],border-top-right-radius[GSCE],"
16457                 + "border-top-style[GSCE],border-top-width[GSCE],border-top[GSCE],border-width[GSCE],border[GSCE],"
16458                 + "borderBlock[GSCE],borderBlockColor[GSCE],borderBlockEnd[GSCE],borderBlockEndColor[GSCE],"
16459                 + "borderBlockEndStyle[GSCE],borderBlockEndWidth[GSCE],borderBlockStart[GSCE],"
16460                 + "borderBlockStartColor[GSCE],borderBlockStartStyle[GSCE],borderBlockStartWidth[GSCE],"
16461                 + "borderBlockStyle[GSCE],borderBlockWidth[GSCE],borderBottom[GSCE],borderBottomColor[GSCE],"
16462                 + "borderBottomLeftRadius[GSCE],borderBottomRightRadius[GSCE],borderBottomStyle[GSCE],"
16463                 + "borderBottomWidth[GSCE],borderCollapse[GSCE],borderColor[GSCE],borderEndEndRadius[GSCE],"
16464                 + "borderEndStartRadius[GSCE],borderImage[GSCE],borderImageOutset[GSCE],borderImageRepeat[GSCE],"
16465                 + "borderImageSlice[GSCE],borderImageSource[GSCE],borderImageWidth[GSCE],borderInline[GSCE],"
16466                 + "borderInlineColor[GSCE],borderInlineEnd[GSCE],borderInlineEndColor[GSCE],"
16467                 + "borderInlineEndStyle[GSCE],borderInlineEndWidth[GSCE],borderInlineStart[GSCE],"
16468                 + "borderInlineStartColor[GSCE],borderInlineStartStyle[GSCE],borderInlineStartWidth[GSCE],"
16469                 + "borderInlineStyle[GSCE],borderInlineWidth[GSCE],borderLeft[GSCE],borderLeftColor[GSCE],"
16470                 + "borderLeftStyle[GSCE],borderLeftWidth[GSCE],borderRadius[GSCE],borderRight[GSCE],"
16471                 + "borderRightColor[GSCE],borderRightStyle[GSCE],borderRightWidth[GSCE],borderSpacing[GSCE],"
16472                 + "borderStartEndRadius[GSCE],borderStartStartRadius[GSCE],borderStyle[GSCE],borderTop[GSCE],"
16473                 + "borderTopColor[GSCE],borderTopLeftRadius[GSCE],borderTopRightRadius[GSCE],borderTopStyle[GSCE],"
16474                 + "borderTopWidth[GSCE],borderWidth[GSCE],bottom[GSCE],box-decoration-break[GSCE],box-shadow[GSCE],"
16475                 + "box-sizing[GSCE],boxDecorationBreak[GSCE],boxShadow[GSCE],boxSizing[GSCE],break-after[GSCE],"
16476                 + "break-before[GSCE],break-inside[GSCE],breakAfter[GSCE],breakBefore[GSCE],breakInside[GSCE],"
16477                 + "caption-side[GSCE],captionSide[GSCE],caret-color[GSCE],caretColor[GSCE],clear[GSCE],"
16478                 + "clip-path[GSCE],clip-rule[GSCE],clip[GSCE],clipPath[GSCE],clipRule[GSCE],color-adjust[GSCE],"
16479                 + "color-interpolation-filters[GSCE],color-interpolation[GSCE],color-scheme[GSCE],color[GSCE],"
16480                 + "colorAdjust[GSCE],colorInterpolation[GSCE],colorInterpolationFilters[GSCE],colorScheme[GSCE],"
16481                 + "column-count[GSCE],column-fill[GSCE],column-gap[GSCE],column-rule-color[GSCE],"
16482                 + "column-rule-style[GSCE],column-rule-width[GSCE],column-rule[GSCE],column-span[GSCE],"
16483                 + "column-width[GSCE],columnCount[GSCE],columnFill[GSCE],columnGap[GSCE],columnRule[GSCE],"
16484                 + "columnRuleColor[GSCE],columnRuleStyle[GSCE],columnRuleWidth[GSCE],columns[GSCE],columnSpan[GSCE],"
16485                 + "columnWidth[GSCE],constructor(),contain-intrinsic-block-size[GSCE],"
16486                 + "contain-intrinsic-height[GSCE],contain-intrinsic-inline-size[GSCE],contain-intrinsic-size[GSCE],"
16487                 + "contain-intrinsic-width[GSCE],contain[GSCE],container-name[GSCE],container-type[GSCE],"
16488                 + "container[GSCE],containerName[GSCE],containerType[GSCE],containIntrinsicBlockSize[GSCE],"
16489                 + "containIntrinsicHeight[GSCE],containIntrinsicInlineSize[GSCE],containIntrinsicSize[GSCE],"
16490                 + "containIntrinsicWidth[GSCE],content-visibility[GSCE],content[GSCE],contentVisibility[GSCE],"
16491                 + "counter-increment[GSCE],counter-reset[GSCE],counter-set[GSCE],counterIncrement[GSCE],"
16492                 + "counterReset[GSCE],counterSet[GSCE],cssFloat[GSCE],cursor[GSCE],cx[GSCE],cy[GSCE],d[GSCE],"
16493                 + "direction[GSCE],display[GSCE],dominant-baseline[GSCE],dominantBaseline[GSCE],empty-cells[GSCE],"
16494                 + "emptyCells[GSCE],fill-opacity[GSCE],fill-rule[GSCE],fill[GSCE],fillOpacity[GSCE],fillRule[GSCE],"
16495                 + "filter[GSCE],flex-basis[GSCE],flex-direction[GSCE],flex-flow[GSCE],flex-grow[GSCE],"
16496                 + "flex-shrink[GSCE],flex-wrap[GSCE],flex[GSCE],flexBasis[GSCE],flexDirection[GSCE],flexFlow[GSCE],"
16497                 + "flexGrow[GSCE],flexShrink[GSCE],flexWrap[GSCE],float[GSCE],flood-color[GSCE],flood-opacity[GSCE],"
16498                 + "floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],font-feature-settings[GSCE],"
16499                 + "font-kerning[GSCE],font-language-override[GSCE],font-optical-sizing[GSCE],font-palette[GSCE],"
16500                 + "font-size-adjust[GSCE],font-size[GSCE],font-stretch[GSCE],font-style[GSCE],"
16501                 + "font-synthesis-position[GSCE],font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],"
16502                 + "font-synthesis-weight[GSCE],font-synthesis[GSCE],font-variant-alternates[GSCE],"
16503                 + "font-variant-caps[GSCE],font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],"
16504                 + "font-variant-numeric[GSCE],font-variant-position[GSCE],font-variant[GSCE],"
16505                 + "font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
16506                 + "fontFeatureSettings[GSCE],fontKerning[GSCE],fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],"
16507                 + "fontPalette[GSCE],fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],"
16508                 + "fontSynthesis[GSCE],fontSynthesisPosition[GSCE],fontSynthesisSmallCaps[GSCE],"
16509                 + "fontSynthesisStyle[GSCE],fontSynthesisWeight[GSCE],fontVariant[GSCE],fontVariantAlternates[GSCE],"
16510                 + "fontVariantCaps[GSCE],fontVariantEastAsian[GSCE],fontVariantLigatures[GSCE],"
16511                 + "fontVariantNumeric[GSCE],fontVariantPosition[GSCE],fontVariationSettings[GSCE],fontWeight[GSCE],"
16512                 + "forced-color-adjust[GSCE],forcedColorAdjust[GSCE],gap[GSCE],grid-area[GSCE],"
16513                 + "grid-auto-columns[GSCE],grid-auto-flow[GSCE],grid-auto-rows[GSCE],grid-column-end[GSCE],"
16514                 + "grid-column-gap[GSCE],grid-column-start[GSCE],grid-column[GSCE],grid-gap[GSCE],"
16515                 + "grid-row-end[GSCE],grid-row-gap[GSCE],grid-row-start[GSCE],grid-row[GSCE],"
16516                 + "grid-template-areas[GSCE],grid-template-columns[GSCE],grid-template-rows[GSCE],"
16517                 + "grid-template[GSCE],grid[GSCE],gridArea[GSCE],gridAutoColumns[GSCE],gridAutoFlow[GSCE],"
16518                 + "gridAutoRows[GSCE],gridColumn[GSCE],gridColumnEnd[GSCE],gridColumnGap[GSCE],"
16519                 + "gridColumnStart[GSCE],gridGap[GSCE],gridRow[GSCE],gridRowEnd[GSCE],gridRowGap[GSCE],"
16520                 + "gridRowStart[GSCE],gridTemplate[GSCE],gridTemplateAreas[GSCE],gridTemplateColumns[GSCE],"
16521                 + "gridTemplateRows[GSCE],height[GSCE],hyphenate-character[GSCE],hyphenateCharacter[GSCE],"
16522                 + "hyphens[GSCE],image-orientation[GSCE],image-rendering[GSCE],imageOrientation[GSCE],"
16523                 + "imageRendering[GSCE],ime-mode[GSCE],imeMode[GSCE],inline-size[GSCE],inlineSize[GSCE],"
16524                 + "inset-block-end[GSCE],inset-block-start[GSCE],inset-block[GSCE],inset-inline-end[GSCE],"
16525                 + "inset-inline-start[GSCE],inset-inline[GSCE],inset[GSCE],insetBlock[GSCE],insetBlockEnd[GSCE],"
16526                 + "insetBlockStart[GSCE],insetInline[GSCE],insetInlineEnd[GSCE],insetInlineStart[GSCE],"
16527                 + "isolation[GSCE],justify-content[GSCE],justify-items[GSCE],justify-self[GSCE],"
16528                 + "justifyContent[GSCE],justifyItems[GSCE],justifySelf[GSCE],left[GSCE],letter-spacing[GSCE],"
16529                 + "letterSpacing[GSCE],lighting-color[GSCE],lightingColor[GSCE],line-break[GSCE],line-height[GSCE],"
16530                 + "lineBreak[GSCE],lineHeight[GSCE],list-style-image[GSCE],list-style-position[GSCE],"
16531                 + "list-style-type[GSCE],list-style[GSCE],listStyle[GSCE],listStyleImage[GSCE],"
16532                 + "listStylePosition[GSCE],listStyleType[GSCE],margin-block-end[GSCE],margin-block-start[GSCE],"
16533                 + "margin-block[GSCE],margin-bottom[GSCE],margin-inline-end[GSCE],margin-inline-start[GSCE],"
16534                 + "margin-inline[GSCE],margin-left[GSCE],margin-right[GSCE],margin-top[GSCE],margin[GSCE],"
16535                 + "marginBlock[GSCE],marginBlockEnd[GSCE],marginBlockStart[GSCE],marginBottom[GSCE],"
16536                 + "marginInline[GSCE],marginInlineEnd[GSCE],marginInlineStart[GSCE],marginLeft[GSCE],"
16537                 + "marginRight[GSCE],marginTop[GSCE],marker-end[GSCE],marker-mid[GSCE],marker-start[GSCE],"
16538                 + "marker[GSCE],markerEnd[GSCE],markerMid[GSCE],markerStart[GSCE],mask-clip[GSCE],"
16539                 + "mask-composite[GSCE],mask-image[GSCE],mask-mode[GSCE],mask-origin[GSCE],mask-position-x[GSCE],"
16540                 + "mask-position-y[GSCE],mask-position[GSCE],mask-repeat[GSCE],mask-size[GSCE],mask-type[GSCE],"
16541                 + "mask[GSCE],maskClip[GSCE],maskComposite[GSCE],maskImage[GSCE],maskMode[GSCE],maskOrigin[GSCE],"
16542                 + "maskPosition[GSCE],maskPositionX[GSCE],maskPositionY[GSCE],maskRepeat[GSCE],maskSize[GSCE],"
16543                 + "maskType[GSCE],math-depth[GSCE],math-style[GSCE],mathDepth[GSCE],mathStyle[GSCE],"
16544                 + "max-block-size[GSCE],max-height[GSCE],max-inline-size[GSCE],max-width[GSCE],maxBlockSize[GSCE],"
16545                 + "maxHeight[GSCE],maxInlineSize[GSCE],maxWidth[GSCE],min-block-size[GSCE],min-height[GSCE],"
16546                 + "min-inline-size[GSCE],min-width[GSCE],minBlockSize[GSCE],minHeight[GSCE],minInlineSize[GSCE],"
16547                 + "minWidth[GSCE],mix-blend-mode[GSCE],mixBlendMode[GSCE],MozAnimation[GSCE],"
16548                 + "MozAnimationDelay[GSCE],MozAnimationDirection[GSCE],MozAnimationDuration[GSCE],"
16549                 + "MozAnimationFillMode[GSCE],MozAnimationIterationCount[GSCE],MozAnimationName[GSCE],"
16550                 + "MozAnimationPlayState[GSCE],MozAnimationTimingFunction[GSCE],MozAppearance[GSCE],"
16551                 + "MozBorderEnd[GSCE],MozBorderEndColor[GSCE],MozBorderEndStyle[GSCE],MozBorderEndWidth[GSCE],"
16552                 + "MozBorderImage[GSCE],MozBorderStart[GSCE],MozBorderStartColor[GSCE],MozBorderStartStyle[GSCE],"
16553                 + "MozBorderStartWidth[GSCE],MozBoxAlign[GSCE],MozBoxDirection[GSCE],MozBoxFlex[GSCE],"
16554                 + "MozBoxOrdinalGroup[GSCE],MozBoxOrient[GSCE],MozBoxPack[GSCE],MozBoxSizing[GSCE],"
16555                 + "MozFloatEdge[GSCE],MozFontFeatureSettings[GSCE],MozFontLanguageOverride[GSCE],"
16556                 + "MozForceBrokenImageIcon[GSCE],MozHyphens[GSCE],MozMarginEnd[GSCE],MozMarginStart[GSCE],"
16557                 + "MozOrient[GSCE],MozPaddingEnd[GSCE],MozPaddingStart[GSCE],MozTabSize[GSCE],"
16558                 + "MozTextSizeAdjust[GSCE],MozTransform[GSCE],MozTransformOrigin[GSCE],MozUserInput[GSCE],"
16559                 + "MozUserModify[GSCE],MozUserSelect[GSCE],MozWindowDragging[GSCE],object-fit[GSCE],"
16560                 + "object-position[GSCE],objectFit[GSCE],objectPosition[GSCE],offset-anchor[GSCE],"
16561                 + "offset-distance[GSCE],offset-path[GSCE],offset-position[GSCE],offset-rotate[GSCE],offset[GSCE],"
16562                 + "offsetAnchor[GSCE],offsetDistance[GSCE],offsetPath[GSCE],offsetPosition[GSCE],offsetRotate[GSCE],"
16563                 + "opacity[GSCE],order[GSCE],outline-color[GSCE],outline-offset[GSCE],outline-style[GSCE],"
16564                 + "outline-width[GSCE],outline[GSCE],outlineColor[GSCE],outlineOffset[GSCE],outlineStyle[GSCE],"
16565                 + "outlineWidth[GSCE],overflow-anchor[GSCE],overflow-block[GSCE],overflow-clip-margin[GSCE],"
16566                 + "overflow-inline[GSCE],overflow-wrap[GSCE],overflow-x[GSCE],overflow-y[GSCE],overflow[GSCE],"
16567                 + "overflowAnchor[GSCE],overflowBlock[GSCE],overflowClipMargin[GSCE],overflowInline[GSCE],"
16568                 + "overflowWrap[GSCE],overflowX[GSCE],overflowY[GSCE],overscroll-behavior-block[GSCE],"
16569                 + "overscroll-behavior-inline[GSCE],overscroll-behavior-x[GSCE],overscroll-behavior-y[GSCE],"
16570                 + "overscroll-behavior[GSCE],overscrollBehavior[GSCE],overscrollBehaviorBlock[GSCE],"
16571                 + "overscrollBehaviorInline[GSCE],overscrollBehaviorX[GSCE],overscrollBehaviorY[GSCE],"
16572                 + "padding-block-end[GSCE],padding-block-start[GSCE],padding-block[GSCE],padding-bottom[GSCE],"
16573                 + "padding-inline-end[GSCE],padding-inline-start[GSCE],padding-inline[GSCE],padding-left[GSCE],"
16574                 + "padding-right[GSCE],padding-top[GSCE],padding[GSCE],paddingBlock[GSCE],paddingBlockEnd[GSCE],"
16575                 + "paddingBlockStart[GSCE],paddingBottom[GSCE],paddingInline[GSCE],paddingInlineEnd[GSCE],"
16576                 + "paddingInlineStart[GSCE],paddingLeft[GSCE],paddingRight[GSCE],paddingTop[GSCE],"
16577                 + "page-break-after[GSCE],page-break-before[GSCE],page-break-inside[GSCE],page[GSCE],"
16578                 + "pageBreakAfter[GSCE],pageBreakBefore[GSCE],pageBreakInside[GSCE],paint-order[GSCE],"
16579                 + "paintOrder[GSCE],perspective-origin[GSCE],perspective[GSCE],perspectiveOrigin[GSCE],"
16580                 + "place-content[GSCE],place-items[GSCE],place-self[GSCE],placeContent[GSCE],placeItems[GSCE],"
16581                 + "placeSelf[GSCE],pointer-events[GSCE],pointerEvents[GSCE],position[GSCE],print-color-adjust[GSCE],"
16582                 + "printColorAdjust[GSCE],quotes[GSCE],r[GSCE],resize[GSCE],right[GSCE],rotate[GSCE],row-gap[GSCE],"
16583                 + "rowGap[GSCE],ruby-align[GSCE],ruby-position[GSCE],rubyAlign[GSCE],rubyPosition[GSCE],rx[GSCE],"
16584                 + "ry[GSCE],scale[GSCE],scroll-behavior[GSCE],scroll-margin-block-end[GSCE],"
16585                 + "scroll-margin-block-start[GSCE],scroll-margin-block[GSCE],scroll-margin-bottom[GSCE],"
16586                 + "scroll-margin-inline-end[GSCE],scroll-margin-inline-start[GSCE],scroll-margin-inline[GSCE],"
16587                 + "scroll-margin-left[GSCE],scroll-margin-right[GSCE],scroll-margin-top[GSCE],scroll-margin[GSCE],"
16588                 + "scroll-padding-block-end[GSCE],scroll-padding-block-start[GSCE],scroll-padding-block[GSCE],"
16589                 + "scroll-padding-bottom[GSCE],scroll-padding-inline-end[GSCE],scroll-padding-inline-start[GSCE],"
16590                 + "scroll-padding-inline[GSCE],scroll-padding-left[GSCE],scroll-padding-right[GSCE],"
16591                 + "scroll-padding-top[GSCE],scroll-padding[GSCE],scroll-snap-align[GSCE],scroll-snap-stop[GSCE],"
16592                 + "scroll-snap-type[GSCE],scrollbar-color[GSCE],scrollbar-gutter[GSCE],scrollbar-width[GSCE],"
16593                 + "scrollbarColor[GSCE],scrollbarGutter[GSCE],scrollbarWidth[GSCE],scrollBehavior[GSCE],"
16594                 + "scrollMargin[GSCE],scrollMarginBlock[GSCE],scrollMarginBlockEnd[GSCE],"
16595                 + "scrollMarginBlockStart[GSCE],scrollMarginBottom[GSCE],scrollMarginInline[GSCE],"
16596                 + "scrollMarginInlineEnd[GSCE],scrollMarginInlineStart[GSCE],scrollMarginLeft[GSCE],"
16597                 + "scrollMarginRight[GSCE],scrollMarginTop[GSCE],scrollPadding[GSCE],scrollPaddingBlock[GSCE],"
16598                 + "scrollPaddingBlockEnd[GSCE],scrollPaddingBlockStart[GSCE],scrollPaddingBottom[GSCE],"
16599                 + "scrollPaddingInline[GSCE],scrollPaddingInlineEnd[GSCE],scrollPaddingInlineStart[GSCE],"
16600                 + "scrollPaddingLeft[GSCE],scrollPaddingRight[GSCE],scrollPaddingTop[GSCE],scrollSnapAlign[GSCE],"
16601                 + "scrollSnapStop[GSCE],scrollSnapType[GSCE],shape-image-threshold[GSCE],shape-margin[GSCE],"
16602                 + "shape-outside[GSCE],shape-rendering[GSCE],shapeImageThreshold[GSCE],shapeMargin[GSCE],"
16603                 + "shapeOutside[GSCE],shapeRendering[GSCE],stop-color[GSCE],stop-opacity[GSCE],stopColor[GSCE],"
16604                 + "stopOpacity[GSCE],stroke-dasharray[GSCE],stroke-dashoffset[GSCE],stroke-linecap[GSCE],"
16605                 + "stroke-linejoin[GSCE],stroke-miterlimit[GSCE],stroke-opacity[GSCE],stroke-width[GSCE],"
16606                 + "stroke[GSCE],strokeDasharray[GSCE],strokeDashoffset[GSCE],strokeLinecap[GSCE],"
16607                 + "strokeLinejoin[GSCE],strokeMiterlimit[GSCE],strokeOpacity[GSCE],strokeWidth[GSCE],tab-size[GSCE],"
16608                 + "table-layout[GSCE],tableLayout[GSCE],tabSize[GSCE],text-align-last[GSCE],text-align[GSCE],"
16609                 + "text-anchor[GSCE],text-combine-upright[GSCE],text-decoration-color[GSCE],"
16610                 + "text-decoration-line[GSCE],text-decoration-skip-ink[GSCE],text-decoration-style[GSCE],"
16611                 + "text-decoration-thickness[GSCE],text-decoration[GSCE],text-emphasis-color[GSCE],"
16612                 + "text-emphasis-position[GSCE],text-emphasis-style[GSCE],text-emphasis[GSCE],text-indent[GSCE],"
16613                 + "text-justify[GSCE],text-orientation[GSCE],text-overflow[GSCE],text-rendering[GSCE],"
16614                 + "text-shadow[GSCE],text-transform[GSCE],text-underline-offset[GSCE],text-underline-position[GSCE],"
16615                 + "text-wrap-mode[GSCE],text-wrap-style[GSCE],text-wrap[GSCE],textAlign[GSCE],textAlignLast[GSCE],"
16616                 + "textAnchor[GSCE],textCombineUpright[GSCE],textDecoration[GSCE],textDecorationColor[GSCE],"
16617                 + "textDecorationLine[GSCE],textDecorationSkipInk[GSCE],textDecorationStyle[GSCE],"
16618                 + "textDecorationThickness[GSCE],textEmphasis[GSCE],textEmphasisColor[GSCE],"
16619                 + "textEmphasisPosition[GSCE],textEmphasisStyle[GSCE],textIndent[GSCE],textJustify[GSCE],"
16620                 + "textOrientation[GSCE],textOverflow[GSCE],textRendering[GSCE],textShadow[GSCE],"
16621                 + "textTransform[GSCE],textUnderlineOffset[GSCE],textUnderlinePosition[GSCE],textWrap[GSCE],"
16622                 + "textWrapMode[GSCE],textWrapStyle[GSCE],top[GSCE],touch-action[GSCE],touchAction[GSCE],"
16623                 + "transform-box[GSCE],transform-origin[GSCE],transform-style[GSCE],transform[GSCE],"
16624                 + "transformBox[GSCE],transformOrigin[GSCE],transformStyle[GSCE],transition-delay[GSCE],"
16625                 + "transition-duration[GSCE],transition-property[GSCE],transition-timing-function[GSCE],"
16626                 + "transition[GSCE],transitionDelay[GSCE],transitionDuration[GSCE],transitionProperty[GSCE],"
16627                 + "transitionTimingFunction[GSCE],translate[GSCE],unicode-bidi[GSCE],unicodeBidi[GSCE],"
16628                 + "user-select[GSCE],userSelect[GSCE],vector-effect[GSCE],vectorEffect[GSCE],vertical-align[GSCE],"
16629                 + "verticalAlign[GSCE],visibility[GSCE],WebkitAlignContent[GSCE],webkitAlignContent[GSCE],"
16630                 + "WebkitAlignItems[GSCE],webkitAlignItems[GSCE],WebkitAlignSelf[GSCE],webkitAlignSelf[GSCE],"
16631                 + "WebkitAnimation[GSCE],webkitAnimation[GSCE],WebkitAnimationDelay[GSCE],"
16632                 + "webkitAnimationDelay[GSCE],WebkitAnimationDirection[GSCE],webkitAnimationDirection[GSCE],"
16633                 + "WebkitAnimationDuration[GSCE],webkitAnimationDuration[GSCE],WebkitAnimationFillMode[GSCE],"
16634                 + "webkitAnimationFillMode[GSCE],WebkitAnimationIterationCount[GSCE],"
16635                 + "webkitAnimationIterationCount[GSCE],WebkitAnimationName[GSCE],webkitAnimationName[GSCE],"
16636                 + "WebkitAnimationPlayState[GSCE],webkitAnimationPlayState[GSCE],"
16637                 + "WebkitAnimationTimingFunction[GSCE],webkitAnimationTimingFunction[GSCE],WebkitAppearance[GSCE],"
16638                 + "webkitAppearance[GSCE],WebkitBackfaceVisibility[GSCE],webkitBackfaceVisibility[GSCE],"
16639                 + "WebkitBackgroundClip[GSCE],webkitBackgroundClip[GSCE],WebkitBackgroundOrigin[GSCE],"
16640                 + "webkitBackgroundOrigin[GSCE],WebkitBackgroundSize[GSCE],webkitBackgroundSize[GSCE],"
16641                 + "WebkitBorderBottomLeftRadius[GSCE],webkitBorderBottomLeftRadius[GSCE],"
16642                 + "WebkitBorderBottomRightRadius[GSCE],webkitBorderBottomRightRadius[GSCE],WebkitBorderImage[GSCE],"
16643                 + "webkitBorderImage[GSCE],WebkitBorderRadius[GSCE],webkitBorderRadius[GSCE],"
16644                 + "WebkitBorderTopLeftRadius[GSCE],webkitBorderTopLeftRadius[GSCE],WebkitBorderTopRightRadius[GSCE],"
16645                 + "webkitBorderTopRightRadius[GSCE],WebkitBoxAlign[GSCE],webkitBoxAlign[GSCE],"
16646                 + "WebkitBoxDirection[GSCE],webkitBoxDirection[GSCE],WebkitBoxFlex[GSCE],webkitBoxFlex[GSCE],"
16647                 + "WebkitBoxOrdinalGroup[GSCE],webkitBoxOrdinalGroup[GSCE],WebkitBoxOrient[GSCE],"
16648                 + "webkitBoxOrient[GSCE],WebkitBoxPack[GSCE],webkitBoxPack[GSCE],WebkitBoxShadow[GSCE],"
16649                 + "webkitBoxShadow[GSCE],WebkitBoxSizing[GSCE],webkitBoxSizing[GSCE],WebkitClipPath[GSCE],"
16650                 + "webkitClipPath[GSCE],WebkitFilter[GSCE],webkitFilter[GSCE],WebkitFlex[GSCE],webkitFlex[GSCE],"
16651                 + "WebkitFlexBasis[GSCE],webkitFlexBasis[GSCE],WebkitFlexDirection[GSCE],webkitFlexDirection[GSCE],"
16652                 + "WebkitFlexFlow[GSCE],webkitFlexFlow[GSCE],WebkitFlexGrow[GSCE],webkitFlexGrow[GSCE],"
16653                 + "WebkitFlexShrink[GSCE],webkitFlexShrink[GSCE],WebkitFlexWrap[GSCE],webkitFlexWrap[GSCE],"
16654                 + "WebkitJustifyContent[GSCE],webkitJustifyContent[GSCE],WebkitLineClamp[GSCE],"
16655                 + "webkitLineClamp[GSCE],WebkitMask[GSCE],webkitMask[GSCE],WebkitMaskClip[GSCE],"
16656                 + "webkitMaskClip[GSCE],WebkitMaskComposite[GSCE],webkitMaskComposite[GSCE],WebkitMaskImage[GSCE],"
16657                 + "webkitMaskImage[GSCE],WebkitMaskOrigin[GSCE],webkitMaskOrigin[GSCE],WebkitMaskPosition[GSCE],"
16658                 + "webkitMaskPosition[GSCE],WebkitMaskPositionX[GSCE],webkitMaskPositionX[GSCE],"
16659                 + "WebkitMaskPositionY[GSCE],webkitMaskPositionY[GSCE],WebkitMaskRepeat[GSCE],"
16660                 + "webkitMaskRepeat[GSCE],WebkitMaskSize[GSCE],webkitMaskSize[GSCE],WebkitOrder[GSCE],"
16661                 + "webkitOrder[GSCE],WebkitPerspective[GSCE],webkitPerspective[GSCE],WebkitPerspectiveOrigin[GSCE],"
16662                 + "webkitPerspectiveOrigin[GSCE],WebkitTextFillColor[GSCE],webkitTextFillColor[GSCE],"
16663                 + "WebkitTextSecurity[GSCE],webkitTextSecurity[GSCE],WebkitTextSizeAdjust[GSCE],"
16664                 + "webkitTextSizeAdjust[GSCE],WebkitTextStroke[GSCE],webkitTextStroke[GSCE],"
16665                 + "WebkitTextStrokeColor[GSCE],webkitTextStrokeColor[GSCE],WebkitTextStrokeWidth[GSCE],"
16666                 + "webkitTextStrokeWidth[GSCE],WebkitTransform[GSCE],webkitTransform[GSCE],"
16667                 + "WebkitTransformOrigin[GSCE],webkitTransformOrigin[GSCE],WebkitTransformStyle[GSCE],"
16668                 + "webkitTransformStyle[GSCE],WebkitTransition[GSCE],webkitTransition[GSCE],"
16669                 + "WebkitTransitionDelay[GSCE],webkitTransitionDelay[GSCE],WebkitTransitionDuration[GSCE],"
16670                 + "webkitTransitionDuration[GSCE],WebkitTransitionProperty[GSCE],webkitTransitionProperty[GSCE],"
16671                 + "WebkitTransitionTimingFunction[GSCE],webkitTransitionTimingFunction[GSCE],WebkitUserSelect[GSCE],"
16672                 + "webkitUserSelect[GSCE],white-space-collapse[GSCE],white-space[GSCE],whiteSpace[GSCE],"
16673                 + "whiteSpaceCollapse[GSCE],width[GSCE],will-change[GSCE],willChange[GSCE],word-break[GSCE],"
16674                 + "word-spacing[GSCE],word-wrap[GSCE],wordBreak[GSCE],wordSpacing[GSCE],wordWrap[GSCE],"
16675                 + "writing-mode[GSCE],writingMode[GSCE],x[GSCE],y[GSCE],z-index[GSCE],zIndex[GSCE],"
16676                 + "zoom[GSCE]")
16677     @HtmlUnitNYI(CHROME = "backgroundAttachment[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
16678                 + "backgroundPosition[GSCE],backgroundRepeat[GSCE],blockSize[GSCE],"
16679                 + "borderBottomColor[GSCE],borderBottomStyle[GSCE],"
16680                 + "borderBottomWidth[GSCE],borderLeftColor[GSCE],borderLeftStyle[GSCE],borderLeftWidth[GSCE],"
16681                 + "borderRightColor[GSCE],borderRightStyle[GSCE],borderRightWidth[GSCE],borderTop[GSCE],"
16682                 + "borderTopColor[GSCE],borderTopStyle[GSCE],borderTopWidth[GSCE],bottom[GSCE],color[GSCE],"
16683                 + "constructor(),cssFloat[GSCE],cssText[GSCE],display[GSCE],font[GSCE],fontFamily[GSCE],"
16684                 + "fontSize[GSCE],getPropertyPriority(),getPropertyValue(),height[GSCE],item(),left[GSCE],"
16685                 + "length[GCE],letterSpacing[GSCE],lineHeight[GSCE],margin[GSCE],marginBottom[GSCE],"
16686                 + "marginLeft[GSCE],marginRight[GSCE],marginTop[GSCE],maxHeight[GSCE],maxWidth[GSCE],"
16687                 + "minHeight[GSCE],minWidth[GSCE],opacity[GSCE],orphans[GSCE],outline[GSCE],outlineWidth[GSCE],"
16688                 + "padding[GSCE],paddingBottom[GSCE],paddingLeft[GSCE],paddingRight[GSCE],paddingTop[GSCE],"
16689                 + "parentRule[GSCE],position[GSCE],removeProperty(),right[GSCE],rubyAlign[GSCE],"
16690                 + "setProperty(),size[GSCE],"
16691                 + "textIndent[GSCE],top[GSCE],verticalAlign[GSCE],widows[GSCE],width[GSCE],wordSpacing[GSCE],"
16692                 + "zIndex[GSCE]",
16693             EDGE = "backgroundAttachment[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
16694                 + "backgroundPosition[GSCE],backgroundRepeat[GSCE],blockSize[GSCE],"
16695                 + "borderBottomColor[GSCE],borderBottomStyle[GSCE],"
16696                 + "borderBottomWidth[GSCE],borderLeftColor[GSCE],borderLeftStyle[GSCE],borderLeftWidth[GSCE],"
16697                 + "borderRightColor[GSCE],borderRightStyle[GSCE],borderRightWidth[GSCE],borderTop[GSCE],"
16698                 + "borderTopColor[GSCE],borderTopStyle[GSCE],borderTopWidth[GSCE],bottom[GSCE],color[GSCE],"
16699                 + "constructor(),cssFloat[GSCE],cssText[GSCE],display[GSCE],font[GSCE],fontFamily[GSCE],"
16700                 + "fontSize[GSCE],getPropertyPriority(),getPropertyValue(),height[GSCE],item(),left[GSCE],"
16701                 + "length[GCE],letterSpacing[GSCE],lineHeight[GSCE],margin[GSCE],marginBottom[GSCE],"
16702                 + "marginLeft[GSCE],marginRight[GSCE],marginTop[GSCE],maxHeight[GSCE],maxWidth[GSCE],"
16703                 + "minHeight[GSCE],minWidth[GSCE],opacity[GSCE],orphans[GSCE],outline[GSCE],outlineWidth[GSCE],"
16704                 + "padding[GSCE],paddingBottom[GSCE],paddingLeft[GSCE],paddingRight[GSCE],paddingTop[GSCE],"
16705                 + "parentRule[GSCE],position[GSCE],removeProperty(),right[GSCE],rubyAlign[GSCE],"
16706                 + "setProperty(),size[GSCE],"
16707                 + "textIndent[GSCE],top[GSCE],verticalAlign[GSCE],widows[GSCE],width[GSCE],wordSpacing[GSCE],"
16708                 + "zIndex[GSCE]",
16709             FF_ESR = "constructor()",
16710             FF = "constructor()")
16711     public void computedStyle() throws Exception {
16712         testString("", "window.getComputedStyle(document.body)");
16713     }
16714 
16715     /**
16716      * Test {@link ComputedCSSStyleDeclaration}.
16717      *
16718      * @throws Exception if the test fails
16719      */
16720     @Test
16721     @Alerts(CHROME = "constructor(),cssFloat[GSCE],cssText[GSCE],getPropertyPriority(),getPropertyValue(),item(),"
16722                 + "length[GCE],parentRule[GCE],removeProperty(),"
16723                 + "setProperty()",
16724             EDGE = "constructor(),cssFloat[GSCE],cssText[GSCE],getPropertyPriority(),getPropertyValue(),item(),"
16725                 + "length[GCE],parentRule[GCE],removeProperty(),"
16726                 + "setProperty()",
16727             FF = "-moz-animation-delay[GSCE],-moz-animation-direction[GSCE],-moz-animation-duration[GSCE],"
16728                 + "-moz-animation-fill-mode[GSCE],-moz-animation-iteration-count[GSCE],-moz-animation-name[GSCE],"
16729                 + "-moz-animation-play-state[GSCE],-moz-animation-timing-function[GSCE],-moz-animation[GSCE],"
16730                 + "-moz-appearance[GSCE],-moz-backface-visibility[GSCE],-moz-border-end-color[GSCE],"
16731                 + "-moz-border-end-style[GSCE],-moz-border-end-width[GSCE],-moz-border-end[GSCE],"
16732                 + "-moz-border-image[GSCE],-moz-border-start-color[GSCE],-moz-border-start-style[GSCE],"
16733                 + "-moz-border-start-width[GSCE],-moz-border-start[GSCE],-moz-box-align[GSCE],"
16734                 + "-moz-box-direction[GSCE],-moz-box-flex[GSCE],-moz-box-ordinal-group[GSCE],-moz-box-orient[GSCE],"
16735                 + "-moz-box-pack[GSCE],-moz-box-sizing[GSCE],-moz-float-edge[GSCE],-moz-font-feature-settings[GSCE],"
16736                 + "-moz-font-language-override[GSCE],-moz-force-broken-image-icon[GSCE],-moz-hyphens[GSCE],"
16737                 + "-moz-margin-end[GSCE],-moz-margin-start[GSCE],-moz-orient[GSCE],-moz-padding-end[GSCE],"
16738                 + "-moz-padding-start[GSCE],-moz-perspective-origin[GSCE],-moz-perspective[GSCE],"
16739                 + "-moz-tab-size[GSCE],-moz-text-size-adjust[GSCE],-moz-transform-origin[GSCE],"
16740                 + "-moz-transform-style[GSCE],-moz-transform[GSCE],-moz-user-select[GSCE],"
16741                 + "-moz-window-dragging[GSCE],-webkit-align-content[GSCE],-webkit-align-items[GSCE],"
16742                 + "-webkit-align-self[GSCE],-webkit-animation-delay[GSCE],-webkit-animation-direction[GSCE],"
16743                 + "-webkit-animation-duration[GSCE],-webkit-animation-fill-mode[GSCE],"
16744                 + "-webkit-animation-iteration-count[GSCE],-webkit-animation-name[GSCE],"
16745                 + "-webkit-animation-play-state[GSCE],-webkit-animation-timing-function[GSCE],"
16746                 + "-webkit-animation[GSCE],-webkit-appearance[GSCE],-webkit-backface-visibility[GSCE],"
16747                 + "-webkit-background-clip[GSCE],-webkit-background-origin[GSCE],-webkit-background-size[GSCE],"
16748                 + "-webkit-border-bottom-left-radius[GSCE],-webkit-border-bottom-right-radius[GSCE],"
16749                 + "-webkit-border-image[GSCE],-webkit-border-radius[GSCE],-webkit-border-top-left-radius[GSCE],"
16750                 + "-webkit-border-top-right-radius[GSCE],-webkit-box-align[GSCE],-webkit-box-direction[GSCE],"
16751                 + "-webkit-box-flex[GSCE],-webkit-box-ordinal-group[GSCE],-webkit-box-orient[GSCE],"
16752                 + "-webkit-box-pack[GSCE],-webkit-box-shadow[GSCE],-webkit-box-sizing[GSCE],-webkit-clip-path[GSCE],"
16753                 + "-webkit-filter[GSCE],-webkit-flex-basis[GSCE],-webkit-flex-direction[GSCE],"
16754                 + "-webkit-flex-flow[GSCE],-webkit-flex-grow[GSCE],-webkit-flex-shrink[GSCE],"
16755                 + "-webkit-flex-wrap[GSCE],-webkit-flex[GSCE],-webkit-font-feature-settings[GSCE],"
16756                 + "-webkit-justify-content[GSCE],-webkit-line-clamp[GSCE],-webkit-mask-clip[GSCE],"
16757                 + "-webkit-mask-composite[GSCE],-webkit-mask-image[GSCE],-webkit-mask-origin[GSCE],"
16758                 + "-webkit-mask-position-x[GSCE],-webkit-mask-position-y[GSCE],-webkit-mask-position[GSCE],"
16759                 + "-webkit-mask-repeat[GSCE],-webkit-mask-size[GSCE],-webkit-mask[GSCE],-webkit-order[GSCE],"
16760                 + "-webkit-perspective-origin[GSCE],-webkit-perspective[GSCE],-webkit-text-fill-color[GSCE],"
16761                 + "-webkit-text-security[GSCE],-webkit-text-size-adjust[GSCE],-webkit-text-stroke-color[GSCE],"
16762                 + "-webkit-text-stroke-width[GSCE],-webkit-text-stroke[GSCE],-webkit-transform-origin[GSCE],"
16763                 + "-webkit-transform-style[GSCE],-webkit-transform[GSCE],-webkit-transition-delay[GSCE],"
16764                 + "-webkit-transition-duration[GSCE],-webkit-transition-property[GSCE],"
16765                 + "-webkit-transition-timing-function[GSCE],-webkit-transition[GSCE],-webkit-user-select[GSCE],"
16766                 + "accent-color[GSCE],accentColor[GSCE],align-content[GSCE],align-items[GSCE],align-self[GSCE],"
16767                 + "alignContent[GSCE],alignItems[GSCE],alignSelf[GSCE],all[GSCE],animation-composition[GSCE],"
16768                 + "animation-delay[GSCE],animation-direction[GSCE],animation-duration[GSCE],"
16769                 + "animation-fill-mode[GSCE],animation-iteration-count[GSCE],animation-name[GSCE],"
16770                 + "animation-play-state[GSCE],animation-timing-function[GSCE],animation[GSCE],"
16771                 + "animationComposition[GSCE],animationDelay[GSCE],animationDirection[GSCE],animationDuration[GSCE],"
16772                 + "animationFillMode[GSCE],animationIterationCount[GSCE],animationName[GSCE],"
16773                 + "animationPlayState[GSCE],animationTimingFunction[GSCE],appearance[GSCE],aspect-ratio[GSCE],"
16774                 + "aspectRatio[GSCE],backdrop-filter[GSCE],backdropFilter[GSCE],backface-visibility[GSCE],"
16775                 + "backfaceVisibility[GSCE],background-attachment[GSCE],background-blend-mode[GSCE],"
16776                 + "background-clip[GSCE],background-color[GSCE],background-image[GSCE],background-origin[GSCE],"
16777                 + "background-position-x[GSCE],background-position-y[GSCE],background-position[GSCE],"
16778                 + "background-repeat[GSCE],background-size[GSCE],background[GSCE],backgroundAttachment[GSCE],"
16779                 + "backgroundBlendMode[GSCE],backgroundClip[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
16780                 + "backgroundOrigin[GSCE],backgroundPosition[GSCE],backgroundPositionX[GSCE],"
16781                 + "backgroundPositionY[GSCE],backgroundRepeat[GSCE],backgroundSize[GSCE],baseline-source[GSCE],"
16782                 + "baselineSource[GSCE],block-size[GSCE],blockSize[GSCE],border-block-color[GSCE],"
16783                 + "border-block-end-color[GSCE],border-block-end-style[GSCE],border-block-end-width[GSCE],"
16784                 + "border-block-end[GSCE],border-block-start-color[GSCE],border-block-start-style[GSCE],"
16785                 + "border-block-start-width[GSCE],border-block-start[GSCE],border-block-style[GSCE],"
16786                 + "border-block-width[GSCE],border-block[GSCE],border-bottom-color[GSCE],"
16787                 + "border-bottom-left-radius[GSCE],border-bottom-right-radius[GSCE],border-bottom-style[GSCE],"
16788                 + "border-bottom-width[GSCE],border-bottom[GSCE],border-collapse[GSCE],border-color[GSCE],"
16789                 + "border-end-end-radius[GSCE],border-end-start-radius[GSCE],border-image-outset[GSCE],"
16790                 + "border-image-repeat[GSCE],border-image-slice[GSCE],border-image-source[GSCE],"
16791                 + "border-image-width[GSCE],border-image[GSCE],border-inline-color[GSCE],"
16792                 + "border-inline-end-color[GSCE],border-inline-end-style[GSCE],border-inline-end-width[GSCE],"
16793                 + "border-inline-end[GSCE],border-inline-start-color[GSCE],border-inline-start-style[GSCE],"
16794                 + "border-inline-start-width[GSCE],border-inline-start[GSCE],border-inline-style[GSCE],"
16795                 + "border-inline-width[GSCE],border-inline[GSCE],border-left-color[GSCE],border-left-style[GSCE],"
16796                 + "border-left-width[GSCE],border-left[GSCE],border-radius[GSCE],border-right-color[GSCE],"
16797                 + "border-right-style[GSCE],border-right-width[GSCE],border-right[GSCE],border-spacing[GSCE],"
16798                 + "border-start-end-radius[GSCE],border-start-start-radius[GSCE],border-style[GSCE],"
16799                 + "border-top-color[GSCE],border-top-left-radius[GSCE],border-top-right-radius[GSCE],"
16800                 + "border-top-style[GSCE],border-top-width[GSCE],border-top[GSCE],border-width[GSCE],border[GSCE],"
16801                 + "borderBlock[GSCE],borderBlockColor[GSCE],borderBlockEnd[GSCE],borderBlockEndColor[GSCE],"
16802                 + "borderBlockEndStyle[GSCE],borderBlockEndWidth[GSCE],borderBlockStart[GSCE],"
16803                 + "borderBlockStartColor[GSCE],borderBlockStartStyle[GSCE],borderBlockStartWidth[GSCE],"
16804                 + "borderBlockStyle[GSCE],borderBlockWidth[GSCE],borderBottom[GSCE],borderBottomColor[GSCE],"
16805                 + "borderBottomLeftRadius[GSCE],borderBottomRightRadius[GSCE],borderBottomStyle[GSCE],"
16806                 + "borderBottomWidth[GSCE],borderCollapse[GSCE],borderColor[GSCE],borderEndEndRadius[GSCE],"
16807                 + "borderEndStartRadius[GSCE],borderImage[GSCE],borderImageOutset[GSCE],borderImageRepeat[GSCE],"
16808                 + "borderImageSlice[GSCE],borderImageSource[GSCE],borderImageWidth[GSCE],borderInline[GSCE],"
16809                 + "borderInlineColor[GSCE],borderInlineEnd[GSCE],borderInlineEndColor[GSCE],"
16810                 + "borderInlineEndStyle[GSCE],borderInlineEndWidth[GSCE],borderInlineStart[GSCE],"
16811                 + "borderInlineStartColor[GSCE],borderInlineStartStyle[GSCE],borderInlineStartWidth[GSCE],"
16812                 + "borderInlineStyle[GSCE],borderInlineWidth[GSCE],borderLeft[GSCE],borderLeftColor[GSCE],"
16813                 + "borderLeftStyle[GSCE],borderLeftWidth[GSCE],borderRadius[GSCE],borderRight[GSCE],"
16814                 + "borderRightColor[GSCE],borderRightStyle[GSCE],borderRightWidth[GSCE],borderSpacing[GSCE],"
16815                 + "borderStartEndRadius[GSCE],borderStartStartRadius[GSCE],borderStyle[GSCE],borderTop[GSCE],"
16816                 + "borderTopColor[GSCE],borderTopLeftRadius[GSCE],borderTopRightRadius[GSCE],borderTopStyle[GSCE],"
16817                 + "borderTopWidth[GSCE],borderWidth[GSCE],bottom[GSCE],box-decoration-break[GSCE],box-shadow[GSCE],"
16818                 + "box-sizing[GSCE],boxDecorationBreak[GSCE],boxShadow[GSCE],boxSizing[GSCE],break-after[GSCE],"
16819                 + "break-before[GSCE],break-inside[GSCE],breakAfter[GSCE],breakBefore[GSCE],breakInside[GSCE],"
16820                 + "caption-side[GSCE],captionSide[GSCE],caret-color[GSCE],caretColor[GSCE],clear[GSCE],"
16821                 + "clip-path[GSCE],clip-rule[GSCE],clip[GSCE],clipPath[GSCE],clipRule[GSCE],color-adjust[GSCE],"
16822                 + "color-interpolation-filters[GSCE],color-interpolation[GSCE],color-scheme[GSCE],color[GSCE],"
16823                 + "colorAdjust[GSCE],colorInterpolation[GSCE],colorInterpolationFilters[GSCE],colorScheme[GSCE],"
16824                 + "column-count[GSCE],column-fill[GSCE],column-gap[GSCE],column-rule-color[GSCE],"
16825                 + "column-rule-style[GSCE],column-rule-width[GSCE],column-rule[GSCE],column-span[GSCE],"
16826                 + "column-width[GSCE],columnCount[GSCE],columnFill[GSCE],columnGap[GSCE],columnRule[GSCE],"
16827                 + "columnRuleColor[GSCE],columnRuleStyle[GSCE],columnRuleWidth[GSCE],columns[GSCE],columnSpan[GSCE],"
16828                 + "columnWidth[GSCE],constructor(),contain-intrinsic-block-size[GSCE],"
16829                 + "contain-intrinsic-height[GSCE],contain-intrinsic-inline-size[GSCE],contain-intrinsic-size[GSCE],"
16830                 + "contain-intrinsic-width[GSCE],contain[GSCE],container-name[GSCE],container-type[GSCE],"
16831                 + "container[GSCE],containerName[GSCE],containerType[GSCE],containIntrinsicBlockSize[GSCE],"
16832                 + "containIntrinsicHeight[GSCE],containIntrinsicInlineSize[GSCE],containIntrinsicSize[GSCE],"
16833                 + "containIntrinsicWidth[GSCE],content-visibility[GSCE],content[GSCE],contentVisibility[GSCE],"
16834                 + "counter-increment[GSCE],counter-reset[GSCE],counter-set[GSCE],counterIncrement[GSCE],"
16835                 + "counterReset[GSCE],counterSet[GSCE],cssFloat[GSCE],cursor[GSCE],cx[GSCE],cy[GSCE],d[GSCE],"
16836                 + "direction[GSCE],display[GSCE],dominant-baseline[GSCE],dominantBaseline[GSCE],empty-cells[GSCE],"
16837                 + "emptyCells[GSCE],fill-opacity[GSCE],fill-rule[GSCE],fill[GSCE],fillOpacity[GSCE],fillRule[GSCE],"
16838                 + "filter[GSCE],flex-basis[GSCE],flex-direction[GSCE],flex-flow[GSCE],flex-grow[GSCE],"
16839                 + "flex-shrink[GSCE],flex-wrap[GSCE],flex[GSCE],flexBasis[GSCE],flexDirection[GSCE],flexFlow[GSCE],"
16840                 + "flexGrow[GSCE],flexShrink[GSCE],flexWrap[GSCE],float[GSCE],flood-color[GSCE],flood-opacity[GSCE],"
16841                 + "floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],font-feature-settings[GSCE],"
16842                 + "font-kerning[GSCE],font-language-override[GSCE],font-optical-sizing[GSCE],font-palette[GSCE],"
16843                 + "font-size-adjust[GSCE],font-size[GSCE],font-stretch[GSCE],font-style[GSCE],"
16844                 + "font-synthesis-position[GSCE],font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],"
16845                 + "font-synthesis-weight[GSCE],font-synthesis[GSCE],font-variant-alternates[GSCE],"
16846                 + "font-variant-caps[GSCE],font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],"
16847                 + "font-variant-numeric[GSCE],font-variant-position[GSCE],font-variant[GSCE],"
16848                 + "font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
16849                 + "fontFeatureSettings[GSCE],fontKerning[GSCE],fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],"
16850                 + "fontPalette[GSCE],fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],"
16851                 + "fontSynthesis[GSCE],fontSynthesisPosition[GSCE],fontSynthesisSmallCaps[GSCE],"
16852                 + "fontSynthesisStyle[GSCE],fontSynthesisWeight[GSCE],fontVariant[GSCE],fontVariantAlternates[GSCE],"
16853                 + "fontVariantCaps[GSCE],fontVariantEastAsian[GSCE],fontVariantLigatures[GSCE],"
16854                 + "fontVariantNumeric[GSCE],fontVariantPosition[GSCE],fontVariationSettings[GSCE],fontWeight[GSCE],"
16855                 + "forced-color-adjust[GSCE],forcedColorAdjust[GSCE],gap[GSCE],grid-area[GSCE],"
16856                 + "grid-auto-columns[GSCE],grid-auto-flow[GSCE],grid-auto-rows[GSCE],grid-column-end[GSCE],"
16857                 + "grid-column-gap[GSCE],grid-column-start[GSCE],grid-column[GSCE],grid-gap[GSCE],"
16858                 + "grid-row-end[GSCE],grid-row-gap[GSCE],grid-row-start[GSCE],grid-row[GSCE],"
16859                 + "grid-template-areas[GSCE],grid-template-columns[GSCE],grid-template-rows[GSCE],"
16860                 + "grid-template[GSCE],grid[GSCE],gridArea[GSCE],gridAutoColumns[GSCE],gridAutoFlow[GSCE],"
16861                 + "gridAutoRows[GSCE],gridColumn[GSCE],gridColumnEnd[GSCE],gridColumnGap[GSCE],"
16862                 + "gridColumnStart[GSCE],gridGap[GSCE],gridRow[GSCE],gridRowEnd[GSCE],gridRowGap[GSCE],"
16863                 + "gridRowStart[GSCE],gridTemplate[GSCE],gridTemplateAreas[GSCE],gridTemplateColumns[GSCE],"
16864                 + "gridTemplateRows[GSCE],height[GSCE],hyphenate-character[GSCE],hyphenate-limit-chars[GSCE],"
16865                 + "hyphenateCharacter[GSCE],hyphenateLimitChars[GSCE],hyphens[GSCE],image-orientation[GSCE],"
16866                 + "image-rendering[GSCE],imageOrientation[GSCE],imageRendering[GSCE],ime-mode[GSCE],imeMode[GSCE],"
16867                 + "inline-size[GSCE],inlineSize[GSCE],inset-block-end[GSCE],inset-block-start[GSCE],"
16868                 + "inset-block[GSCE],inset-inline-end[GSCE],inset-inline-start[GSCE],inset-inline[GSCE],inset[GSCE],"
16869                 + "insetBlock[GSCE],insetBlockEnd[GSCE],insetBlockStart[GSCE],insetInline[GSCE],"
16870                 + "insetInlineEnd[GSCE],insetInlineStart[GSCE],isolation[GSCE],justify-content[GSCE],"
16871                 + "justify-items[GSCE],justify-self[GSCE],justifyContent[GSCE],justifyItems[GSCE],justifySelf[GSCE],"
16872                 + "left[GSCE],letter-spacing[GSCE],letterSpacing[GSCE],lighting-color[GSCE],lightingColor[GSCE],"
16873                 + "line-break[GSCE],line-height[GSCE],lineBreak[GSCE],lineHeight[GSCE],list-style-image[GSCE],"
16874                 + "list-style-position[GSCE],list-style-type[GSCE],list-style[GSCE],listStyle[GSCE],"
16875                 + "listStyleImage[GSCE],listStylePosition[GSCE],listStyleType[GSCE],margin-block-end[GSCE],"
16876                 + "margin-block-start[GSCE],margin-block[GSCE],margin-bottom[GSCE],margin-inline-end[GSCE],"
16877                 + "margin-inline-start[GSCE],margin-inline[GSCE],margin-left[GSCE],margin-right[GSCE],"
16878                 + "margin-top[GSCE],margin[GSCE],marginBlock[GSCE],marginBlockEnd[GSCE],marginBlockStart[GSCE],"
16879                 + "marginBottom[GSCE],marginInline[GSCE],marginInlineEnd[GSCE],marginInlineStart[GSCE],"
16880                 + "marginLeft[GSCE],marginRight[GSCE],marginTop[GSCE],marker-end[GSCE],marker-mid[GSCE],"
16881                 + "marker-start[GSCE],marker[GSCE],markerEnd[GSCE],markerMid[GSCE],markerStart[GSCE],"
16882                 + "mask-clip[GSCE],mask-composite[GSCE],mask-image[GSCE],mask-mode[GSCE],mask-origin[GSCE],"
16883                 + "mask-position-x[GSCE],mask-position-y[GSCE],mask-position[GSCE],mask-repeat[GSCE],"
16884                 + "mask-size[GSCE],mask-type[GSCE],mask[GSCE],maskClip[GSCE],maskComposite[GSCE],maskImage[GSCE],"
16885                 + "maskMode[GSCE],maskOrigin[GSCE],maskPosition[GSCE],maskPositionX[GSCE],maskPositionY[GSCE],"
16886                 + "maskRepeat[GSCE],maskSize[GSCE],maskType[GSCE],math-depth[GSCE],math-style[GSCE],mathDepth[GSCE],"
16887                 + "mathStyle[GSCE],max-block-size[GSCE],max-height[GSCE],max-inline-size[GSCE],max-width[GSCE],"
16888                 + "maxBlockSize[GSCE],maxHeight[GSCE],maxInlineSize[GSCE],maxWidth[GSCE],min-block-size[GSCE],"
16889                 + "min-height[GSCE],min-inline-size[GSCE],min-width[GSCE],minBlockSize[GSCE],minHeight[GSCE],"
16890                 + "minInlineSize[GSCE],minWidth[GSCE],mix-blend-mode[GSCE],mixBlendMode[GSCE],MozAnimation[GSCE],"
16891                 + "MozAnimationDelay[GSCE],MozAnimationDirection[GSCE],MozAnimationDuration[GSCE],"
16892                 + "MozAnimationFillMode[GSCE],MozAnimationIterationCount[GSCE],MozAnimationName[GSCE],"
16893                 + "MozAnimationPlayState[GSCE],MozAnimationTimingFunction[GSCE],MozAppearance[GSCE],"
16894                 + "MozBackfaceVisibility[GSCE],MozBorderEnd[GSCE],MozBorderEndColor[GSCE],MozBorderEndStyle[GSCE],"
16895                 + "MozBorderEndWidth[GSCE],MozBorderImage[GSCE],MozBorderStart[GSCE],MozBorderStartColor[GSCE],"
16896                 + "MozBorderStartStyle[GSCE],MozBorderStartWidth[GSCE],MozBoxAlign[GSCE],MozBoxDirection[GSCE],"
16897                 + "MozBoxFlex[GSCE],MozBoxOrdinalGroup[GSCE],MozBoxOrient[GSCE],MozBoxPack[GSCE],MozBoxSizing[GSCE],"
16898                 + "MozFloatEdge[GSCE],MozFontFeatureSettings[GSCE],MozFontLanguageOverride[GSCE],"
16899                 + "MozForceBrokenImageIcon[GSCE],MozHyphens[GSCE],MozMarginEnd[GSCE],MozMarginStart[GSCE],"
16900                 + "MozOrient[GSCE],MozPaddingEnd[GSCE],MozPaddingStart[GSCE],MozPerspective[GSCE],"
16901                 + "MozPerspectiveOrigin[GSCE],MozTabSize[GSCE],MozTextSizeAdjust[GSCE],MozTransform[GSCE],"
16902                 + "MozTransformOrigin[GSCE],MozTransformStyle[GSCE],MozUserSelect[GSCE],MozWindowDragging[GSCE],"
16903                 + "object-fit[GSCE],object-position[GSCE],objectFit[GSCE],objectPosition[GSCE],offset-anchor[GSCE],"
16904                 + "offset-distance[GSCE],offset-path[GSCE],offset-position[GSCE],offset-rotate[GSCE],offset[GSCE],"
16905                 + "offsetAnchor[GSCE],offsetDistance[GSCE],offsetPath[GSCE],offsetPosition[GSCE],offsetRotate[GSCE],"
16906                 + "opacity[GSCE],order[GSCE],outline-color[GSCE],outline-offset[GSCE],outline-style[GSCE],"
16907                 + "outline-width[GSCE],outline[GSCE],outlineColor[GSCE],outlineOffset[GSCE],outlineStyle[GSCE],"
16908                 + "outlineWidth[GSCE],overflow-anchor[GSCE],overflow-block[GSCE],overflow-clip-margin[GSCE],"
16909                 + "overflow-inline[GSCE],overflow-wrap[GSCE],overflow-x[GSCE],overflow-y[GSCE],overflow[GSCE],"
16910                 + "overflowAnchor[GSCE],overflowBlock[GSCE],overflowClipMargin[GSCE],overflowInline[GSCE],"
16911                 + "overflowWrap[GSCE],overflowX[GSCE],overflowY[GSCE],overscroll-behavior-block[GSCE],"
16912                 + "overscroll-behavior-inline[GSCE],overscroll-behavior-x[GSCE],overscroll-behavior-y[GSCE],"
16913                 + "overscroll-behavior[GSCE],overscrollBehavior[GSCE],overscrollBehaviorBlock[GSCE],"
16914                 + "overscrollBehaviorInline[GSCE],overscrollBehaviorX[GSCE],overscrollBehaviorY[GSCE],"
16915                 + "padding-block-end[GSCE],padding-block-start[GSCE],padding-block[GSCE],padding-bottom[GSCE],"
16916                 + "padding-inline-end[GSCE],padding-inline-start[GSCE],padding-inline[GSCE],padding-left[GSCE],"
16917                 + "padding-right[GSCE],padding-top[GSCE],padding[GSCE],paddingBlock[GSCE],paddingBlockEnd[GSCE],"
16918                 + "paddingBlockStart[GSCE],paddingBottom[GSCE],paddingInline[GSCE],paddingInlineEnd[GSCE],"
16919                 + "paddingInlineStart[GSCE],paddingLeft[GSCE],paddingRight[GSCE],paddingTop[GSCE],"
16920                 + "page-break-after[GSCE],page-break-before[GSCE],page-break-inside[GSCE],page[GSCE],"
16921                 + "pageBreakAfter[GSCE],pageBreakBefore[GSCE],pageBreakInside[GSCE],paint-order[GSCE],"
16922                 + "paintOrder[GSCE],perspective-origin[GSCE],perspective[GSCE],perspectiveOrigin[GSCE],"
16923                 + "place-content[GSCE],place-items[GSCE],place-self[GSCE],placeContent[GSCE],placeItems[GSCE],"
16924                 + "placeSelf[GSCE],pointer-events[GSCE],pointerEvents[GSCE],position[GSCE],print-color-adjust[GSCE],"
16925                 + "printColorAdjust[GSCE],quotes[GSCE],r[GSCE],resize[GSCE],right[GSCE],rotate[GSCE],row-gap[GSCE],"
16926                 + "rowGap[GSCE],ruby-align[GSCE],ruby-position[GSCE],rubyAlign[GSCE],rubyPosition[GSCE],rx[GSCE],"
16927                 + "ry[GSCE],scale[GSCE],scroll-behavior[GSCE],scroll-margin-block-end[GSCE],"
16928                 + "scroll-margin-block-start[GSCE],scroll-margin-block[GSCE],scroll-margin-bottom[GSCE],"
16929                 + "scroll-margin-inline-end[GSCE],scroll-margin-inline-start[GSCE],scroll-margin-inline[GSCE],"
16930                 + "scroll-margin-left[GSCE],scroll-margin-right[GSCE],scroll-margin-top[GSCE],scroll-margin[GSCE],"
16931                 + "scroll-padding-block-end[GSCE],scroll-padding-block-start[GSCE],scroll-padding-block[GSCE],"
16932                 + "scroll-padding-bottom[GSCE],scroll-padding-inline-end[GSCE],scroll-padding-inline-start[GSCE],"
16933                 + "scroll-padding-inline[GSCE],scroll-padding-left[GSCE],scroll-padding-right[GSCE],"
16934                 + "scroll-padding-top[GSCE],scroll-padding[GSCE],scroll-snap-align[GSCE],scroll-snap-stop[GSCE],"
16935                 + "scroll-snap-type[GSCE],scrollbar-color[GSCE],scrollbar-gutter[GSCE],scrollbar-width[GSCE],"
16936                 + "scrollbarColor[GSCE],scrollbarGutter[GSCE],scrollbarWidth[GSCE],scrollBehavior[GSCE],"
16937                 + "scrollMargin[GSCE],scrollMarginBlock[GSCE],scrollMarginBlockEnd[GSCE],"
16938                 + "scrollMarginBlockStart[GSCE],scrollMarginBottom[GSCE],scrollMarginInline[GSCE],"
16939                 + "scrollMarginInlineEnd[GSCE],scrollMarginInlineStart[GSCE],scrollMarginLeft[GSCE],"
16940                 + "scrollMarginRight[GSCE],scrollMarginTop[GSCE],scrollPadding[GSCE],scrollPaddingBlock[GSCE],"
16941                 + "scrollPaddingBlockEnd[GSCE],scrollPaddingBlockStart[GSCE],scrollPaddingBottom[GSCE],"
16942                 + "scrollPaddingInline[GSCE],scrollPaddingInlineEnd[GSCE],scrollPaddingInlineStart[GSCE],"
16943                 + "scrollPaddingLeft[GSCE],scrollPaddingRight[GSCE],scrollPaddingTop[GSCE],scrollSnapAlign[GSCE],"
16944                 + "scrollSnapStop[GSCE],scrollSnapType[GSCE],shape-image-threshold[GSCE],shape-margin[GSCE],"
16945                 + "shape-outside[GSCE],shape-rendering[GSCE],shapeImageThreshold[GSCE],shapeMargin[GSCE],"
16946                 + "shapeOutside[GSCE],shapeRendering[GSCE],stop-color[GSCE],stop-opacity[GSCE],stopColor[GSCE],"
16947                 + "stopOpacity[GSCE],stroke-dasharray[GSCE],stroke-dashoffset[GSCE],stroke-linecap[GSCE],"
16948                 + "stroke-linejoin[GSCE],stroke-miterlimit[GSCE],stroke-opacity[GSCE],stroke-width[GSCE],"
16949                 + "stroke[GSCE],strokeDasharray[GSCE],strokeDashoffset[GSCE],strokeLinecap[GSCE],"
16950                 + "strokeLinejoin[GSCE],strokeMiterlimit[GSCE],strokeOpacity[GSCE],strokeWidth[GSCE],tab-size[GSCE],"
16951                 + "table-layout[GSCE],tableLayout[GSCE],tabSize[GSCE],text-align-last[GSCE],text-align[GSCE],"
16952                 + "text-anchor[GSCE],text-combine-upright[GSCE],text-decoration-color[GSCE],"
16953                 + "text-decoration-line[GSCE],text-decoration-skip-ink[GSCE],text-decoration-style[GSCE],"
16954                 + "text-decoration-thickness[GSCE],text-decoration[GSCE],text-emphasis-color[GSCE],"
16955                 + "text-emphasis-position[GSCE],text-emphasis-style[GSCE],text-emphasis[GSCE],text-indent[GSCE],"
16956                 + "text-justify[GSCE],text-orientation[GSCE],text-overflow[GSCE],text-rendering[GSCE],"
16957                 + "text-shadow[GSCE],text-transform[GSCE],text-underline-offset[GSCE],text-underline-position[GSCE],"
16958                 + "text-wrap-mode[GSCE],text-wrap-style[GSCE],text-wrap[GSCE],textAlign[GSCE],textAlignLast[GSCE],"
16959                 + "textAnchor[GSCE],textCombineUpright[GSCE],textDecoration[GSCE],textDecorationColor[GSCE],"
16960                 + "textDecorationLine[GSCE],textDecorationSkipInk[GSCE],textDecorationStyle[GSCE],"
16961                 + "textDecorationThickness[GSCE],textEmphasis[GSCE],textEmphasisColor[GSCE],"
16962                 + "textEmphasisPosition[GSCE],textEmphasisStyle[GSCE],textIndent[GSCE],textJustify[GSCE],"
16963                 + "textOrientation[GSCE],textOverflow[GSCE],textRendering[GSCE],textShadow[GSCE],"
16964                 + "textTransform[GSCE],textUnderlineOffset[GSCE],textUnderlinePosition[GSCE],textWrap[GSCE],"
16965                 + "textWrapMode[GSCE],textWrapStyle[GSCE],top[GSCE],touch-action[GSCE],touchAction[GSCE],"
16966                 + "transform-box[GSCE],transform-origin[GSCE],transform-style[GSCE],transform[GSCE],"
16967                 + "transformBox[GSCE],transformOrigin[GSCE],transformStyle[GSCE],transition-behavior[GSCE],"
16968                 + "transition-delay[GSCE],transition-duration[GSCE],transition-property[GSCE],"
16969                 + "transition-timing-function[GSCE],transition[GSCE],transitionBehavior[GSCE],transitionDelay[GSCE],"
16970                 + "transitionDuration[GSCE],transitionProperty[GSCE],transitionTimingFunction[GSCE],translate[GSCE],"
16971                 + "unicode-bidi[GSCE],unicodeBidi[GSCE],user-select[GSCE],userSelect[GSCE],vector-effect[GSCE],"
16972                 + "vectorEffect[GSCE],vertical-align[GSCE],verticalAlign[GSCE],visibility[GSCE],"
16973                 + "WebkitAlignContent[GSCE],webkitAlignContent[GSCE],WebkitAlignItems[GSCE],webkitAlignItems[GSCE],"
16974                 + "WebkitAlignSelf[GSCE],webkitAlignSelf[GSCE],WebkitAnimation[GSCE],webkitAnimation[GSCE],"
16975                 + "WebkitAnimationDelay[GSCE],webkitAnimationDelay[GSCE],WebkitAnimationDirection[GSCE],"
16976                 + "webkitAnimationDirection[GSCE],WebkitAnimationDuration[GSCE],webkitAnimationDuration[GSCE],"
16977                 + "WebkitAnimationFillMode[GSCE],webkitAnimationFillMode[GSCE],WebkitAnimationIterationCount[GSCE],"
16978                 + "webkitAnimationIterationCount[GSCE],WebkitAnimationName[GSCE],webkitAnimationName[GSCE],"
16979                 + "WebkitAnimationPlayState[GSCE],webkitAnimationPlayState[GSCE],"
16980                 + "WebkitAnimationTimingFunction[GSCE],webkitAnimationTimingFunction[GSCE],WebkitAppearance[GSCE],"
16981                 + "webkitAppearance[GSCE],WebkitBackfaceVisibility[GSCE],webkitBackfaceVisibility[GSCE],"
16982                 + "WebkitBackgroundClip[GSCE],webkitBackgroundClip[GSCE],WebkitBackgroundOrigin[GSCE],"
16983                 + "webkitBackgroundOrigin[GSCE],WebkitBackgroundSize[GSCE],webkitBackgroundSize[GSCE],"
16984                 + "WebkitBorderBottomLeftRadius[GSCE],webkitBorderBottomLeftRadius[GSCE],"
16985                 + "WebkitBorderBottomRightRadius[GSCE],webkitBorderBottomRightRadius[GSCE],WebkitBorderImage[GSCE],"
16986                 + "webkitBorderImage[GSCE],WebkitBorderRadius[GSCE],webkitBorderRadius[GSCE],"
16987                 + "WebkitBorderTopLeftRadius[GSCE],webkitBorderTopLeftRadius[GSCE],WebkitBorderTopRightRadius[GSCE],"
16988                 + "webkitBorderTopRightRadius[GSCE],WebkitBoxAlign[GSCE],webkitBoxAlign[GSCE],"
16989                 + "WebkitBoxDirection[GSCE],webkitBoxDirection[GSCE],WebkitBoxFlex[GSCE],webkitBoxFlex[GSCE],"
16990                 + "WebkitBoxOrdinalGroup[GSCE],webkitBoxOrdinalGroup[GSCE],WebkitBoxOrient[GSCE],"
16991                 + "webkitBoxOrient[GSCE],WebkitBoxPack[GSCE],webkitBoxPack[GSCE],WebkitBoxShadow[GSCE],"
16992                 + "webkitBoxShadow[GSCE],WebkitBoxSizing[GSCE],webkitBoxSizing[GSCE],WebkitClipPath[GSCE],"
16993                 + "webkitClipPath[GSCE],WebkitFilter[GSCE],webkitFilter[GSCE],WebkitFlex[GSCE],webkitFlex[GSCE],"
16994                 + "WebkitFlexBasis[GSCE],webkitFlexBasis[GSCE],WebkitFlexDirection[GSCE],webkitFlexDirection[GSCE],"
16995                 + "WebkitFlexFlow[GSCE],webkitFlexFlow[GSCE],WebkitFlexGrow[GSCE],webkitFlexGrow[GSCE],"
16996                 + "WebkitFlexShrink[GSCE],webkitFlexShrink[GSCE],WebkitFlexWrap[GSCE],webkitFlexWrap[GSCE],"
16997                 + "WebkitFontFeatureSettings[GSCE],webkitFontFeatureSettings[GSCE],WebkitJustifyContent[GSCE],"
16998                 + "webkitJustifyContent[GSCE],WebkitLineClamp[GSCE],webkitLineClamp[GSCE],WebkitMask[GSCE],"
16999                 + "webkitMask[GSCE],WebkitMaskClip[GSCE],webkitMaskClip[GSCE],WebkitMaskComposite[GSCE],"
17000                 + "webkitMaskComposite[GSCE],WebkitMaskImage[GSCE],webkitMaskImage[GSCE],WebkitMaskOrigin[GSCE],"
17001                 + "webkitMaskOrigin[GSCE],WebkitMaskPosition[GSCE],webkitMaskPosition[GSCE],"
17002                 + "WebkitMaskPositionX[GSCE],webkitMaskPositionX[GSCE],WebkitMaskPositionY[GSCE],"
17003                 + "webkitMaskPositionY[GSCE],WebkitMaskRepeat[GSCE],webkitMaskRepeat[GSCE],WebkitMaskSize[GSCE],"
17004                 + "webkitMaskSize[GSCE],WebkitOrder[GSCE],webkitOrder[GSCE],WebkitPerspective[GSCE],"
17005                 + "webkitPerspective[GSCE],WebkitPerspectiveOrigin[GSCE],webkitPerspectiveOrigin[GSCE],"
17006                 + "WebkitTextFillColor[GSCE],webkitTextFillColor[GSCE],WebkitTextSecurity[GSCE],"
17007                 + "webkitTextSecurity[GSCE],WebkitTextSizeAdjust[GSCE],webkitTextSizeAdjust[GSCE],"
17008                 + "WebkitTextStroke[GSCE],webkitTextStroke[GSCE],WebkitTextStrokeColor[GSCE],"
17009                 + "webkitTextStrokeColor[GSCE],WebkitTextStrokeWidth[GSCE],webkitTextStrokeWidth[GSCE],"
17010                 + "WebkitTransform[GSCE],webkitTransform[GSCE],WebkitTransformOrigin[GSCE],"
17011                 + "webkitTransformOrigin[GSCE],WebkitTransformStyle[GSCE],webkitTransformStyle[GSCE],"
17012                 + "WebkitTransition[GSCE],webkitTransition[GSCE],WebkitTransitionDelay[GSCE],"
17013                 + "webkitTransitionDelay[GSCE],WebkitTransitionDuration[GSCE],webkitTransitionDuration[GSCE],"
17014                 + "WebkitTransitionProperty[GSCE],webkitTransitionProperty[GSCE],"
17015                 + "WebkitTransitionTimingFunction[GSCE],webkitTransitionTimingFunction[GSCE],WebkitUserSelect[GSCE],"
17016                 + "webkitUserSelect[GSCE],white-space-collapse[GSCE],white-space[GSCE],whiteSpace[GSCE],"
17017                 + "whiteSpaceCollapse[GSCE],width[GSCE],will-change[GSCE],willChange[GSCE],word-break[GSCE],"
17018                 + "word-spacing[GSCE],word-wrap[GSCE],wordBreak[GSCE],wordSpacing[GSCE],wordWrap[GSCE],"
17019                 + "writing-mode[GSCE],writingMode[GSCE],x[GSCE],y[GSCE],z-index[GSCE],zIndex[GSCE],"
17020                 + "zoom[GSCE]",
17021             FF_ESR = "-moz-animation-delay[GSCE],-moz-animation-direction[GSCE],-moz-animation-duration[GSCE],"
17022                 + "-moz-animation-fill-mode[GSCE],-moz-animation-iteration-count[GSCE],-moz-animation-name[GSCE],"
17023                 + "-moz-animation-play-state[GSCE],-moz-animation-timing-function[GSCE],-moz-animation[GSCE],"
17024                 + "-moz-appearance[GSCE],-moz-border-end-color[GSCE],-moz-border-end-style[GSCE],"
17025                 + "-moz-border-end-width[GSCE],-moz-border-end[GSCE],-moz-border-image[GSCE],"
17026                 + "-moz-border-start-color[GSCE],-moz-border-start-style[GSCE],-moz-border-start-width[GSCE],"
17027                 + "-moz-border-start[GSCE],-moz-box-align[GSCE],-moz-box-direction[GSCE],-moz-box-flex[GSCE],"
17028                 + "-moz-box-ordinal-group[GSCE],-moz-box-orient[GSCE],-moz-box-pack[GSCE],-moz-box-sizing[GSCE],"
17029                 + "-moz-float-edge[GSCE],-moz-font-feature-settings[GSCE],-moz-font-language-override[GSCE],"
17030                 + "-moz-force-broken-image-icon[GSCE],-moz-hyphens[GSCE],-moz-margin-end[GSCE],"
17031                 + "-moz-margin-start[GSCE],-moz-orient[GSCE],-moz-padding-end[GSCE],-moz-padding-start[GSCE],"
17032                 + "-moz-tab-size[GSCE],-moz-text-size-adjust[GSCE],-moz-transform-origin[GSCE],-moz-transform[GSCE],"
17033                 + "-moz-user-input[GSCE],-moz-user-modify[GSCE],-moz-user-select[GSCE],-moz-window-dragging[GSCE],"
17034                 + "-webkit-align-content[GSCE],-webkit-align-items[GSCE],-webkit-align-self[GSCE],"
17035                 + "-webkit-animation-delay[GSCE],-webkit-animation-direction[GSCE],-webkit-animation-duration[GSCE],"
17036                 + "-webkit-animation-fill-mode[GSCE],-webkit-animation-iteration-count[GSCE],"
17037                 + "-webkit-animation-name[GSCE],-webkit-animation-play-state[GSCE],"
17038                 + "-webkit-animation-timing-function[GSCE],-webkit-animation[GSCE],-webkit-appearance[GSCE],"
17039                 + "-webkit-backface-visibility[GSCE],-webkit-background-clip[GSCE],-webkit-background-origin[GSCE],"
17040                 + "-webkit-background-size[GSCE],-webkit-border-bottom-left-radius[GSCE],"
17041                 + "-webkit-border-bottom-right-radius[GSCE],-webkit-border-image[GSCE],-webkit-border-radius[GSCE],"
17042                 + "-webkit-border-top-left-radius[GSCE],-webkit-border-top-right-radius[GSCE],"
17043                 + "-webkit-box-align[GSCE],-webkit-box-direction[GSCE],-webkit-box-flex[GSCE],"
17044                 + "-webkit-box-ordinal-group[GSCE],-webkit-box-orient[GSCE],-webkit-box-pack[GSCE],"
17045                 + "-webkit-box-shadow[GSCE],-webkit-box-sizing[GSCE],-webkit-clip-path[GSCE],-webkit-filter[GSCE],"
17046                 + "-webkit-flex-basis[GSCE],-webkit-flex-direction[GSCE],-webkit-flex-flow[GSCE],"
17047                 + "-webkit-flex-grow[GSCE],-webkit-flex-shrink[GSCE],-webkit-flex-wrap[GSCE],-webkit-flex[GSCE],"
17048                 + "-webkit-justify-content[GSCE],-webkit-line-clamp[GSCE],-webkit-mask-clip[GSCE],"
17049                 + "-webkit-mask-composite[GSCE],-webkit-mask-image[GSCE],-webkit-mask-origin[GSCE],"
17050                 + "-webkit-mask-position-x[GSCE],-webkit-mask-position-y[GSCE],-webkit-mask-position[GSCE],"
17051                 + "-webkit-mask-repeat[GSCE],-webkit-mask-size[GSCE],-webkit-mask[GSCE],-webkit-order[GSCE],"
17052                 + "-webkit-perspective-origin[GSCE],-webkit-perspective[GSCE],-webkit-text-fill-color[GSCE],"
17053                 + "-webkit-text-security[GSCE],-webkit-text-size-adjust[GSCE],-webkit-text-stroke-color[GSCE],"
17054                 + "-webkit-text-stroke-width[GSCE],-webkit-text-stroke[GSCE],-webkit-transform-origin[GSCE],"
17055                 + "-webkit-transform-style[GSCE],-webkit-transform[GSCE],-webkit-transition-delay[GSCE],"
17056                 + "-webkit-transition-duration[GSCE],-webkit-transition-property[GSCE],"
17057                 + "-webkit-transition-timing-function[GSCE],-webkit-transition[GSCE],-webkit-user-select[GSCE],"
17058                 + "accent-color[GSCE],accentColor[GSCE],align-content[GSCE],align-items[GSCE],align-self[GSCE],"
17059                 + "alignContent[GSCE],alignItems[GSCE],alignSelf[GSCE],all[GSCE],animation-composition[GSCE],"
17060                 + "animation-delay[GSCE],animation-direction[GSCE],animation-duration[GSCE],"
17061                 + "animation-fill-mode[GSCE],animation-iteration-count[GSCE],animation-name[GSCE],"
17062                 + "animation-play-state[GSCE],animation-timing-function[GSCE],animation[GSCE],"
17063                 + "animationComposition[GSCE],animationDelay[GSCE],animationDirection[GSCE],animationDuration[GSCE],"
17064                 + "animationFillMode[GSCE],animationIterationCount[GSCE],animationName[GSCE],"
17065                 + "animationPlayState[GSCE],animationTimingFunction[GSCE],appearance[GSCE],aspect-ratio[GSCE],"
17066                 + "aspectRatio[GSCE],backdrop-filter[GSCE],backdropFilter[GSCE],backface-visibility[GSCE],"
17067                 + "backfaceVisibility[GSCE],background-attachment[GSCE],background-blend-mode[GSCE],"
17068                 + "background-clip[GSCE],background-color[GSCE],background-image[GSCE],background-origin[GSCE],"
17069                 + "background-position-x[GSCE],background-position-y[GSCE],background-position[GSCE],"
17070                 + "background-repeat[GSCE],background-size[GSCE],background[GSCE],backgroundAttachment[GSCE],"
17071                 + "backgroundBlendMode[GSCE],backgroundClip[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
17072                 + "backgroundOrigin[GSCE],backgroundPosition[GSCE],backgroundPositionX[GSCE],"
17073                 + "backgroundPositionY[GSCE],backgroundRepeat[GSCE],backgroundSize[GSCE],baseline-source[GSCE],"
17074                 + "baselineSource[GSCE],block-size[GSCE],blockSize[GSCE],border-block-color[GSCE],"
17075                 + "border-block-end-color[GSCE],border-block-end-style[GSCE],border-block-end-width[GSCE],"
17076                 + "border-block-end[GSCE],border-block-start-color[GSCE],border-block-start-style[GSCE],"
17077                 + "border-block-start-width[GSCE],border-block-start[GSCE],border-block-style[GSCE],"
17078                 + "border-block-width[GSCE],border-block[GSCE],border-bottom-color[GSCE],"
17079                 + "border-bottom-left-radius[GSCE],border-bottom-right-radius[GSCE],border-bottom-style[GSCE],"
17080                 + "border-bottom-width[GSCE],border-bottom[GSCE],border-collapse[GSCE],border-color[GSCE],"
17081                 + "border-end-end-radius[GSCE],border-end-start-radius[GSCE],border-image-outset[GSCE],"
17082                 + "border-image-repeat[GSCE],border-image-slice[GSCE],border-image-source[GSCE],"
17083                 + "border-image-width[GSCE],border-image[GSCE],border-inline-color[GSCE],"
17084                 + "border-inline-end-color[GSCE],border-inline-end-style[GSCE],border-inline-end-width[GSCE],"
17085                 + "border-inline-end[GSCE],border-inline-start-color[GSCE],border-inline-start-style[GSCE],"
17086                 + "border-inline-start-width[GSCE],border-inline-start[GSCE],border-inline-style[GSCE],"
17087                 + "border-inline-width[GSCE],border-inline[GSCE],border-left-color[GSCE],border-left-style[GSCE],"
17088                 + "border-left-width[GSCE],border-left[GSCE],border-radius[GSCE],border-right-color[GSCE],"
17089                 + "border-right-style[GSCE],border-right-width[GSCE],border-right[GSCE],border-spacing[GSCE],"
17090                 + "border-start-end-radius[GSCE],border-start-start-radius[GSCE],border-style[GSCE],"
17091                 + "border-top-color[GSCE],border-top-left-radius[GSCE],border-top-right-radius[GSCE],"
17092                 + "border-top-style[GSCE],border-top-width[GSCE],border-top[GSCE],border-width[GSCE],border[GSCE],"
17093                 + "borderBlock[GSCE],borderBlockColor[GSCE],borderBlockEnd[GSCE],borderBlockEndColor[GSCE],"
17094                 + "borderBlockEndStyle[GSCE],borderBlockEndWidth[GSCE],borderBlockStart[GSCE],"
17095                 + "borderBlockStartColor[GSCE],borderBlockStartStyle[GSCE],borderBlockStartWidth[GSCE],"
17096                 + "borderBlockStyle[GSCE],borderBlockWidth[GSCE],borderBottom[GSCE],borderBottomColor[GSCE],"
17097                 + "borderBottomLeftRadius[GSCE],borderBottomRightRadius[GSCE],borderBottomStyle[GSCE],"
17098                 + "borderBottomWidth[GSCE],borderCollapse[GSCE],borderColor[GSCE],borderEndEndRadius[GSCE],"
17099                 + "borderEndStartRadius[GSCE],borderImage[GSCE],borderImageOutset[GSCE],borderImageRepeat[GSCE],"
17100                 + "borderImageSlice[GSCE],borderImageSource[GSCE],borderImageWidth[GSCE],borderInline[GSCE],"
17101                 + "borderInlineColor[GSCE],borderInlineEnd[GSCE],borderInlineEndColor[GSCE],"
17102                 + "borderInlineEndStyle[GSCE],borderInlineEndWidth[GSCE],borderInlineStart[GSCE],"
17103                 + "borderInlineStartColor[GSCE],borderInlineStartStyle[GSCE],borderInlineStartWidth[GSCE],"
17104                 + "borderInlineStyle[GSCE],borderInlineWidth[GSCE],borderLeft[GSCE],borderLeftColor[GSCE],"
17105                 + "borderLeftStyle[GSCE],borderLeftWidth[GSCE],borderRadius[GSCE],borderRight[GSCE],"
17106                 + "borderRightColor[GSCE],borderRightStyle[GSCE],borderRightWidth[GSCE],borderSpacing[GSCE],"
17107                 + "borderStartEndRadius[GSCE],borderStartStartRadius[GSCE],borderStyle[GSCE],borderTop[GSCE],"
17108                 + "borderTopColor[GSCE],borderTopLeftRadius[GSCE],borderTopRightRadius[GSCE],borderTopStyle[GSCE],"
17109                 + "borderTopWidth[GSCE],borderWidth[GSCE],bottom[GSCE],box-decoration-break[GSCE],box-shadow[GSCE],"
17110                 + "box-sizing[GSCE],boxDecorationBreak[GSCE],boxShadow[GSCE],boxSizing[GSCE],break-after[GSCE],"
17111                 + "break-before[GSCE],break-inside[GSCE],breakAfter[GSCE],breakBefore[GSCE],breakInside[GSCE],"
17112                 + "caption-side[GSCE],captionSide[GSCE],caret-color[GSCE],caretColor[GSCE],clear[GSCE],"
17113                 + "clip-path[GSCE],clip-rule[GSCE],clip[GSCE],clipPath[GSCE],clipRule[GSCE],color-adjust[GSCE],"
17114                 + "color-interpolation-filters[GSCE],color-interpolation[GSCE],color-scheme[GSCE],color[GSCE],"
17115                 + "colorAdjust[GSCE],colorInterpolation[GSCE],colorInterpolationFilters[GSCE],colorScheme[GSCE],"
17116                 + "column-count[GSCE],column-fill[GSCE],column-gap[GSCE],column-rule-color[GSCE],"
17117                 + "column-rule-style[GSCE],column-rule-width[GSCE],column-rule[GSCE],column-span[GSCE],"
17118                 + "column-width[GSCE],columnCount[GSCE],columnFill[GSCE],columnGap[GSCE],columnRule[GSCE],"
17119                 + "columnRuleColor[GSCE],columnRuleStyle[GSCE],columnRuleWidth[GSCE],columns[GSCE],columnSpan[GSCE],"
17120                 + "columnWidth[GSCE],constructor(),contain-intrinsic-block-size[GSCE],"
17121                 + "contain-intrinsic-height[GSCE],contain-intrinsic-inline-size[GSCE],contain-intrinsic-size[GSCE],"
17122                 + "contain-intrinsic-width[GSCE],contain[GSCE],container-name[GSCE],container-type[GSCE],"
17123                 + "container[GSCE],containerName[GSCE],containerType[GSCE],containIntrinsicBlockSize[GSCE],"
17124                 + "containIntrinsicHeight[GSCE],containIntrinsicInlineSize[GSCE],containIntrinsicSize[GSCE],"
17125                 + "containIntrinsicWidth[GSCE],content-visibility[GSCE],content[GSCE],contentVisibility[GSCE],"
17126                 + "counter-increment[GSCE],counter-reset[GSCE],counter-set[GSCE],counterIncrement[GSCE],"
17127                 + "counterReset[GSCE],counterSet[GSCE],cssFloat[GSCE],cursor[GSCE],cx[GSCE],cy[GSCE],d[GSCE],"
17128                 + "direction[GSCE],display[GSCE],dominant-baseline[GSCE],dominantBaseline[GSCE],empty-cells[GSCE],"
17129                 + "emptyCells[GSCE],fill-opacity[GSCE],fill-rule[GSCE],fill[GSCE],fillOpacity[GSCE],fillRule[GSCE],"
17130                 + "filter[GSCE],flex-basis[GSCE],flex-direction[GSCE],flex-flow[GSCE],flex-grow[GSCE],"
17131                 + "flex-shrink[GSCE],flex-wrap[GSCE],flex[GSCE],flexBasis[GSCE],flexDirection[GSCE],flexFlow[GSCE],"
17132                 + "flexGrow[GSCE],flexShrink[GSCE],flexWrap[GSCE],float[GSCE],flood-color[GSCE],flood-opacity[GSCE],"
17133                 + "floodColor[GSCE],floodOpacity[GSCE],font-family[GSCE],font-feature-settings[GSCE],"
17134                 + "font-kerning[GSCE],font-language-override[GSCE],font-optical-sizing[GSCE],font-palette[GSCE],"
17135                 + "font-size-adjust[GSCE],font-size[GSCE],font-stretch[GSCE],font-style[GSCE],"
17136                 + "font-synthesis-position[GSCE],font-synthesis-small-caps[GSCE],font-synthesis-style[GSCE],"
17137                 + "font-synthesis-weight[GSCE],font-synthesis[GSCE],font-variant-alternates[GSCE],"
17138                 + "font-variant-caps[GSCE],font-variant-east-asian[GSCE],font-variant-ligatures[GSCE],"
17139                 + "font-variant-numeric[GSCE],font-variant-position[GSCE],font-variant[GSCE],"
17140                 + "font-variation-settings[GSCE],font-weight[GSCE],font[GSCE],fontFamily[GSCE],"
17141                 + "fontFeatureSettings[GSCE],fontKerning[GSCE],fontLanguageOverride[GSCE],fontOpticalSizing[GSCE],"
17142                 + "fontPalette[GSCE],fontSize[GSCE],fontSizeAdjust[GSCE],fontStretch[GSCE],fontStyle[GSCE],"
17143                 + "fontSynthesis[GSCE],fontSynthesisPosition[GSCE],fontSynthesisSmallCaps[GSCE],"
17144                 + "fontSynthesisStyle[GSCE],fontSynthesisWeight[GSCE],fontVariant[GSCE],fontVariantAlternates[GSCE],"
17145                 + "fontVariantCaps[GSCE],fontVariantEastAsian[GSCE],fontVariantLigatures[GSCE],"
17146                 + "fontVariantNumeric[GSCE],fontVariantPosition[GSCE],fontVariationSettings[GSCE],fontWeight[GSCE],"
17147                 + "forced-color-adjust[GSCE],forcedColorAdjust[GSCE],gap[GSCE],grid-area[GSCE],"
17148                 + "grid-auto-columns[GSCE],grid-auto-flow[GSCE],grid-auto-rows[GSCE],grid-column-end[GSCE],"
17149                 + "grid-column-gap[GSCE],grid-column-start[GSCE],grid-column[GSCE],grid-gap[GSCE],"
17150                 + "grid-row-end[GSCE],grid-row-gap[GSCE],grid-row-start[GSCE],grid-row[GSCE],"
17151                 + "grid-template-areas[GSCE],grid-template-columns[GSCE],grid-template-rows[GSCE],"
17152                 + "grid-template[GSCE],grid[GSCE],gridArea[GSCE],gridAutoColumns[GSCE],gridAutoFlow[GSCE],"
17153                 + "gridAutoRows[GSCE],gridColumn[GSCE],gridColumnEnd[GSCE],gridColumnGap[GSCE],"
17154                 + "gridColumnStart[GSCE],gridGap[GSCE],gridRow[GSCE],gridRowEnd[GSCE],gridRowGap[GSCE],"
17155                 + "gridRowStart[GSCE],gridTemplate[GSCE],gridTemplateAreas[GSCE],gridTemplateColumns[GSCE],"
17156                 + "gridTemplateRows[GSCE],height[GSCE],hyphenate-character[GSCE],hyphenateCharacter[GSCE],"
17157                 + "hyphens[GSCE],image-orientation[GSCE],image-rendering[GSCE],imageOrientation[GSCE],"
17158                 + "imageRendering[GSCE],ime-mode[GSCE],imeMode[GSCE],inline-size[GSCE],inlineSize[GSCE],"
17159                 + "inset-block-end[GSCE],inset-block-start[GSCE],inset-block[GSCE],inset-inline-end[GSCE],"
17160                 + "inset-inline-start[GSCE],inset-inline[GSCE],inset[GSCE],insetBlock[GSCE],insetBlockEnd[GSCE],"
17161                 + "insetBlockStart[GSCE],insetInline[GSCE],insetInlineEnd[GSCE],insetInlineStart[GSCE],"
17162                 + "isolation[GSCE],justify-content[GSCE],justify-items[GSCE],justify-self[GSCE],"
17163                 + "justifyContent[GSCE],justifyItems[GSCE],justifySelf[GSCE],left[GSCE],letter-spacing[GSCE],"
17164                 + "letterSpacing[GSCE],lighting-color[GSCE],lightingColor[GSCE],line-break[GSCE],line-height[GSCE],"
17165                 + "lineBreak[GSCE],lineHeight[GSCE],list-style-image[GSCE],list-style-position[GSCE],"
17166                 + "list-style-type[GSCE],list-style[GSCE],listStyle[GSCE],listStyleImage[GSCE],"
17167                 + "listStylePosition[GSCE],listStyleType[GSCE],margin-block-end[GSCE],margin-block-start[GSCE],"
17168                 + "margin-block[GSCE],margin-bottom[GSCE],margin-inline-end[GSCE],margin-inline-start[GSCE],"
17169                 + "margin-inline[GSCE],margin-left[GSCE],margin-right[GSCE],margin-top[GSCE],margin[GSCE],"
17170                 + "marginBlock[GSCE],marginBlockEnd[GSCE],marginBlockStart[GSCE],marginBottom[GSCE],"
17171                 + "marginInline[GSCE],marginInlineEnd[GSCE],marginInlineStart[GSCE],marginLeft[GSCE],"
17172                 + "marginRight[GSCE],marginTop[GSCE],marker-end[GSCE],marker-mid[GSCE],marker-start[GSCE],"
17173                 + "marker[GSCE],markerEnd[GSCE],markerMid[GSCE],markerStart[GSCE],mask-clip[GSCE],"
17174                 + "mask-composite[GSCE],mask-image[GSCE],mask-mode[GSCE],mask-origin[GSCE],mask-position-x[GSCE],"
17175                 + "mask-position-y[GSCE],mask-position[GSCE],mask-repeat[GSCE],mask-size[GSCE],mask-type[GSCE],"
17176                 + "mask[GSCE],maskClip[GSCE],maskComposite[GSCE],maskImage[GSCE],maskMode[GSCE],maskOrigin[GSCE],"
17177                 + "maskPosition[GSCE],maskPositionX[GSCE],maskPositionY[GSCE],maskRepeat[GSCE],maskSize[GSCE],"
17178                 + "maskType[GSCE],math-depth[GSCE],math-style[GSCE],mathDepth[GSCE],mathStyle[GSCE],"
17179                 + "max-block-size[GSCE],max-height[GSCE],max-inline-size[GSCE],max-width[GSCE],maxBlockSize[GSCE],"
17180                 + "maxHeight[GSCE],maxInlineSize[GSCE],maxWidth[GSCE],min-block-size[GSCE],min-height[GSCE],"
17181                 + "min-inline-size[GSCE],min-width[GSCE],minBlockSize[GSCE],minHeight[GSCE],minInlineSize[GSCE],"
17182                 + "minWidth[GSCE],mix-blend-mode[GSCE],mixBlendMode[GSCE],MozAnimation[GSCE],"
17183                 + "MozAnimationDelay[GSCE],MozAnimationDirection[GSCE],MozAnimationDuration[GSCE],"
17184                 + "MozAnimationFillMode[GSCE],MozAnimationIterationCount[GSCE],MozAnimationName[GSCE],"
17185                 + "MozAnimationPlayState[GSCE],MozAnimationTimingFunction[GSCE],MozAppearance[GSCE],"
17186                 + "MozBorderEnd[GSCE],MozBorderEndColor[GSCE],MozBorderEndStyle[GSCE],MozBorderEndWidth[GSCE],"
17187                 + "MozBorderImage[GSCE],MozBorderStart[GSCE],MozBorderStartColor[GSCE],MozBorderStartStyle[GSCE],"
17188                 + "MozBorderStartWidth[GSCE],MozBoxAlign[GSCE],MozBoxDirection[GSCE],MozBoxFlex[GSCE],"
17189                 + "MozBoxOrdinalGroup[GSCE],MozBoxOrient[GSCE],MozBoxPack[GSCE],MozBoxSizing[GSCE],"
17190                 + "MozFloatEdge[GSCE],MozFontFeatureSettings[GSCE],MozFontLanguageOverride[GSCE],"
17191                 + "MozForceBrokenImageIcon[GSCE],MozHyphens[GSCE],MozMarginEnd[GSCE],MozMarginStart[GSCE],"
17192                 + "MozOrient[GSCE],MozPaddingEnd[GSCE],MozPaddingStart[GSCE],MozTabSize[GSCE],"
17193                 + "MozTextSizeAdjust[GSCE],MozTransform[GSCE],MozTransformOrigin[GSCE],MozUserInput[GSCE],"
17194                 + "MozUserModify[GSCE],MozUserSelect[GSCE],MozWindowDragging[GSCE],object-fit[GSCE],"
17195                 + "object-position[GSCE],objectFit[GSCE],objectPosition[GSCE],offset-anchor[GSCE],"
17196                 + "offset-distance[GSCE],offset-path[GSCE],offset-position[GSCE],offset-rotate[GSCE],offset[GSCE],"
17197                 + "offsetAnchor[GSCE],offsetDistance[GSCE],offsetPath[GSCE],offsetPosition[GSCE],offsetRotate[GSCE],"
17198                 + "opacity[GSCE],order[GSCE],outline-color[GSCE],outline-offset[GSCE],outline-style[GSCE],"
17199                 + "outline-width[GSCE],outline[GSCE],outlineColor[GSCE],outlineOffset[GSCE],outlineStyle[GSCE],"
17200                 + "outlineWidth[GSCE],overflow-anchor[GSCE],overflow-block[GSCE],overflow-clip-margin[GSCE],"
17201                 + "overflow-inline[GSCE],overflow-wrap[GSCE],overflow-x[GSCE],overflow-y[GSCE],overflow[GSCE],"
17202                 + "overflowAnchor[GSCE],overflowBlock[GSCE],overflowClipMargin[GSCE],overflowInline[GSCE],"
17203                 + "overflowWrap[GSCE],overflowX[GSCE],overflowY[GSCE],overscroll-behavior-block[GSCE],"
17204                 + "overscroll-behavior-inline[GSCE],overscroll-behavior-x[GSCE],overscroll-behavior-y[GSCE],"
17205                 + "overscroll-behavior[GSCE],overscrollBehavior[GSCE],overscrollBehaviorBlock[GSCE],"
17206                 + "overscrollBehaviorInline[GSCE],overscrollBehaviorX[GSCE],overscrollBehaviorY[GSCE],"
17207                 + "padding-block-end[GSCE],padding-block-start[GSCE],padding-block[GSCE],padding-bottom[GSCE],"
17208                 + "padding-inline-end[GSCE],padding-inline-start[GSCE],padding-inline[GSCE],padding-left[GSCE],"
17209                 + "padding-right[GSCE],padding-top[GSCE],padding[GSCE],paddingBlock[GSCE],paddingBlockEnd[GSCE],"
17210                 + "paddingBlockStart[GSCE],paddingBottom[GSCE],paddingInline[GSCE],paddingInlineEnd[GSCE],"
17211                 + "paddingInlineStart[GSCE],paddingLeft[GSCE],paddingRight[GSCE],paddingTop[GSCE],"
17212                 + "page-break-after[GSCE],page-break-before[GSCE],page-break-inside[GSCE],page[GSCE],"
17213                 + "pageBreakAfter[GSCE],pageBreakBefore[GSCE],pageBreakInside[GSCE],paint-order[GSCE],"
17214                 + "paintOrder[GSCE],perspective-origin[GSCE],perspective[GSCE],perspectiveOrigin[GSCE],"
17215                 + "place-content[GSCE],place-items[GSCE],place-self[GSCE],placeContent[GSCE],placeItems[GSCE],"
17216                 + "placeSelf[GSCE],pointer-events[GSCE],pointerEvents[GSCE],position[GSCE],print-color-adjust[GSCE],"
17217                 + "printColorAdjust[GSCE],quotes[GSCE],r[GSCE],resize[GSCE],right[GSCE],rotate[GSCE],row-gap[GSCE],"
17218                 + "rowGap[GSCE],ruby-align[GSCE],ruby-position[GSCE],rubyAlign[GSCE],rubyPosition[GSCE],rx[GSCE],"
17219                 + "ry[GSCE],scale[GSCE],scroll-behavior[GSCE],scroll-margin-block-end[GSCE],"
17220                 + "scroll-margin-block-start[GSCE],scroll-margin-block[GSCE],scroll-margin-bottom[GSCE],"
17221                 + "scroll-margin-inline-end[GSCE],scroll-margin-inline-start[GSCE],scroll-margin-inline[GSCE],"
17222                 + "scroll-margin-left[GSCE],scroll-margin-right[GSCE],scroll-margin-top[GSCE],scroll-margin[GSCE],"
17223                 + "scroll-padding-block-end[GSCE],scroll-padding-block-start[GSCE],scroll-padding-block[GSCE],"
17224                 + "scroll-padding-bottom[GSCE],scroll-padding-inline-end[GSCE],scroll-padding-inline-start[GSCE],"
17225                 + "scroll-padding-inline[GSCE],scroll-padding-left[GSCE],scroll-padding-right[GSCE],"
17226                 + "scroll-padding-top[GSCE],scroll-padding[GSCE],scroll-snap-align[GSCE],scroll-snap-stop[GSCE],"
17227                 + "scroll-snap-type[GSCE],scrollbar-color[GSCE],scrollbar-gutter[GSCE],scrollbar-width[GSCE],"
17228                 + "scrollbarColor[GSCE],scrollbarGutter[GSCE],scrollbarWidth[GSCE],scrollBehavior[GSCE],"
17229                 + "scrollMargin[GSCE],scrollMarginBlock[GSCE],scrollMarginBlockEnd[GSCE],"
17230                 + "scrollMarginBlockStart[GSCE],scrollMarginBottom[GSCE],scrollMarginInline[GSCE],"
17231                 + "scrollMarginInlineEnd[GSCE],scrollMarginInlineStart[GSCE],scrollMarginLeft[GSCE],"
17232                 + "scrollMarginRight[GSCE],scrollMarginTop[GSCE],scrollPadding[GSCE],scrollPaddingBlock[GSCE],"
17233                 + "scrollPaddingBlockEnd[GSCE],scrollPaddingBlockStart[GSCE],scrollPaddingBottom[GSCE],"
17234                 + "scrollPaddingInline[GSCE],scrollPaddingInlineEnd[GSCE],scrollPaddingInlineStart[GSCE],"
17235                 + "scrollPaddingLeft[GSCE],scrollPaddingRight[GSCE],scrollPaddingTop[GSCE],scrollSnapAlign[GSCE],"
17236                 + "scrollSnapStop[GSCE],scrollSnapType[GSCE],shape-image-threshold[GSCE],shape-margin[GSCE],"
17237                 + "shape-outside[GSCE],shape-rendering[GSCE],shapeImageThreshold[GSCE],shapeMargin[GSCE],"
17238                 + "shapeOutside[GSCE],shapeRendering[GSCE],stop-color[GSCE],stop-opacity[GSCE],stopColor[GSCE],"
17239                 + "stopOpacity[GSCE],stroke-dasharray[GSCE],stroke-dashoffset[GSCE],stroke-linecap[GSCE],"
17240                 + "stroke-linejoin[GSCE],stroke-miterlimit[GSCE],stroke-opacity[GSCE],stroke-width[GSCE],"
17241                 + "stroke[GSCE],strokeDasharray[GSCE],strokeDashoffset[GSCE],strokeLinecap[GSCE],"
17242                 + "strokeLinejoin[GSCE],strokeMiterlimit[GSCE],strokeOpacity[GSCE],strokeWidth[GSCE],tab-size[GSCE],"
17243                 + "table-layout[GSCE],tableLayout[GSCE],tabSize[GSCE],text-align-last[GSCE],text-align[GSCE],"
17244                 + "text-anchor[GSCE],text-combine-upright[GSCE],text-decoration-color[GSCE],"
17245                 + "text-decoration-line[GSCE],text-decoration-skip-ink[GSCE],text-decoration-style[GSCE],"
17246                 + "text-decoration-thickness[GSCE],text-decoration[GSCE],text-emphasis-color[GSCE],"
17247                 + "text-emphasis-position[GSCE],text-emphasis-style[GSCE],text-emphasis[GSCE],text-indent[GSCE],"
17248                 + "text-justify[GSCE],text-orientation[GSCE],text-overflow[GSCE],text-rendering[GSCE],"
17249                 + "text-shadow[GSCE],text-transform[GSCE],text-underline-offset[GSCE],text-underline-position[GSCE],"
17250                 + "text-wrap-mode[GSCE],text-wrap-style[GSCE],text-wrap[GSCE],textAlign[GSCE],textAlignLast[GSCE],"
17251                 + "textAnchor[GSCE],textCombineUpright[GSCE],textDecoration[GSCE],textDecorationColor[GSCE],"
17252                 + "textDecorationLine[GSCE],textDecorationSkipInk[GSCE],textDecorationStyle[GSCE],"
17253                 + "textDecorationThickness[GSCE],textEmphasis[GSCE],textEmphasisColor[GSCE],"
17254                 + "textEmphasisPosition[GSCE],textEmphasisStyle[GSCE],textIndent[GSCE],textJustify[GSCE],"
17255                 + "textOrientation[GSCE],textOverflow[GSCE],textRendering[GSCE],textShadow[GSCE],"
17256                 + "textTransform[GSCE],textUnderlineOffset[GSCE],textUnderlinePosition[GSCE],textWrap[GSCE],"
17257                 + "textWrapMode[GSCE],textWrapStyle[GSCE],top[GSCE],touch-action[GSCE],touchAction[GSCE],"
17258                 + "transform-box[GSCE],transform-origin[GSCE],transform-style[GSCE],transform[GSCE],"
17259                 + "transformBox[GSCE],transformOrigin[GSCE],transformStyle[GSCE],transition-delay[GSCE],"
17260                 + "transition-duration[GSCE],transition-property[GSCE],transition-timing-function[GSCE],"
17261                 + "transition[GSCE],transitionDelay[GSCE],transitionDuration[GSCE],transitionProperty[GSCE],"
17262                 + "transitionTimingFunction[GSCE],translate[GSCE],unicode-bidi[GSCE],unicodeBidi[GSCE],"
17263                 + "user-select[GSCE],userSelect[GSCE],vector-effect[GSCE],vectorEffect[GSCE],vertical-align[GSCE],"
17264                 + "verticalAlign[GSCE],visibility[GSCE],WebkitAlignContent[GSCE],webkitAlignContent[GSCE],"
17265                 + "WebkitAlignItems[GSCE],webkitAlignItems[GSCE],WebkitAlignSelf[GSCE],webkitAlignSelf[GSCE],"
17266                 + "WebkitAnimation[GSCE],webkitAnimation[GSCE],WebkitAnimationDelay[GSCE],"
17267                 + "webkitAnimationDelay[GSCE],WebkitAnimationDirection[GSCE],webkitAnimationDirection[GSCE],"
17268                 + "WebkitAnimationDuration[GSCE],webkitAnimationDuration[GSCE],WebkitAnimationFillMode[GSCE],"
17269                 + "webkitAnimationFillMode[GSCE],WebkitAnimationIterationCount[GSCE],"
17270                 + "webkitAnimationIterationCount[GSCE],WebkitAnimationName[GSCE],webkitAnimationName[GSCE],"
17271                 + "WebkitAnimationPlayState[GSCE],webkitAnimationPlayState[GSCE],"
17272                 + "WebkitAnimationTimingFunction[GSCE],webkitAnimationTimingFunction[GSCE],WebkitAppearance[GSCE],"
17273                 + "webkitAppearance[GSCE],WebkitBackfaceVisibility[GSCE],webkitBackfaceVisibility[GSCE],"
17274                 + "WebkitBackgroundClip[GSCE],webkitBackgroundClip[GSCE],WebkitBackgroundOrigin[GSCE],"
17275                 + "webkitBackgroundOrigin[GSCE],WebkitBackgroundSize[GSCE],webkitBackgroundSize[GSCE],"
17276                 + "WebkitBorderBottomLeftRadius[GSCE],webkitBorderBottomLeftRadius[GSCE],"
17277                 + "WebkitBorderBottomRightRadius[GSCE],webkitBorderBottomRightRadius[GSCE],WebkitBorderImage[GSCE],"
17278                 + "webkitBorderImage[GSCE],WebkitBorderRadius[GSCE],webkitBorderRadius[GSCE],"
17279                 + "WebkitBorderTopLeftRadius[GSCE],webkitBorderTopLeftRadius[GSCE],WebkitBorderTopRightRadius[GSCE],"
17280                 + "webkitBorderTopRightRadius[GSCE],WebkitBoxAlign[GSCE],webkitBoxAlign[GSCE],"
17281                 + "WebkitBoxDirection[GSCE],webkitBoxDirection[GSCE],WebkitBoxFlex[GSCE],webkitBoxFlex[GSCE],"
17282                 + "WebkitBoxOrdinalGroup[GSCE],webkitBoxOrdinalGroup[GSCE],WebkitBoxOrient[GSCE],"
17283                 + "webkitBoxOrient[GSCE],WebkitBoxPack[GSCE],webkitBoxPack[GSCE],WebkitBoxShadow[GSCE],"
17284                 + "webkitBoxShadow[GSCE],WebkitBoxSizing[GSCE],webkitBoxSizing[GSCE],WebkitClipPath[GSCE],"
17285                 + "webkitClipPath[GSCE],WebkitFilter[GSCE],webkitFilter[GSCE],WebkitFlex[GSCE],webkitFlex[GSCE],"
17286                 + "WebkitFlexBasis[GSCE],webkitFlexBasis[GSCE],WebkitFlexDirection[GSCE],webkitFlexDirection[GSCE],"
17287                 + "WebkitFlexFlow[GSCE],webkitFlexFlow[GSCE],WebkitFlexGrow[GSCE],webkitFlexGrow[GSCE],"
17288                 + "WebkitFlexShrink[GSCE],webkitFlexShrink[GSCE],WebkitFlexWrap[GSCE],webkitFlexWrap[GSCE],"
17289                 + "WebkitJustifyContent[GSCE],webkitJustifyContent[GSCE],WebkitLineClamp[GSCE],"
17290                 + "webkitLineClamp[GSCE],WebkitMask[GSCE],webkitMask[GSCE],WebkitMaskClip[GSCE],"
17291                 + "webkitMaskClip[GSCE],WebkitMaskComposite[GSCE],webkitMaskComposite[GSCE],WebkitMaskImage[GSCE],"
17292                 + "webkitMaskImage[GSCE],WebkitMaskOrigin[GSCE],webkitMaskOrigin[GSCE],WebkitMaskPosition[GSCE],"
17293                 + "webkitMaskPosition[GSCE],WebkitMaskPositionX[GSCE],webkitMaskPositionX[GSCE],"
17294                 + "WebkitMaskPositionY[GSCE],webkitMaskPositionY[GSCE],WebkitMaskRepeat[GSCE],"
17295                 + "webkitMaskRepeat[GSCE],WebkitMaskSize[GSCE],webkitMaskSize[GSCE],WebkitOrder[GSCE],"
17296                 + "webkitOrder[GSCE],WebkitPerspective[GSCE],webkitPerspective[GSCE],WebkitPerspectiveOrigin[GSCE],"
17297                 + "webkitPerspectiveOrigin[GSCE],WebkitTextFillColor[GSCE],webkitTextFillColor[GSCE],"
17298                 + "WebkitTextSecurity[GSCE],webkitTextSecurity[GSCE],WebkitTextSizeAdjust[GSCE],"
17299                 + "webkitTextSizeAdjust[GSCE],WebkitTextStroke[GSCE],webkitTextStroke[GSCE],"
17300                 + "WebkitTextStrokeColor[GSCE],webkitTextStrokeColor[GSCE],WebkitTextStrokeWidth[GSCE],"
17301                 + "webkitTextStrokeWidth[GSCE],WebkitTransform[GSCE],webkitTransform[GSCE],"
17302                 + "WebkitTransformOrigin[GSCE],webkitTransformOrigin[GSCE],WebkitTransformStyle[GSCE],"
17303                 + "webkitTransformStyle[GSCE],WebkitTransition[GSCE],webkitTransition[GSCE],"
17304                 + "WebkitTransitionDelay[GSCE],webkitTransitionDelay[GSCE],WebkitTransitionDuration[GSCE],"
17305                 + "webkitTransitionDuration[GSCE],WebkitTransitionProperty[GSCE],webkitTransitionProperty[GSCE],"
17306                 + "WebkitTransitionTimingFunction[GSCE],webkitTransitionTimingFunction[GSCE],WebkitUserSelect[GSCE],"
17307                 + "webkitUserSelect[GSCE],white-space-collapse[GSCE],white-space[GSCE],whiteSpace[GSCE],"
17308                 + "whiteSpaceCollapse[GSCE],width[GSCE],will-change[GSCE],willChange[GSCE],word-break[GSCE],"
17309                 + "word-spacing[GSCE],word-wrap[GSCE],wordBreak[GSCE],wordSpacing[GSCE],wordWrap[GSCE],"
17310                 + "writing-mode[GSCE],writingMode[GSCE],x[GSCE],y[GSCE],z-index[GSCE],zIndex[GSCE],"
17311                 + "zoom[GSCE]")
17312     @HtmlUnitNYI(CHROME = "backgroundAttachment[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
17313                 + "backgroundPosition[GSCE],backgroundRepeat[GSCE],blockSize[GSCE],"
17314                 + "borderBottomColor[GSCE],borderBottomStyle[GSCE],"
17315                 + "borderBottomWidth[GSCE],borderLeftColor[GSCE],borderLeftStyle[GSCE],borderLeftWidth[GSCE],"
17316                 + "borderRightColor[GSCE],borderRightStyle[GSCE],borderRightWidth[GSCE],borderTop[GSCE],"
17317                 + "borderTopColor[GSCE],borderTopStyle[GSCE],borderTopWidth[GSCE],bottom[GSCE],color[GSCE],"
17318                 + "constructor(),cssFloat[GSCE],cssText[GSCE],display[GSCE],font[GSCE],fontFamily[GSCE],"
17319                 + "fontSize[GSCE],getPropertyPriority(),getPropertyValue(),height[GSCE],item(),left[GSCE],"
17320                 + "length[GCE],letterSpacing[GSCE],lineHeight[GSCE],margin[GSCE],marginBottom[GSCE],"
17321                 + "marginLeft[GSCE],marginRight[GSCE],marginTop[GSCE],maxHeight[GSCE],maxWidth[GSCE],"
17322                 + "minHeight[GSCE],minWidth[GSCE],opacity[GSCE],orphans[GSCE],outline[GSCE],outlineWidth[GSCE],"
17323                 + "padding[GSCE],paddingBottom[GSCE],paddingLeft[GSCE],paddingRight[GSCE],paddingTop[GSCE],"
17324                 + "parentRule[GSCE],position[GSCE],removeProperty(),right[GSCE],rubyAlign[GSCE],"
17325                 + "setProperty(),size[GSCE],"
17326                 + "textIndent[GSCE],top[GSCE],verticalAlign[GSCE],widows[GSCE],width[GSCE],wordSpacing[GSCE],"
17327                 + "zIndex[GSCE]",
17328             EDGE = "backgroundAttachment[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],"
17329                 + "backgroundPosition[GSCE],backgroundRepeat[GSCE],blockSize[GSCE],"
17330                 + "borderBottomColor[GSCE],borderBottomStyle[GSCE],"
17331                 + "borderBottomWidth[GSCE],borderLeftColor[GSCE],borderLeftStyle[GSCE],borderLeftWidth[GSCE],"
17332                 + "borderRightColor[GSCE],borderRightStyle[GSCE],borderRightWidth[GSCE],borderTop[GSCE],"
17333                 + "borderTopColor[GSCE],borderTopStyle[GSCE],borderTopWidth[GSCE],bottom[GSCE],color[GSCE],"
17334                 + "constructor(),cssFloat[GSCE],cssText[GSCE],display[GSCE],font[GSCE],fontFamily[GSCE],"
17335                 + "fontSize[GSCE],getPropertyPriority(),getPropertyValue(),height[GSCE],item(),left[GSCE],"
17336                 + "length[GCE],letterSpacing[GSCE],lineHeight[GSCE],margin[GSCE],marginBottom[GSCE],"
17337                 + "marginLeft[GSCE],marginRight[GSCE],marginTop[GSCE],maxHeight[GSCE],maxWidth[GSCE],"
17338                 + "minHeight[GSCE],minWidth[GSCE],opacity[GSCE],orphans[GSCE],outline[GSCE],outlineWidth[GSCE],"
17339                 + "padding[GSCE],paddingBottom[GSCE],paddingLeft[GSCE],paddingRight[GSCE],paddingTop[GSCE],"
17340                 + "parentRule[GSCE],position[GSCE],removeProperty(),right[GSCE],rubyAlign[GSCE],"
17341                 + "setProperty(),size[GSCE],"
17342                 + "textIndent[GSCE],top[GSCE],verticalAlign[GSCE],widows[GSCE],width[GSCE],wordSpacing[GSCE],"
17343                 + "zIndex[GSCE]",
17344             FF_ESR = "backgroundAttachment[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],backgroundPosition[GSCE],"
17345                 + "backgroundRepeat[GSCE],blockSize[GSCE],"
17346                 + "borderBottomColor[GSCE],borderBottomStyle[GSCE],borderBottomWidth[GSCE],"
17347                 + "borderLeftColor[GSCE],borderLeftStyle[GSCE],borderLeftWidth[GSCE],borderRightColor[GSCE],"
17348                 + "borderRightStyle[GSCE],borderRightWidth[GSCE],borderTop[GSCE],borderTopColor[GSCE],"
17349                 + "borderTopStyle[GSCE],borderTopWidth[GSCE],bottom[GSCE],color[GSCE],constructor(),cssFloat[GSCE],"
17350                 + "cssText[GSCE],display[GSCE],font[GSCE],fontFamily[GSCE],fontSize[GSCE],getPropertyPriority(),"
17351                 + "getPropertyValue(),height[GSCE],item(),left[GSCE],length[GCE],letterSpacing[GSCE],"
17352                 + "lineHeight[GSCE],margin[GSCE],marginBottom[GSCE],marginLeft[GSCE],marginRight[GSCE],"
17353                 + "marginTop[GSCE],maxHeight[GSCE],maxWidth[GSCE],minHeight[GSCE],minWidth[GSCE],opacity[GSCE],"
17354                 + "outline[GSCE],outlineWidth[GSCE],padding[GSCE],paddingBottom[GSCE],paddingLeft[GSCE],"
17355                 + "paddingRight[GSCE],paddingTop[GSCE],parentRule[GSCE],position[GSCE],removeProperty(),"
17356                 + "right[GSCE],rubyAlign[GSCE],setProperty(),textIndent[GSCE],top[GSCE],verticalAlign[GSCE],"
17357                 + "width[GSCE],wordSpacing[GSCE],zIndex[GSCE]",
17358             FF = "backgroundAttachment[GSCE],backgroundColor[GSCE],backgroundImage[GSCE],backgroundPosition[GSCE],"
17359                 + "backgroundRepeat[GSCE],blockSize[GSCE],"
17360                 + "borderBottomColor[GSCE],borderBottomStyle[GSCE],borderBottomWidth[GSCE],"
17361                 + "borderLeftColor[GSCE],borderLeftStyle[GSCE],borderLeftWidth[GSCE],borderRightColor[GSCE],"
17362                 + "borderRightStyle[GSCE],borderRightWidth[GSCE],borderTop[GSCE],borderTopColor[GSCE],"
17363                 + "borderTopStyle[GSCE],borderTopWidth[GSCE],bottom[GSCE],color[GSCE],constructor(),cssFloat[GSCE],"
17364                 + "cssText[GSCE],display[GSCE],font[GSCE],fontFamily[GSCE],fontSize[GSCE],getPropertyPriority(),"
17365                 + "getPropertyValue(),height[GSCE],item(),left[GSCE],length[GCE],letterSpacing[GSCE],"
17366                 + "lineHeight[GSCE],margin[GSCE],marginBottom[GSCE],marginLeft[GSCE],marginRight[GSCE],"
17367                 + "marginTop[GSCE],maxHeight[GSCE],maxWidth[GSCE],minHeight[GSCE],minWidth[GSCE],opacity[GSCE],"
17368                 + "outline[GSCE],outlineWidth[GSCE],padding[GSCE],paddingBottom[GSCE],paddingLeft[GSCE],"
17369                 + "paddingRight[GSCE],paddingTop[GSCE],parentRule[GSCE],position[GSCE],removeProperty(),"
17370                 + "right[GSCE],rubyAlign[GSCE],setProperty(),textIndent[GSCE],top[GSCE],verticalAlign[GSCE],"
17371                 + "width[GSCE],wordSpacing[GSCE],zIndex[GSCE]")
17372     public void cssStyleDeclaration() throws Exception {
17373         testString("", "document.body.style");
17374     }
17375 
17376     /**
17377      * Test {@link Location}.
17378      *
17379      * @throws Exception if the test fails
17380      */
17381     @Test
17382     @Alerts(CHROME = "constructor()",
17383             EDGE = "constructor()",
17384             FF = "constructor()",
17385             FF_ESR = "constructor()")
17386     public void location() throws Exception {
17387         testString("", "window.location");
17388         testString("", "document.location");
17389     }
17390 
17391     /**
17392      * Test {@link Screen}.
17393      *
17394      * @throws Exception if the test fails
17395      */
17396     @Test
17397     @Alerts(CHROME = "availHeight[GCE],availLeft[GCE],availTop[GCE],availWidth[GCE],colorDepth[GCE],constructor(),"
17398                 + "height[GCE],isExtended[GCE],onchange[GSCE],orientation[GCE],pixelDepth[GCE],"
17399                 + "width[GCE]",
17400             EDGE = "availHeight[GCE],availLeft[GCE],availTop[GCE],availWidth[GCE],colorDepth[GCE],constructor(),"
17401                 + "height[GCE],isExtended[GCE],onchange[GSCE],orientation[GCE],pixelDepth[GCE],"
17402                 + "width[GCE]",
17403             FF = "availHeight[GCE],availLeft[GCE],availTop[GCE],availWidth[GCE],colorDepth[GCE],constructor(),"
17404                 + "height[GCE],left[GCE],mozLockOrientation(),mozOrientation[GCE],mozUnlockOrientation(),"
17405                 + "onmozorientationchange[GSCE],orientation[GCE],pixelDepth[GCE],top[GCE],"
17406                 + "width[GCE]",
17407             FF_ESR = "availHeight[GCE],availLeft[GCE],availTop[GCE],availWidth[GCE],colorDepth[GCE],constructor(),"
17408                 + "height[GCE],left[GCE],mozLockOrientation(),mozOrientation[GCE],mozUnlockOrientation(),"
17409                 + "onmozorientationchange[GSCE],orientation[GCE],pixelDepth[GCE],top[GCE],"
17410                 + "width[GCE]")
17411     @HtmlUnitNYI(FF = "availHeight[GCE],availLeft[GCE],availTop[GCE],availWidth[GCE],colorDepth[GCE],constructor(),"
17412                 + "height[GCE],left[GCE],mozOrientation[GCE],orientation[GCE],pixelDepth[GCE],top[GCE],width[GCE]",
17413             FF_ESR = "availHeight[GCE],availLeft[GCE],availTop[GCE],availWidth[GCE],colorDepth[GCE],constructor(),"
17414                  + "height[GCE],left[GCE],mozOrientation[GCE],orientation[GCE],pixelDepth[GCE],top[GCE],width[GCE]")
17415     public void screen() throws Exception {
17416         testString("", "window.screen");
17417     }
17418 
17419     /**
17420      * Test {@link Screen}.
17421      *
17422      * @throws Exception if the test fails
17423      */
17424     @Test
17425     @Alerts(CHROME = "angle[GCE],constructor(),lock(),onchange[GSCE],type[GCE],unlock()",
17426             EDGE = "angle[GCE],constructor(),lock(),onchange[GSCE],type[GCE],unlock()",
17427             FF = "angle[GCE],constructor(),lock(),onchange[GSCE],type[GCE],unlock()",
17428             FF_ESR = "angle[GCE],constructor(),lock(),onchange[GSCE],type[GCE],unlock()")
17429     @HtmlUnitNYI(CHROME = "angle[GCE],constructor(),onchange[GSCE],type[GCE]",
17430             EDGE = "angle[GCE],constructor(),onchange[GSCE],type[GCE]",
17431             FF = "angle[GCE],constructor(),onchange[GSCE],type[GCE]",
17432             FF_ESR = "angle[GCE],constructor(),onchange[GSCE],type[GCE]")
17433     public void screenOrientation() throws Exception {
17434         testString("", "window.screen.orientation");
17435     }
17436 
17437     /**
17438      * Test {@link Crypto}.
17439      *
17440      * @throws Exception if the test fails
17441      */
17442     @Test
17443     @Alerts(CHROME = "constructor(),getRandomValues(),randomUUID(),subtle[GCE]",
17444             EDGE = "constructor(),getRandomValues(),randomUUID(),subtle[GCE]",
17445             FF = "constructor(),getRandomValues(),randomUUID(),subtle[GCE]",
17446             FF_ESR = "constructor(),getRandomValues(),randomUUID(),subtle[GCE]")
17447     public void crypto() throws Exception {
17448         testString("", "window.crypto");
17449     }
17450 
17451     /**
17452      * Test {@link SubtleCrypto}.
17453      *
17454      * @throws Exception if the test fails
17455      */
17456     @Test
17457     @Alerts(CHROME = "constructor(),decrypt(),deriveBits(),deriveKey(),digest(),encrypt(),exportKey(),generateKey(),"
17458                 + "importKey(),sign(),unwrapKey(),verify(),"
17459                 + "wrapKey()",
17460             EDGE = "constructor(),decrypt(),deriveBits(),deriveKey(),digest(),encrypt(),exportKey(),generateKey(),"
17461                 + "importKey(),sign(),unwrapKey(),verify(),"
17462                 + "wrapKey()",
17463             FF = "constructor(),decrypt(),deriveBits(),deriveKey(),digest(),encrypt(),exportKey(),generateKey(),"
17464                 + "importKey(),sign(),unwrapKey(),verify(),"
17465                 + "wrapKey()",
17466             FF_ESR = "constructor(),decrypt(),deriveBits(),deriveKey(),digest(),encrypt(),exportKey(),generateKey(),"
17467                 + "importKey(),sign(),unwrapKey(),verify(),"
17468                 + "wrapKey()")
17469     public void cryptoSubtle() throws Exception {
17470         testString("", "window.crypto.subtle");
17471     }
17472 
17473     /**
17474      * Test {@link XPathEvaluator}.
17475      *
17476      * @throws Exception if the test fails
17477      */
17478     @Test
17479     @Alerts(CHROME = "constructor(),createExpression(),createNSResolver(),evaluate()",
17480             EDGE = "constructor(),createExpression(),createNSResolver(),evaluate()",
17481             FF = "constructor(),createExpression(),createNSResolver(),evaluate()",
17482             FF_ESR = "constructor(),createExpression(),createNSResolver(),evaluate()")
17483     public void xPathEvaluator() throws Exception {
17484         testString("", "new XPathEvaluator()");
17485     }
17486 
17487     /**
17488      * Test {@link XPathExpression}.
17489      *
17490      * @throws Exception if the test fails
17491      */
17492     @Test
17493     @Alerts(CHROME = "constructor(),evaluate()",
17494             EDGE = "constructor(),evaluate()",
17495             FF = "constructor(),evaluate()",
17496             FF_ESR = "constructor(),evaluate()")
17497     public void xPathExpression() throws Exception {
17498         testString("var res = new XPathEvaluator().createExpression('//span')", "res");
17499     }
17500 
17501     /**
17502      * Test {@link XPathResult}.
17503      *
17504      * @throws Exception if the test fails
17505      */
17506     @Test
17507     @Alerts(CHROME = "ANY_TYPE[E],ANY_UNORDERED_NODE_TYPE[E],BOOLEAN_TYPE[E],booleanValue[GCE],constructor(),"
17508                 + "FIRST_ORDERED_NODE_TYPE[E],invalidIteratorState[GCE],iterateNext(),NUMBER_TYPE[E],"
17509                 + "numberValue[GCE],ORDERED_NODE_ITERATOR_TYPE[E],ORDERED_NODE_SNAPSHOT_TYPE[E],resultType[GCE],"
17510                 + "singleNodeValue[GCE],snapshotItem(),snapshotLength[GCE],STRING_TYPE[E],stringValue[GCE],"
17511                 + "UNORDERED_NODE_ITERATOR_TYPE[E],"
17512                 + "UNORDERED_NODE_SNAPSHOT_TYPE[E]",
17513             EDGE = "ANY_TYPE[E],ANY_UNORDERED_NODE_TYPE[E],BOOLEAN_TYPE[E],booleanValue[GCE],constructor(),"
17514                 + "FIRST_ORDERED_NODE_TYPE[E],invalidIteratorState[GCE],iterateNext(),NUMBER_TYPE[E],"
17515                 + "numberValue[GCE],ORDERED_NODE_ITERATOR_TYPE[E],ORDERED_NODE_SNAPSHOT_TYPE[E],resultType[GCE],"
17516                 + "singleNodeValue[GCE],snapshotItem(),snapshotLength[GCE],STRING_TYPE[E],stringValue[GCE],"
17517                 + "UNORDERED_NODE_ITERATOR_TYPE[E],"
17518                 + "UNORDERED_NODE_SNAPSHOT_TYPE[E]",
17519             FF = "ANY_TYPE[E],ANY_UNORDERED_NODE_TYPE[E],BOOLEAN_TYPE[E],booleanValue[GCE],constructor(),"
17520                 + "FIRST_ORDERED_NODE_TYPE[E],invalidIteratorState[GCE],iterateNext(),NUMBER_TYPE[E],"
17521                 + "numberValue[GCE],ORDERED_NODE_ITERATOR_TYPE[E],ORDERED_NODE_SNAPSHOT_TYPE[E],resultType[GCE],"
17522                 + "singleNodeValue[GCE],snapshotItem(),snapshotLength[GCE],STRING_TYPE[E],stringValue[GCE],"
17523                 + "UNORDERED_NODE_ITERATOR_TYPE[E],"
17524                 + "UNORDERED_NODE_SNAPSHOT_TYPE[E]",
17525             FF_ESR = "ANY_TYPE[E],ANY_UNORDERED_NODE_TYPE[E],BOOLEAN_TYPE[E],booleanValue[GCE],constructor(),"
17526                 + "FIRST_ORDERED_NODE_TYPE[E],invalidIteratorState[GCE],iterateNext(),NUMBER_TYPE[E],"
17527                 + "numberValue[GCE],ORDERED_NODE_ITERATOR_TYPE[E],ORDERED_NODE_SNAPSHOT_TYPE[E],resultType[GCE],"
17528                 + "singleNodeValue[GCE],snapshotItem(),snapshotLength[GCE],STRING_TYPE[E],stringValue[GCE],"
17529                 + "UNORDERED_NODE_ITERATOR_TYPE[E],"
17530                 + "UNORDERED_NODE_SNAPSHOT_TYPE[E]")
17531     public void xPathResult() throws Exception {
17532         testString("var res = document.evaluate('/html/body', document, null, XPathResult.ANY_TYPE, null);", "res");
17533     }
17534 
17535     /**
17536      * Test {@link CDATASection}.
17537      *
17538      * @throws Exception if the test fails
17539      */
17540     @Test
17541     @Alerts(CHROME = "constructor()",
17542             EDGE = "constructor()",
17543             FF = "constructor()",
17544             FF_ESR = "constructor()")
17545     public void cDATASection() throws Exception {
17546         final String setup = " var doc = document.implementation.createDocument('', '', null);\n"
17547                 + "var root = doc.appendChild(doc.createElement('root'));\n"
17548                 + "var cdata = root.appendChild(doc.createCDATASection('abcdef'));\n";
17549 
17550         testString(setup, "cdata");
17551     }
17552 
17553     /**
17554      * Test {@link CDATASection}.
17555      *
17556      * @throws Exception if the test fails
17557      */
17558     @Test
17559     @Alerts(CHROME = "after(),before(),constructor(),name[GCE],publicId[GCE],remove(),replaceWith(),systemId[GCE]",
17560             EDGE = "after(),before(),constructor(),name[GCE],publicId[GCE],remove(),replaceWith(),systemId[GCE]",
17561             FF = "after(),before(),constructor(),name[GCE],publicId[GCE],remove(),replaceWith(),systemId[GCE]",
17562             FF_ESR = "after(),before(),constructor(),name[GCE],publicId[GCE],remove(),replaceWith(),systemId[GCE]")
17563     public void documentType() throws Exception {
17564         testString("", "document.firstChild");
17565     }
17566 
17567     /**
17568      * Test Blob.
17569      *
17570      * @throws Exception if the test fails
17571      */
17572     @Test
17573     @Alerts(CHROME = "arrayBuffer(),constructor(),size[GCE],slice(),stream(),text(),type[GCE]",
17574             EDGE = "arrayBuffer(),constructor(),size[GCE],slice(),stream(),text(),type[GCE]",
17575             FF = "arrayBuffer(),bytes(),constructor(),size[GCE],slice(),stream(),text(),type[GCE]",
17576             FF_ESR = "arrayBuffer(),bytes(),constructor(),size[GCE],slice(),stream(),text(),type[GCE]")
17577     @HtmlUnitNYI(FF = "arrayBuffer(),constructor(),size[GCE],slice(),stream(),text(),type[GCE]",
17578             FF_ESR = "arrayBuffer(),constructor(),size[GCE],slice(),stream(),text(),type[GCE]")
17579     public void blob() throws Exception {
17580         testString("", "new Blob([1, 2], { type: \"text/html\" })");
17581     }
17582 
17583     /**
17584      * Test URLSearchParams.
17585      *
17586      * @throws Exception if the test fails
17587      */
17588     @Test
17589     @Alerts(CHROME = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),size[GCE],"
17590                 + "sort(),toString(),"
17591                 + "values()",
17592             EDGE = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),size[GCE],"
17593                 + "sort(),toString(),"
17594                 + "values()",
17595             FF = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),size[GCE],"
17596                 + "sort(),toString(),"
17597                 + "values()",
17598             FF_ESR = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),has(),keys(),set(),size[GCE],"
17599                 + "sort(),toString(),"
17600                 + "values()")
17601     @HtmlUnitNYI(CHROME = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),"
17602                 + "has(),keys(),set(),size[GCE],toString(),values()",
17603             EDGE = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),"
17604                 + "has(),keys(),set(),size[GCE],toString(),values()",
17605             FF = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),"
17606                 + "has(),keys(),set(),size[GCE],toString(),values()",
17607             FF_ESR = "append(),constructor(),delete(),entries(),forEach(),get(),getAll(),"
17608                 + "has(),keys(),set(),size[GCE],toString(),values()")
17609     public void urlSearchParams() throws Exception {
17610         testString("", "new URLSearchParams('q=URLUtils.searchParams&topic=api')");
17611     }
17612 
17613     /**
17614      * Test NamedNodeMap.
17615      *
17616      * @throws Exception if the test fails
17617      */
17618     @Test
17619     @Alerts(CHROME = "constructor(),getNamedItem(),getNamedItemNS(),item(),length[GCE],removeNamedItem(),"
17620                 + "removeNamedItemNS(),setNamedItem(),setNamedItemNS()",
17621             EDGE = "constructor(),getNamedItem(),getNamedItemNS(),item(),length[GCE],removeNamedItem(),"
17622                 + "removeNamedItemNS(),setNamedItem(),setNamedItemNS()",
17623             FF = "constructor(),getNamedItem(),getNamedItemNS(),item(),length[GCE],removeNamedItem(),"
17624                 + "removeNamedItemNS(),setNamedItem(),setNamedItemNS()",
17625             FF_ESR = "constructor(),getNamedItem(),getNamedItemNS(),item(),length[GCE],removeNamedItem(),"
17626                 + "removeNamedItemNS(),setNamedItem(),setNamedItemNS()")
17627     public void namedNodeMap() throws Exception {
17628         testString("", "element.attributes");
17629     }
17630 
17631     /**
17632      * Test MutationObserver.
17633      *
17634      * @throws Exception if the test fails
17635      */
17636     @Test
17637     @Alerts(CHROME = "constructor(),disconnect(),observe(),takeRecords()",
17638             EDGE = "constructor(),disconnect(),observe(),takeRecords()",
17639             FF = "constructor(),disconnect(),observe(),takeRecords()",
17640             FF_ESR = "constructor(),disconnect(),observe(),takeRecords()")
17641     public void mutationObserver() throws Exception {
17642         testString("", "new MutationObserver(function(m) {})");
17643     }
17644 
17645     /**
17646      * Test WebKitMutationObserver.
17647      *
17648      * @throws Exception if the test fails
17649      */
17650     @Test
17651     @Alerts(CHROME = "constructor(),disconnect(),observe(),takeRecords()",
17652             EDGE = "constructor(),disconnect(),observe(),takeRecords()",
17653             FF = "ReferenceError",
17654             FF_ESR = "ReferenceError")
17655     public void webKitMutationObserver() throws Exception {
17656         testString("", "new WebKitMutationObserver(function(m) {})");
17657     }
17658 
17659     /**
17660      * Test StyleSheet.
17661      *
17662      * @throws Exception if the test fails
17663      */
17664     @Test
17665     @Alerts("addRule(),constructor(),cssRules[GCE],deleteRule(),insertRule(),"
17666                 + "ownerRule[GCE],removeRule(),replace(),replaceSync(),rules[GCE]")
17667     @HtmlUnitNYI(CHROME = "addRule(),constructor(),cssRules[GCE],deleteRule(),"
17668                 + "insertRule(),removeRule(),rules[GCE]",
17669             EDGE = "addRule(),constructor(),cssRules[GCE],deleteRule(),"
17670                     + "insertRule(),removeRule(),rules[GCE]",
17671             FF = "addRule(),constructor(),cssRules[GCE],deleteRule(),"
17672                     + "insertRule(),removeRule(),rules[GCE]",
17673             FF_ESR = "addRule(),constructor(),cssRules[GCE],deleteRule(),"
17674                     + "insertRule(),removeRule(),rules[GCE]")
17675     public void cssStyleSheet() throws Exception {
17676         testString("", "document.styleSheets[0]");
17677     }
17678 
17679     /**
17680      * Test CSSPageRule.
17681      *
17682      * @throws Exception if the test fails
17683      */
17684     @Test
17685     @Alerts("constructor(),selectorText[GSCE],style[GSCE]")
17686     @HtmlUnitNYI(CHROME = "constructor(),selectorText[GSCE],style[GCE]",
17687             EDGE = "constructor(),selectorText[GSCE],style[GCE]",
17688             FF = "constructor(),selectorText[GSCE],style[GCE]",
17689             FF_ESR = "constructor(),selectorText[GSCE],style[GCE]")
17690     public void cssPageRule() throws Exception {
17691         testString("", "document.styleSheets[0].cssRules[0]");
17692     }
17693 
17694     /**
17695      * Test CSSMediaRule.
17696      *
17697      * @throws Exception if the test fails
17698      */
17699     @Test
17700     @Alerts("constructor(),media[GSCE]")
17701     @HtmlUnitNYI(CHROME = "constructor(),media[GCE]",
17702             EDGE = "constructor(),media[GCE]",
17703             FF = "constructor(),media[GCE]",
17704             FF_ESR = "constructor(),media[GCE]")
17705     public void cssMediaRule() throws Exception {
17706         testString("", "document.styleSheets[1].cssRules[0]");
17707     }
17708 
17709     /**
17710      * Test CSSFontFaceRule.
17711      *
17712      * @throws Exception if the test fails
17713      */
17714     @Test
17715     @Alerts("constructor(),style[GCE]")
17716     @HtmlUnitNYI(CHROME = "constructor()",
17717             EDGE = "constructor()",
17718             FF = "constructor()",
17719             FF_ESR = "constructor()")
17720     public void cssFontFaceRule() throws Exception {
17721         testString("", "document.styleSheets[2].cssRules[0]");
17722     }
17723 
17724     /**
17725      * Test CSSImportRule.
17726      *
17727      * @throws Exception if the test fails
17728      */
17729     @Test
17730     @Alerts("constructor(),href[GCE],layerName[GCE],media[GSCE],styleSheet[GCE],supportsText[GCE]")
17731     @HtmlUnitNYI(CHROME = "constructor(),href[GCE],media[GCE],styleSheet[GCE]",
17732             EDGE = "constructor(),href[GCE],media[GCE],styleSheet[GCE]",
17733             FF = "constructor(),href[GCE],media[GCE],styleSheet[GCE]",
17734             FF_ESR = "constructor(),href[GCE],media[GCE],styleSheet[GCE]")
17735     public void cssImportRule() throws Exception {
17736         testString("", "document.styleSheets[3].cssRules[0]");
17737     }
17738 
17739     /**
17740      * Test CSSRule.
17741      *
17742      * @throws Exception if the test fails
17743      */
17744     @Test
17745     @Alerts(DEFAULT = "constructor(),cssRules[GCE],deleteRule(),insertRule(),"
17746                 + "selectorText[GSCE],style[GSCE],styleMap[GCE]",
17747             FF = "constructor(),selectorText[GSCE],style[GSCE]",
17748             FF_ESR = "constructor(),selectorText[GSCE],style[GSCE]")
17749     @HtmlUnitNYI(CHROME = "constructor(),selectorText[GSCE],style[GCE]",
17750             EDGE = "constructor(),selectorText[GSCE],style[GCE]",
17751             FF = "constructor(),selectorText[GSCE],style[GCE]",
17752             FF_ESR = "constructor(),selectorText[GSCE],style[GCE]")
17753     public void cssStyleRule() throws Exception {
17754         testString("", "document.styleSheets[4].cssRules[0]");
17755     }
17756 
17757     /**
17758      * Test {@link org.htmlunit.javascript.host.geo.Geolocation}.
17759      *
17760      * @throws Exception if the test fails
17761      */
17762     @Test
17763     @Alerts(CHROME = "clearWatch(),constructor(),getCurrentPosition(),watchPosition()",
17764             EDGE = "clearWatch(),constructor(),getCurrentPosition(),watchPosition()",
17765             FF = "clearWatch(),constructor(),getCurrentPosition(),watchPosition()",
17766             FF_ESR = "clearWatch(),constructor(),getCurrentPosition(),watchPosition()")
17767     public void geolocation() throws Exception {
17768         testString("", " navigator.geolocation");
17769     }
17770 
17771     /**
17772      * Test {@link org.htmlunit.javascript.host.geo.Geolocation}.
17773      *
17774      * @throws Exception if the test fails
17775      */
17776     @Test
17777     @Alerts(CHROME = "abort(),constructor(),DONE[E],getAllResponseHeaders(),getResponseHeader(),HEADERS_RECEIVED[E],"
17778                 + "LOADING[E],onreadystatechange[GSCE],open(),OPENED[E],overrideMimeType(),readyState[GCE],"
17779                 + "response[GCE],responseText[GCE],responseType[GSCE],responseURL[GCE],responseXML[GCE],send(),"
17780                 + "setAttributionReporting(),setPrivateToken(),setRequestHeader(),status[GCE],statusText[GCE],"
17781                 + "timeout[GSCE],UNSENT[E],upload[GCE],"
17782                 + "withCredentials[GSCE]",
17783             EDGE = "abort(),constructor(),DONE[E],getAllResponseHeaders(),getResponseHeader(),HEADERS_RECEIVED[E],"
17784                 + "LOADING[E],onreadystatechange[GSCE],open(),OPENED[E],overrideMimeType(),readyState[GCE],"
17785                 + "response[GCE],responseText[GCE],responseType[GSCE],responseURL[GCE],responseXML[GCE],send(),"
17786                 + "setAttributionReporting(),setPrivateToken(),setRequestHeader(),status[GCE],statusText[GCE],"
17787                 + "timeout[GSCE],UNSENT[E],upload[GCE],"
17788                 + "withCredentials[GSCE]",
17789             FF = "abort(),constructor(),DONE[E],getAllResponseHeaders(),getResponseHeader(),HEADERS_RECEIVED[E],"
17790                 + "LOADING[E],mozAnon[GCE],mozSystem[GCE],onreadystatechange[GSCE],open(),OPENED[E],"
17791                 + "overrideMimeType(),readyState[GCE],response[GCE],responseText[GCE],responseType[GSCE],"
17792                 + "responseURL[GCE],responseXML[GCE],send(),setRequestHeader(),status[GCE],statusText[GCE],"
17793                 + "timeout[GSCE],UNSENT[E],upload[GCE],withCredentials[GSCE]",
17794             FF_ESR = "abort(),constructor(),DONE[E],getAllResponseHeaders(),getResponseHeader(),HEADERS_RECEIVED[E],"
17795                 + "LOADING[E],mozAnon[GCE],mozSystem[GCE],onreadystatechange[GSCE],open(),OPENED[E],"
17796                 + "overrideMimeType(),readyState[GCE],response[GCE],responseText[GCE],responseType[GSCE],"
17797                 + "responseURL[GCE],responseXML[GCE],send(),setRequestHeader(),status[GCE],statusText[GCE],"
17798                 + "timeout[GSCE],UNSENT[E],upload[GCE],withCredentials[GSCE]")
17799     @HtmlUnitNYI(CHROME = "abort(),constructor(),DONE[E],getAllResponseHeaders(),getResponseHeader(),"
17800                 + "HEADERS_RECEIVED[E],LOADING[E],onreadystatechange[GSCE],open(),OPENED[E],overrideMimeType(),"
17801                 + "readyState[GCE],response[GCE],responseText[GCE],responseType[GSCE],responseXML[GCE],send(),"
17802                 + "setRequestHeader(),status[GCE],statusText[GCE],timeout[GSCE],UNSENT[E],"
17803                 + "upload[GCE],withCredentials[GSCE]",
17804             EDGE = "abort(),constructor(),DONE[E],getAllResponseHeaders(),getResponseHeader(),"
17805                 + "HEADERS_RECEIVED[E],LOADING[E],onreadystatechange[GSCE],open(),OPENED[E],overrideMimeType(),"
17806                 + "readyState[GCE],response[GCE],responseText[GCE],responseType[GSCE],responseXML[GCE],send(),"
17807                 + "setRequestHeader(),status[GCE],statusText[GCE],timeout[GSCE],UNSENT[E],"
17808                 + "upload[GCE],withCredentials[GSCE]",
17809             FF = "abort(),constructor(),DONE[E],getAllResponseHeaders(),getResponseHeader(),"
17810                 + "HEADERS_RECEIVED[E],LOADING[E],onreadystatechange[GSCE],open(),OPENED[E],overrideMimeType(),"
17811                 + "readyState[GCE],response[GCE],responseText[GCE],responseType[GSCE],responseXML[GCE],send(),"
17812                 + "setRequestHeader(),status[GCE],statusText[GCE],timeout[GSCE],UNSENT[E],"
17813                 + "upload[GCE],withCredentials[GSCE]",
17814             FF_ESR = "abort(),constructor(),DONE[E],getAllResponseHeaders(),getResponseHeader(),"
17815                 + "HEADERS_RECEIVED[E],LOADING[E],onreadystatechange[GSCE],open(),OPENED[E],overrideMimeType(),"
17816                 + "readyState[GCE],response[GCE],responseText[GCE],responseType[GSCE],responseXML[GCE],send(),"
17817                 + "setRequestHeader(),status[GCE],statusText[GCE],timeout[GSCE],UNSENT[E],"
17818                 + "upload[GCE],withCredentials[GSCE]")
17819     public void xmlHttpRequest() throws Exception {
17820         testString("", "new XMLHttpRequest()");
17821     }
17822 
17823     /**
17824      * Test Request.
17825      *
17826      * @throws Exception if the test fails
17827      */
17828     @Test
17829     @Alerts(CHROME = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),"
17830                 + "cache[GCE],clone(),constructor(),credentials[GCE],"
17831                 + "destination[GCE],duplex[GCE],formData(),headers[GCE],integrity[GCE],isHistoryNavigation[GCE],json(),"
17832                 + "keepalive[GCE],method[GCE],mode[GCE],redirect[GCE],referrer[GCE],referrerPolicy[GCE],signal[GCE],"
17833                 + "targetAddressSpace[GCE],text(),"
17834                 + "url[GCE]",
17835             EDGE = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),"
17836                 + "cache[GCE],clone(),constructor(),credentials[GCE],"
17837                 + "destination[GCE],duplex[GCE],formData(),headers[GCE],integrity[GCE],isHistoryNavigation[GCE],json(),"
17838                 + "keepalive[GCE],method[GCE],mode[GCE],redirect[GCE],referrer[GCE],referrerPolicy[GCE],signal[GCE],"
17839                 + "targetAddressSpace[GCE],text(),"
17840                 + "url[GCE]",
17841             FF = "arrayBuffer(),blob(),bodyUsed[GCE],bytes(),cache[GCE],clone(),constructor(),credentials[GCE],"
17842                 + "destination[GCE],formData(),headers[GCE],integrity[GCE],json(),keepalive[GCE],method[GCE],"
17843                 + "mode[GCE],redirect[GCE],referrer[GCE],referrerPolicy[GCE],signal[GCE],text(),"
17844                 + "url[GCE]",
17845             FF_ESR = "arrayBuffer(),blob(),bodyUsed[GCE],bytes(),cache[GCE],clone(),constructor(),credentials[GCE],"
17846                 + "destination[GCE],formData(),headers[GCE],integrity[GCE],json(),method[GCE],mode[GCE],"
17847                 + "redirect[GCE],referrer[GCE],referrerPolicy[GCE],signal[GCE],text(),"
17848                 + "url[GCE]")
17849     @HtmlUnitNYI(CHROME = "constructor()",
17850             EDGE = "constructor()",
17851             FF = "constructor()",
17852             FF_ESR = "constructor()")
17853     public void request() throws Exception {
17854         testString("", "new Request('https://www.htmlunit.org')");
17855     }
17856 
17857     /**
17858      * Test Response.
17859      *
17860      * @throws Exception if the test fails
17861      */
17862     @Test
17863     @Alerts(CHROME = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),"
17864                 + "clone(),constructor(),formData(),headers[GCE],"
17865                 + "json(),ok[GCE],redirected[GCE],status[GCE],statusText[GCE],text(),type[GCE],"
17866                 + "url[GCE]",
17867             EDGE = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),"
17868                 + "clone(),constructor(),formData(),headers[GCE],"
17869                 + "json(),ok[GCE],redirected[GCE],status[GCE],statusText[GCE],text(),type[GCE],"
17870                 + "url[GCE]",
17871             FF = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),clone(),constructor(),formData(),"
17872                 + "headers[GCE],json(),ok[GCE],redirected[GCE],status[GCE],statusText[GCE],text(),type[GCE],"
17873                 + "url[GCE]",
17874             FF_ESR = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),clone(),constructor(),formData(),"
17875                 + "headers[GCE],json(),ok[GCE],redirected[GCE],status[GCE],statusText[GCE],text(),type[GCE],"
17876                 + "url[GCE]")
17877     @HtmlUnitNYI(CHROME = "constructor()",
17878             EDGE = "constructor()",
17879             FF = "constructor()",
17880             FF_ESR = "constructor()")
17881     public void response() throws Exception {
17882         testString("", "new Response()");
17883     }
17884 
17885     /**
17886      * Test RadioNodeList.
17887      *
17888      * @throws Exception if the test fails
17889      */
17890     @Test
17891     @Alerts(CHROME = "constructor(),value[GSCE]",
17892             EDGE = "constructor(),value[GSCE]",
17893             FF = "constructor(),value[GSCE]",
17894             FF_ESR = "constructor(),value[GSCE]")
17895     public void radioNodeList() throws Exception {
17896         testString("", "document.myForm.first");
17897     }
17898 
17899     /**
17900      * Test HTMLFormControlsCollection.
17901      *
17902      * @throws Exception if the test fails
17903      */
17904     @Test
17905     @Alerts(CHROME = "constructor(),namedItem()",
17906             EDGE = "constructor(),namedItem()",
17907             FF = "constructor(),namedItem()",
17908             FF_ESR = "constructor(),namedItem()")
17909     public void htmlFormControlsCollection() throws Exception {
17910         testString("", "document.myForm.elements");
17911     }
17912 
17913     /**
17914      * Test {@link org.htmlunit.javascript.host.abort.AbortController}.
17915      *
17916      * @throws Exception if an error occurs
17917      */
17918     @Test
17919     @Alerts(CHROME = "abort(),constructor(),signal[GCE]",
17920             EDGE = "abort(),constructor(),signal[GCE]",
17921             FF = "abort(),constructor(),signal[GCE]",
17922             FF_ESR = "abort(),constructor(),signal[GCE]")
17923     public void abortController() throws Exception {
17924         testString("", "new AbortController()");
17925     }
17926 
17927     /**
17928      * Test {@link org.htmlunit.javascript.host.abort.AbortSignal}.
17929      *
17930      * @throws Exception if an error occurs
17931      */
17932     @Test
17933     @Alerts(CHROME = "aborted[GCE],constructor(),onabort[GSCE],reason[GCE],throwIfAborted()",
17934             EDGE = "aborted[GCE],constructor(),onabort[GSCE],reason[GCE],throwIfAborted()",
17935             FF = "aborted[GCE],constructor(),onabort[GSCE],reason[GCE],throwIfAborted()",
17936             FF_ESR = "aborted[GCE],constructor(),onabort[GSCE],reason[GCE],throwIfAborted()")
17937     @HtmlUnitNYI(CHROME = "constructor()",
17938             EDGE = "constructor()",
17939             FF = "constructor()",
17940             FF_ESR = "constructor()")
17941     public void abortSignal() throws Exception {
17942         testString("", "new AbortController().signal");
17943     }
17944 
17945     /**
17946      * Test {@link org.htmlunit.javascript.host.dom.DOMTokenList}.
17947      *
17948      * @throws Exception if an error occurs
17949      */
17950     @Test
17951     @Alerts(CHROME = "add(),constructor(),contains(),entries(),forEach(),item(),keys(),length[GCE],remove(),replace(),"
17952                 + "supports(),toggle(),toString(),value[GSCE],values()",
17953             EDGE = "add(),constructor(),contains(),entries(),forEach(),item(),keys(),length[GCE],remove(),replace(),"
17954                 + "supports(),toggle(),toString(),value[GSCE],values()",
17955             FF = "add(),constructor(),contains(),entries(),forEach(),item(),keys(),length[GCE],remove(),replace(),"
17956                 + "supports(),toggle(),toString(),value[GSCE],values()",
17957             FF_ESR = "add(),constructor(),contains(),entries(),forEach(),item(),keys(),length[GCE],remove(),replace(),"
17958                 + "supports(),toggle(),toString(),value[GSCE],values()")
17959     @HtmlUnitNYI(CHROME = "add(),constructor(),contains(),entries(),forEach(),item(),keys(),length[GCE],"
17960                 + "remove(),replace(),toggle(),value[GSCE],values()",
17961             EDGE = "add(),constructor(),contains(),entries(),forEach(),item(),keys(),length[GCE],"
17962                 + "remove(),replace(),toggle(),value[GSCE],values()",
17963             FF = "add(),constructor(),contains(),entries(),forEach(),item(),keys(),length[GCE],"
17964                 + "remove(),replace(),toggle(),value[GSCE],values()",
17965             FF_ESR = "add(),constructor(),contains(),entries(),forEach(),item(),keys(),length[GCE],"
17966                 + "remove(),replace(),toggle(),value[GSCE],values()")
17967     public void domTokenList() throws Exception {
17968         testString("", "document.body.classList");
17969     }
17970 
17971     /**
17972      * Test {@link org.htmlunit.javascript.host.draganddrop.DataTransfer}.
17973      *
17974      * @throws Exception if an error occurs
17975      */
17976     @Test
17977     @Alerts(CHROME = "clearData(),constructor(),dropEffect[GSCE],effectAllowed[GSCE],files[GCE],"
17978                 + "getData(),items[GCE],setData(),setDragImage(),types[GCE]",
17979             EDGE = "clearData(),constructor(),dropEffect[GSCE],effectAllowed[GSCE],files[GCE],"
17980                 + "getData(),items[GCE],setData(),setDragImage(),types[GCE]",
17981             FF = "addElement(),clearData(),constructor(),dropEffect[GSCE],effectAllowed[GSCE],files[GCE],"
17982                 + "getData(),items[GCE],mozCursor[GSCE],mozSourceNode[GCE],mozUserCancelled[GCE],"
17983                 + "setData(),setDragImage(),types[GCE]",
17984             FF_ESR = "addElement(),clearData(),constructor(),dropEffect[GSCE],effectAllowed[GSCE],files[GCE],"
17985                 + "getData(),items[GCE],mozCursor[GSCE],mozSourceNode[GCE],mozUserCancelled[GCE],"
17986                 + "setData(),setDragImage(),types[GCE]")
17987     @HtmlUnitNYI(CHROME = "constructor(),files[GCE],items[GCE]",
17988             EDGE = "constructor(),files[GCE],items[GCE]",
17989             FF = "constructor(),files[GCE],items[GCE]",
17990             FF_ESR = "constructor(),files[GCE],items[GCE]")
17991     public void dataTransfer() throws Exception {
17992         testString("", "new DataTransfer()");
17993     }
17994 
17995     /**
17996      * Test {@link org.htmlunit.javascript.host.draganddrop.DataTransferItemList}.
17997      *
17998      * @throws Exception if an error occurs
17999      */
18000     @Test
18001     @Alerts(CHROME = "add(),clear(),constructor(),length[GCE],remove()",
18002             EDGE = "add(),clear(),constructor(),length[GCE],remove()",
18003             FF = "add(),clear(),constructor(),length[GCE],remove()",
18004             FF_ESR = "add(),clear(),constructor(),length[GCE],remove()")
18005     public void dataTransferItemList() throws Exception {
18006         testString("", "new DataTransfer().items");
18007     }
18008 
18009     /**
18010      * Test {@link org.htmlunit.javascript.host.file.FileList}.
18011      *
18012      * @throws Exception if an error occurs
18013      */
18014     @Test
18015     @Alerts(CHROME = "constructor(),item(),length[GCE]",
18016             EDGE = "constructor(),item(),length[GCE]",
18017             FF = "constructor(),item(),length[GCE]",
18018             FF_ESR = "constructor(),item(),length[GCE]")
18019     public void fileList() throws Exception {
18020         testString("", "new DataTransfer().files");
18021     }
18022 
18023     /**
18024      * Test {@link org.htmlunit.javascript.host.file.FileList}.
18025      *
18026      * @throws Exception if an error occurs
18027      */
18028     @Test
18029     @Alerts(CHROME = "constructor(),item(),length[GCE]",
18030             EDGE = "constructor(),item(),length[GCE]",
18031             FF = "constructor(),item(),length[GCE]",
18032             FF_ESR = "constructor(),item(),length[GCE]")
18033     public void fileList2() throws Exception {
18034         testString("", "document.getElementById('fileItem').files");
18035     }
18036 
18037     /**
18038      * Test {@link org.htmlunit.javascript.host.PluginArray}.
18039      *
18040      * @throws Exception if an error occurs
18041      */
18042     @Test
18043     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem(),refresh()",
18044             EDGE = "constructor(),item(),length[GCE],namedItem(),refresh()",
18045             FF = "constructor(),item(),length[GCE],namedItem(),refresh()",
18046             FF_ESR = "constructor(),item(),length[GCE],namedItem(),refresh()")
18047     public void pluginArray() throws Exception {
18048         testString("", "navigator.plugins");
18049     }
18050 
18051     /**
18052      * Test {@link org.htmlunit.javascript.host.Plugin}.
18053      *
18054      * @throws Exception if an error occurs
18055      */
18056     @Test
18057     @Alerts(CHROME = "constructor(),description[GCE],filename[GCE],item(),length[GCE],name[GCE],namedItem()",
18058             EDGE = "constructor(),description[GCE],filename[GCE],item(),length[GCE],name[GCE],namedItem()",
18059             FF = "constructor(),description[GCE],filename[GCE],item(),length[GCE],name[GCE],namedItem()",
18060             FF_ESR = "constructor(),description[GCE],filename[GCE],item(),length[GCE],name[GCE],namedItem()")
18061     public void plugin() throws Exception {
18062         testString("", "navigator.plugins[0]");
18063     }
18064 
18065     /**
18066      * Test {@link org.htmlunit.javascript.host.MimeTypeArray}.
18067      *
18068      * @throws Exception if an error occurs
18069      */
18070     @Test
18071     @Alerts(CHROME = "constructor(),item(),length[GCE],namedItem()",
18072             EDGE = "constructor(),item(),length[GCE],namedItem()",
18073             FF = "constructor(),item(),length[GCE],namedItem()",
18074             FF_ESR = "constructor(),item(),length[GCE],namedItem()")
18075     public void mimeTypeArray() throws Exception {
18076         testString("", "navigator.mimeTypes");
18077     }
18078 
18079     /**
18080      * Test {@link org.htmlunit.javascript.host.MimeType}.
18081      *
18082      * @throws Exception if an error occurs
18083      */
18084     @Test
18085     @Alerts(CHROME = "constructor(),description[GCE],enabledPlugin[GCE],suffixes[GCE],type[GCE]",
18086             EDGE = "constructor(),description[GCE],enabledPlugin[GCE],suffixes[GCE],type[GCE]",
18087             FF = "constructor(),description[GCE],enabledPlugin[GCE],suffixes[GCE],type[GCE]",
18088             FF_ESR = "constructor(),description[GCE],enabledPlugin[GCE],suffixes[GCE],type[GCE]")
18089     public void mimeType() throws Exception {
18090         testString("", "navigator.mimeTypes[0]");
18091     }
18092 
18093     /**
18094      * Test {@link org.htmlunit.javascript.host.Navigator}.
18095      *
18096      * @throws Exception if an error occurs
18097      */
18098     @Test
18099     @Alerts(CHROME = "adAuctionComponents(),appCodeName[GCE],appName[GCE],appVersion[GCE],bluetooth[GCE],"
18100                 + "canLoadAdAuctionFencedFrame(),canShare(),clearAppBadge(),clearOriginJoinedAdInterestGroups(),"
18101                 + "clipboard[GCE],connection[GCE],constructor(),cookieEnabled[GCE],createAuctionNonce(),"
18102                 + "credentials[GCE],deprecatedReplaceInURN(),deprecatedRunAdAuctionEnforcesKAnonymity[GCE],"
18103                 + "deprecatedURNToURL(),deviceMemory[GCE],devicePosture[GCE],"
18104                 + "doNotTrack[GCE],geolocation[GCE],getBattery(),"
18105                 + "getGamepads(),getInstalledRelatedApps(),getInterestGroupAdAuctionData(),"
18106                 + "getUserMedia(),gpu[GCE],hardwareConcurrency[GCE],"
18107                 + "hid[GCE],ink[GCE],javaEnabled(),joinAdInterestGroup(),keyboard[GCE],language[GCE],languages[GCE],"
18108                 + "leaveAdInterestGroup(),locks[GCE],login[GCE],managed[GCE],maxTouchPoints[GCE],"
18109                 + "mediaCapabilities[GCE],mediaDevices[GCE],mediaSession[GCE],mimeTypes[GCE],onLine[GCE],"
18110                 + "pdfViewerEnabled[GCE],permissions[GCE],platform[GCE],plugins[GCE],presentation[GCE],product[GCE],"
18111                 + "productSub[GCE],protectedAudience[GCE],registerProtocolHandler(),requestMediaKeySystemAccess(),"
18112                 + "requestMIDIAccess(),runAdAuction(),scheduling[GCE],sendBeacon(),serial[GCE],serviceWorker[GCE],"
18113                 + "setAppBadge(),share(),storage[GCE],storageBuckets[GCE],unregisterProtocolHandler(),"
18114                 + "updateAdInterestGroups(),usb[GCE],userActivation[GCE],userAgent[GCE],userAgentData[GCE],"
18115                 + "vendor[GCE],vendorSub[GCE],vibrate(),virtualKeyboard[GCE],wakeLock[GCE],webdriver[GCE],"
18116                 + "webkitGetUserMedia(),webkitPersistentStorage[GCE],webkitTemporaryStorage[GCE],"
18117                 + "windowControlsOverlay[GCE],"
18118                 + "xr[GCE]",
18119             EDGE = "adAuctionComponents(),appCodeName[GCE],appName[GCE],appVersion[GCE],bluetooth[GCE],"
18120                 + "canLoadAdAuctionFencedFrame(),canShare(),clearAppBadge(),clearOriginJoinedAdInterestGroups(),"
18121                 + "clipboard[GCE],connection[GCE],constructor(),cookieEnabled[GCE],createAuctionNonce(),"
18122                 + "credentials[GCE],deprecatedReplaceInURN(),deprecatedRunAdAuctionEnforcesKAnonymity[GCE],"
18123                 + "deprecatedURNToURL(),deviceMemory[GCE],devicePosture[GCE],"
18124                 + "doNotTrack[GCE],geolocation[GCE],getBattery(),"
18125                 + "getGamepads(),getInstalledRelatedApps(),getInterestGroupAdAuctionData(),"
18126                 + "getUserMedia(),gpu[GCE],hardwareConcurrency[GCE],"
18127                 + "hid[GCE],ink[GCE],javaEnabled(),joinAdInterestGroup(),keyboard[GCE],language[GCE],languages[GCE],"
18128                 + "leaveAdInterestGroup(),locks[GCE],login[GCE],managed[GCE],maxTouchPoints[GCE],"
18129                 + "mediaCapabilities[GCE],mediaDevices[GCE],mediaSession[GCE],mimeTypes[GCE],onLine[GCE],"
18130                 + "pdfViewerEnabled[GCE],permissions[GCE],platform[GCE],plugins[GCE],presentation[GCE],product[GCE],"
18131                 + "productSub[GCE],protectedAudience[GCE],registerProtocolHandler(),requestMediaKeySystemAccess(),"
18132                 + "requestMIDIAccess(),runAdAuction(),scheduling[GCE],sendBeacon(),serial[GCE],serviceWorker[GCE],"
18133                 + "setAppBadge(),share(),storage[GCE],storageBuckets[GCE],unregisterProtocolHandler(),"
18134                 + "updateAdInterestGroups(),usb[GCE],userActivation[GCE],userAgent[GCE],userAgentData[GCE],"
18135                 + "vendor[GCE],vendorSub[GCE],vibrate(),virtualKeyboard[GCE],wakeLock[GCE],webdriver[GCE],"
18136                 + "webkitGetUserMedia(),webkitPersistentStorage[GCE],webkitTemporaryStorage[GCE],"
18137                 + "windowControlsOverlay[GCE],"
18138                 + "xr[GCE]",
18139             FF = "appCodeName[GCE],appName[GCE],appVersion[GCE],buildID[GCE],clipboard[GCE],constructor(),"
18140                 + "cookieEnabled[GCE],credentials[GCE],doNotTrack[GCE],geolocation[GCE],getAutoplayPolicy(),"
18141                 + "getGamepads(),globalPrivacyControl[GCE],hardwareConcurrency[GCE],javaEnabled(),language[GCE],"
18142                 + "languages[GCE],locks[GCE],login[GCE],maxTouchPoints[GCE],mediaCapabilities[GCE],"
18143                 + "mediaDevices[GCE],mediaSession[GCE],mimeTypes[GCE],mozGetUserMedia(),onLine[GCE],oscpu[GCE],"
18144                 + "pdfViewerEnabled[GCE],permissions[GCE],platform[GCE],plugins[GCE],product[GCE],productSub[GCE],"
18145                 + "registerProtocolHandler(),requestMediaKeySystemAccess(),requestMIDIAccess(),sendBeacon(),"
18146                 + "serviceWorker[GCE],storage[GCE],taintEnabled(),userActivation[GCE],userAgent[GCE],vendor[GCE],"
18147                 + "vendorSub[GCE],wakeLock[GCE],"
18148                 + "webdriver[GCE]",
18149             FF_ESR = "appCodeName[GCE],appName[GCE],appVersion[GCE],buildID[GCE],clipboard[GCE],constructor(),"
18150                 + "cookieEnabled[GCE],credentials[GCE],doNotTrack[GCE],geolocation[GCE],getAutoplayPolicy(),"
18151                 + "getGamepads(),globalPrivacyControl[GCE],hardwareConcurrency[GCE],javaEnabled(),language[GCE],"
18152                 + "languages[GCE],locks[GCE],maxTouchPoints[GCE],mediaCapabilities[GCE],mediaDevices[GCE],"
18153                 + "mediaSession[GCE],mimeTypes[GCE],mozGetUserMedia(),onLine[GCE],oscpu[GCE],pdfViewerEnabled[GCE],"
18154                 + "permissions[GCE],platform[GCE],plugins[GCE],product[GCE],productSub[GCE],"
18155                 + "registerProtocolHandler(),requestMediaKeySystemAccess(),requestMIDIAccess(),sendBeacon(),"
18156                 + "serviceWorker[GCE],storage[GCE],taintEnabled(),userActivation[GCE],userAgent[GCE],vendor[GCE],"
18157                 + "vendorSub[GCE],vibrate(),wakeLock[GCE],"
18158                 + "webdriver[GCE]")
18159     @HtmlUnitNYI(CHROME = "appCodeName[GCE],appName[GCE],appVersion[GCE],connection[GCE],constructor(),"
18160                 + "cookieEnabled[GCE],doNotTrack[GCE],geolocation[GCE],javaEnabled(),language[GCE],languages[GCE],"
18161                 + "mediaDevices[GCE],mimeTypes[GCE],onLine[GCE],pdfViewerEnabled[GCE],platform[GCE],plugins[GCE],"
18162                 + "product[GCE],productSub[GCE],userAgent[GCE],vendor[GCE],vendorSub[GCE]",
18163             EDGE = "appCodeName[GCE],appName[GCE],appVersion[GCE],connection[GCE],constructor(),"
18164                 + "cookieEnabled[GCE],doNotTrack[GCE],geolocation[GCE],javaEnabled(),language[GCE],languages[GCE],"
18165                 + "mediaDevices[GCE],mimeTypes[GCE],onLine[GCE],pdfViewerEnabled[GCE],platform[GCE],plugins[GCE],"
18166                 + "product[GCE],productSub[GCE],userAgent[GCE],vendor[GCE],vendorSub[GCE]",
18167             FF = "appCodeName[GCE],appName[GCE],appVersion[GCE],buildID[GCE],constructor(),cookieEnabled[GCE],"
18168                 + "doNotTrack[GCE],geolocation[GCE],javaEnabled(),language[GCE],languages[GCE],mediaDevices[GCE],"
18169                 + "mimeTypes[GCE],onLine[GCE],oscpu[GCE],pdfViewerEnabled[GCE],platform[GCE],plugins[GCE],"
18170                 + "product[GCE],productSub[GCE],taintEnabled(),userAgent[GCE],vendor[GCE],vendorSub[GCE]",
18171             FF_ESR = "appCodeName[GCE],appName[GCE],appVersion[GCE],buildID[GCE],constructor(),cookieEnabled[GCE],"
18172                 + "doNotTrack[GCE],geolocation[GCE],javaEnabled(),language[GCE],languages[GCE],mediaDevices[GCE],"
18173                 + "mimeTypes[GCE],onLine[GCE],oscpu[GCE],pdfViewerEnabled[GCE],platform[GCE],plugins[GCE],"
18174                 + "product[GCE],productSub[GCE],taintEnabled(),userAgent[GCE],vendor[GCE],vendorSub[GCE]")
18175     public void navigator() throws Exception {
18176         testString("", "navigator");
18177     }
18178 
18179     /**
18180      * Test {@link org.htmlunit.javascript.host.dom.DOMException}.
18181      *
18182      * @throws Exception if an error occurs
18183      */
18184     @Test
18185     @Alerts(CHROME = "ABORT_ERR[E],code[GCE],constructor(),DATA_CLONE_ERR[E],DOMSTRING_SIZE_ERR[E],"
18186                 + "HIERARCHY_REQUEST_ERR[E],INDEX_SIZE_ERR[E],INUSE_ATTRIBUTE_ERR[E],INVALID_ACCESS_ERR[E],"
18187                 + "INVALID_CHARACTER_ERR[E],INVALID_MODIFICATION_ERR[E],INVALID_NODE_TYPE_ERR[E],"
18188                 + "INVALID_STATE_ERR[E],message[GCE],name[GCE],NAMESPACE_ERR[E],NETWORK_ERR[E],"
18189                 + "NO_DATA_ALLOWED_ERR[E],NO_MODIFICATION_ALLOWED_ERR[E],NOT_FOUND_ERR[E],NOT_SUPPORTED_ERR[E],"
18190                 + "QUOTA_EXCEEDED_ERR[E],SECURITY_ERR[E],SYNTAX_ERR[E],TIMEOUT_ERR[E],TYPE_MISMATCH_ERR[E],"
18191                 + "URL_MISMATCH_ERR[E],VALIDATION_ERR[E],WRONG_DOCUMENT_ERR[E]",
18192             EDGE = "ABORT_ERR[E],code[GCE],constructor(),DATA_CLONE_ERR[E],DOMSTRING_SIZE_ERR[E],"
18193                 + "HIERARCHY_REQUEST_ERR[E],INDEX_SIZE_ERR[E],INUSE_ATTRIBUTE_ERR[E],INVALID_ACCESS_ERR[E],"
18194                 + "INVALID_CHARACTER_ERR[E],INVALID_MODIFICATION_ERR[E],INVALID_NODE_TYPE_ERR[E],"
18195                 + "INVALID_STATE_ERR[E],message[GCE],name[GCE],NAMESPACE_ERR[E],NETWORK_ERR[E],"
18196                 + "NO_DATA_ALLOWED_ERR[E],NO_MODIFICATION_ALLOWED_ERR[E],NOT_FOUND_ERR[E],NOT_SUPPORTED_ERR[E],"
18197                 + "QUOTA_EXCEEDED_ERR[E],SECURITY_ERR[E],SYNTAX_ERR[E],TIMEOUT_ERR[E],TYPE_MISMATCH_ERR[E],"
18198                 + "URL_MISMATCH_ERR[E],VALIDATION_ERR[E],WRONG_DOCUMENT_ERR[E]",
18199             FF = "ABORT_ERR[E],code[GCE],columnNumber[GCE],constructor(),data[GCE],DATA_CLONE_ERR[E],"
18200                 + "DOMSTRING_SIZE_ERR[E],filename[GCE],HIERARCHY_REQUEST_ERR[E],INDEX_SIZE_ERR[E],"
18201                 + "INUSE_ATTRIBUTE_ERR[E],INVALID_ACCESS_ERR[E],INVALID_CHARACTER_ERR[E],INVALID_MODIFICATION_ERR[E],"
18202                 + "INVALID_NODE_TYPE_ERR[E],INVALID_STATE_ERR[E],lineNumber[GCE],message[GCE],name[GCE],"
18203                 + "NAMESPACE_ERR[E],NETWORK_ERR[E],NO_DATA_ALLOWED_ERR[E],NO_MODIFICATION_ALLOWED_ERR[E],"
18204                 + "NOT_FOUND_ERR[E],NOT_SUPPORTED_ERR[E],QUOTA_EXCEEDED_ERR[E],result[GCE],SECURITY_ERR[E],"
18205                 + "stack[GSCE],SYNTAX_ERR[E],TIMEOUT_ERR[E],TYPE_MISMATCH_ERR[E],URL_MISMATCH_ERR[E],"
18206                 + "VALIDATION_ERR[E],WRONG_DOCUMENT_ERR[E]",
18207             FF_ESR = "ABORT_ERR[E],code[GCE],columnNumber[GCE],constructor(),data[GCE],DATA_CLONE_ERR[E],"
18208                 + "DOMSTRING_SIZE_ERR[E],filename[GCE],HIERARCHY_REQUEST_ERR[E],INDEX_SIZE_ERR[E],"
18209                 + "INUSE_ATTRIBUTE_ERR[E],INVALID_ACCESS_ERR[E],INVALID_CHARACTER_ERR[E],INVALID_MODIFICATION_ERR[E],"
18210                 + "INVALID_NODE_TYPE_ERR[E],INVALID_STATE_ERR[E],lineNumber[GCE],message[GCE],name[GCE],"
18211                 + "NAMESPACE_ERR[E],NETWORK_ERR[E],NO_DATA_ALLOWED_ERR[E],NO_MODIFICATION_ALLOWED_ERR[E],"
18212                 + "NOT_FOUND_ERR[E],NOT_SUPPORTED_ERR[E],QUOTA_EXCEEDED_ERR[E],result[GCE],SECURITY_ERR[E],"
18213                 + "stack[GSCE],SYNTAX_ERR[E],TIMEOUT_ERR[E],TYPE_MISMATCH_ERR[E],URL_MISMATCH_ERR[E],"
18214                 + "VALIDATION_ERR[E],WRONG_DOCUMENT_ERR[E]")
18215     @HtmlUnitNYI(FF = "ABORT_ERR[E],code[GCE],constructor(),DATA_CLONE_ERR[E],DOMSTRING_SIZE_ERR[E],filename[GCE],"
18216                 + "HIERARCHY_REQUEST_ERR[E],INDEX_SIZE_ERR[E],INUSE_ATTRIBUTE_ERR[E],INVALID_ACCESS_ERR[E],"
18217                 + "INVALID_CHARACTER_ERR[E],INVALID_MODIFICATION_ERR[E],INVALID_NODE_TYPE_ERR[E],"
18218                 + "INVALID_STATE_ERR[E],lineNumber[GCE],message[GCE],name[GCE],NAMESPACE_ERR[E],NETWORK_ERR[E],"
18219                 + "NO_DATA_ALLOWED_ERR[E],NO_MODIFICATION_ALLOWED_ERR[E],NOT_FOUND_ERR[E],NOT_SUPPORTED_ERR[E],"
18220                 + "QUOTA_EXCEEDED_ERR[E],SECURITY_ERR[E],SYNTAX_ERR[E],TIMEOUT_ERR[E],TYPE_MISMATCH_ERR[E],"
18221                 + "URL_MISMATCH_ERR[E],VALIDATION_ERR[E],WRONG_DOCUMENT_ERR[E]",
18222             FF_ESR = "ABORT_ERR[E],code[GCE],constructor(),DATA_CLONE_ERR[E],DOMSTRING_SIZE_ERR[E],filename[GCE],"
18223                 + "HIERARCHY_REQUEST_ERR[E],INDEX_SIZE_ERR[E],INUSE_ATTRIBUTE_ERR[E],INVALID_ACCESS_ERR[E],"
18224                 + "INVALID_CHARACTER_ERR[E],INVALID_MODIFICATION_ERR[E],INVALID_NODE_TYPE_ERR[E],"
18225                 + "INVALID_STATE_ERR[E],lineNumber[GCE],message[GCE],name[GCE],NAMESPACE_ERR[E],NETWORK_ERR[E],"
18226                 + "NO_DATA_ALLOWED_ERR[E],NO_MODIFICATION_ALLOWED_ERR[E],NOT_FOUND_ERR[E],NOT_SUPPORTED_ERR[E],"
18227                 + "QUOTA_EXCEEDED_ERR[E],SECURITY_ERR[E],SYNTAX_ERR[E],TIMEOUT_ERR[E],TYPE_MISMATCH_ERR[E],"
18228                 + "URL_MISMATCH_ERR[E],VALIDATION_ERR[E],WRONG_DOCUMENT_ERR[E]")
18229     public void domException() throws Exception {
18230         testString("", "new DOMException('message', 'name')");
18231     }
18232 }