From: <rb...@us...> - 2016-12-03 14:32:08
|
Revision: 13124 http://sourceforge.net/p/htmlunit/code/13124 Author: rbri Date: 2016-12-03 14:32:04 +0000 (Sat, 03 Dec 2016) Log Message: ----------- smaller parts Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java Added Paths: ----------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java 2016-12-03 14:12:52 UTC (rev 13123) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java 2016-12-03 14:32:04 UTC (rev 13124) @@ -30,7 +30,7 @@ /** * Tests two Host classes, if one prototype is parent of another. * - * This class handles all host names which starts by character 'A' to 'G'. + * This class handles all host names which starts by character 'A' to 'C'. * * @author Ahmed Ashour */ @@ -49,7 +49,7 @@ @Override public boolean apply(final String input) { final char ch = Character.toUpperCase(input.charAt(0)); - return ch >= 'A' && ch <= 'G'; + return ch >= 'A' && ch <= 'C'; } }); } @@ -274,155 +274,7 @@ * @throws Exception if the test fails */ @Test - @Alerts("true") - public void _DataView_DataView() throws Exception { - test("DataView", "DataView"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _DOMException_DOMException() throws Exception { - test("DOMException", "DOMException"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _DOMImplementation_DOMImplementation() throws Exception { - test("DOMImplementation", "DOMImplementation"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _DOMParser_DOMParser() throws Exception { - test("DOMParser", "DOMParser"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - @NotYetImplemented - public void _DOMStringMap_DOMStringMap() throws Exception { - test("DOMStringMap", "DOMStringMap"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _DOMTokenList_DOMTokenList() throws Exception { - test("DOMTokenList", "DOMTokenList"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Document_Document() throws Exception { - test("Document", "Document"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _DocumentFragment_DocumentFragment() throws Exception { - test("DocumentFragment", "DocumentFragment"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _DocumentType_DocumentType() throws Exception { - test("DocumentType", "DocumentType"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_Element() throws Exception { - test("Element", "Element"); - } - - /** - * @throws Exception if the test fails - */ - @Test @Alerts(DEFAULT = "false", - IE = "true") - public void _Enumerator_Enumerator() throws Exception { - test("Enumerator", "Enumerator"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Event_Event() throws Exception { - test("Event", "Event"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _External_External() throws Exception { - test("External", "External"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Float32Array_Float32Array() throws Exception { - test("Float32Array", "Float32Array"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Float64Array_Float64Array() throws Exception { - test("Float64Array", "Float64Array"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Geolocation_Geolocation() throws Exception { - test("Geolocation", "Geolocation"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", FF38 = "true") public void _CSSRule_CSSCharsetRule() throws Exception { test("CSSRule", "CSSCharsetRule"); @@ -488,1508 +340,8 @@ * @throws Exception if the test fails */ @Test - @Alerts("true") - public void _Document_HTMLDocument() throws Exception { - test("Document", "HTMLDocument"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Document_XMLDocument() throws Exception { - test("Document", "XMLDocument"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _Document_SVGDocument() throws Exception { - test("Document", "SVGDocument"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLAnchorElement() throws Exception { - test("Element", "HTMLAnchorElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test @Alerts(DEFAULT = "true", - CHROME = "false") - public void _Element_HTMLAppletElement() throws Exception { - test("Element", "HTMLAppletElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLAreaElement() throws Exception { - test("Element", "HTMLAreaElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLAudioElement() throws Exception { - test("Element", "HTMLAudioElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLBGSoundElement() throws Exception { - test("Element", "HTMLBGSoundElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLBRElement() throws Exception { - test("Element", "HTMLBRElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLBaseElement() throws Exception { - test("Element", "HTMLBaseElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLBaseFontElement() throws Exception { - test("Element", "HTMLBaseFontElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLBlockElement() throws Exception { - test("Element", "HTMLBlockElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLQuoteElement() throws Exception { - test("Element", "HTMLQuoteElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLBodyElement() throws Exception { - test("Element", "HTMLBodyElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLButtonElement() throws Exception { - test("Element", "HTMLButtonElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLCanvasElement() throws Exception { - test("Element", "HTMLCanvasElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLDataListElement() throws Exception { - test("Element", "HTMLDataListElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLDDElement() throws Exception { - test("Element", "HTMLDDElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _Element_HTMLDetailsElement() throws Exception { - test("Element", "HTMLDetailsElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _Element_HTMLDialogElement() throws Exception { - test("Element", "HTMLDialogElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLDTElement() throws Exception { - test("Element", "HTMLDTElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLDListElement() throws Exception { - test("Element", "HTMLDListElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLDirectoryElement() throws Exception { - test("Element", "HTMLDirectoryElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLDivElement() throws Exception { - test("Element", "HTMLDivElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLElement() throws Exception { - test("Element", "HTMLElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLEmbedElement() throws Exception { - test("Element", "HTMLEmbedElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLFieldSetElement() throws Exception { - test("Element", "HTMLFieldSetElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLFontElement() throws Exception { - test("Element", "HTMLFontElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLFormElement() throws Exception { - test("Element", "HTMLFormElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLFrameElement() throws Exception { - test("Element", "HTMLFrameElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLFrameSetElement() throws Exception { - test("Element", "HTMLFrameSetElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLHRElement() throws Exception { - test("Element", "HTMLHRElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLHeadElement() throws Exception { - test("Element", "HTMLHeadElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLHeadingElement() throws Exception { - test("Element", "HTMLHeadingElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLHtmlElement() throws Exception { - test("Element", "HTMLHtmlElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLIFrameElement() throws Exception { - test("Element", "HTMLIFrameElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLImageElement() throws Exception { - test("Element", "HTMLImageElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLInputElement() throws Exception { - test("Element", "HTMLInputElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLIsIndexElement() throws Exception { - test("Element", "HTMLIsIndexElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _Element_HTMLKeygenElement() throws Exception { - test("Element", "HTMLKeygenElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLLIElement() throws Exception { - test("Element", "HTMLLIElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLLabelElement() throws Exception { - test("Element", "HTMLLabelElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLLegendElement() throws Exception { - test("Element", "HTMLLegendElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLLinkElement() throws Exception { - test("Element", "HTMLLinkElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLMapElement() throws Exception { - test("Element", "HTMLMapElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - FF = "false") - public void _Element_HTMLMarqueeElement() throws Exception { - test("Element", "HTMLMarqueeElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLMediaElement() throws Exception { - test("Element", "HTMLMediaElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLMenuElement() throws Exception { - test("Element", "HTMLMenuElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _EventTarget_HTMLMenuItemElement() throws Exception { - test("EventTarget", "HTMLMenuItemElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _Element_HTMLMenuItemElement() throws Exception { - test("Element", "HTMLMenuItemElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLMetaElement() throws Exception { - test("Element", "HTMLMetaElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", IE = "false") - public void _Element_HTMLMeterElement() throws Exception { - test("Element", "HTMLMeterElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLModElement() throws Exception { - test("Element", "HTMLModElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLNextIdElement() throws Exception { - test("Element", "HTMLNextIdElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLOListElement() throws Exception { - test("Element", "HTMLOListElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLObjectElement() throws Exception { - test("Element", "HTMLObjectElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLOptGroupElement() throws Exception { - test("Element", "HTMLOptGroupElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLOptionElement() throws Exception { - test("Element", "HTMLOptionElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Element_HTMLOutputElement() throws Exception { - test("Element", "HTMLOutputElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLParagraphElement() throws Exception { - test("Element", "HTMLParagraphElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLParamElement() throws Exception { - test("Element", "HTMLParamElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLPhraseElement() throws Exception { - test("Element", "HTMLPhraseElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLPreElement() throws Exception { - test("Element", "HTMLPreElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLProgressElement() throws Exception { - test("Element", "HTMLProgressElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLScriptElement() throws Exception { - test("Element", "HTMLScriptElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLSelectElement() throws Exception { - test("Element", "HTMLSelectElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLSourceElement() throws Exception { - test("Element", "HTMLSourceElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLSpanElement() throws Exception { - test("Element", "HTMLSpanElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLStyleElement() throws Exception { - test("Element", "HTMLStyleElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLTableCaptionElement() throws Exception { - test("Element", "HTMLTableCaptionElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLTableCellElement() throws Exception { - test("Element", "HTMLTableCellElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLTableColElement() throws Exception { - test("Element", "HTMLTableColElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLTableDataCellElement() throws Exception { - test("Element", "HTMLTableDataCellElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLTableElement() throws Exception { - test("Element", "HTMLTableElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Element_HTMLTableHeaderCellElement() throws Exception { - test("Element", "HTMLTableHeaderCellElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLTableRowElement() throws Exception { - test("Element", "HTMLTableRowElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLTableSectionElement() throws Exception { - test("Element", "HTMLTableSectionElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLTextAreaElement() throws Exception { - test("Element", "HTMLTextAreaElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _EventTarget_HTMLTimeElement() throws Exception { - test("EventTarget", "HTMLTimeElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _Element_HTMLTimeElement() throws Exception { - test("Element", "HTMLTimeElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLTitleElement() throws Exception { - test("Element", "HTMLTitleElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLTrackElement() throws Exception { - test("Element", "HTMLTrackElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLUListElement() throws Exception { - test("Element", "HTMLUListElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLUnknownElement() throws Exception { - test("Element", "HTMLUnknownElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_HTMLVideoElement() throws Exception { - test("Element", "HTMLVideoElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_Image() throws Exception { - test("Element", "Image"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_Option() throws Exception { - test("Element", "Option"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGAElement() throws Exception { - test("Element", "SVGAElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _EventTarget_SVGAltGlyphElement() throws Exception { - test("EventTarget", "SVGAltGlyphElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _Element_SVGAltGlyphElement() throws Exception { - test("Element", "SVGAltGlyphElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Element_SVGAnimateElement() throws Exception { - test("Element", "SVGAnimateElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Element_SVGAnimateMotionElement() throws Exception { - test("Element", "SVGAnimateMotionElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Element_SVGAnimateTransformElement() throws Exception { - test("Element", "SVGAnimateTransformElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGCircleElement() throws Exception { - test("Element", "SVGCircleElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGClipPathElement() throws Exception { - test("Element", "SVGClipPathElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _Element_SVGCursorElement() throws Exception { - test("Element", "SVGCursorElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGDefsElement() throws Exception { - test("Element", "SVGDefsElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGDescElement() throws Exception { - test("Element", "SVGDescElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGElement() throws Exception { - test("Element", "SVGElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGEllipseElement() throws Exception { - test("Element", "SVGEllipseElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEBlendElement() throws Exception { - test("Element", "SVGFEBlendElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEColorMatrixElement() throws Exception { - test("Element", "SVGFEColorMatrixElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEComponentTransferElement() throws Exception { - test("Element", "SVGFEComponentTransferElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFECompositeElement() throws Exception { - test("Element", "SVGFECompositeElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEConvolveMatrixElement() throws Exception { - test("Element", "SVGFEConvolveMatrixElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEDiffuseLightingElement() throws Exception { - test("Element", "SVGFEDiffuseLightingElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEDisplacementMapElement() throws Exception { - test("Element", "SVGFEDisplacementMapElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEDistantLightElement() throws Exception { - test("Element", "SVGFEDistantLightElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEFloodElement() throws Exception { - test("Element", "SVGFEFloodElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEFuncAElement() throws Exception { - test("Element", "SVGFEFuncAElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEFuncBElement() throws Exception { - test("Element", "SVGFEFuncBElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEFuncGElement() throws Exception { - test("Element", "SVGFEFuncGElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEFuncRElement() throws Exception { - test("Element", "SVGFEFuncRElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEGaussianBlurElement() throws Exception { - test("Element", "SVGFEGaussianBlurElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEImageElement() throws Exception { - test("Element", "SVGFEImageElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEMergeElement() throws Exception { - test("Element", "SVGFEMergeElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEMergeNodeElement() throws Exception { - test("Element", "SVGFEMergeNodeElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEMorphologyElement() throws Exception { - test("Element", "SVGFEMorphologyElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEOffsetElement() throws Exception { - test("Element", "SVGFEOffsetElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFEPointLightElement() throws Exception { - test("Element", "SVGFEPointLightElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFESpecularLightingElement() throws Exception { - test("Element", "SVGFESpecularLightingElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFESpotLightElement() throws Exception { - test("Element", "SVGFESpotLightElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFETileElement() throws Exception { - test("Element", "SVGFETileElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFETurbulenceElement() throws Exception { - test("Element", "SVGFETurbulenceElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGFilterElement() throws Exception { - test("Element", "SVGFilterElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Element_SVGForeignObjectElement() throws Exception { - test("Element", "SVGForeignObjectElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGGElement() throws Exception { - test("Element", "SVGGElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGImageElement() throws Exception { - test("Element", "SVGImageElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGLineElement() throws Exception { - test("Element", "SVGLineElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGLinearGradientElement() throws Exception { - test("Element", "SVGLinearGradientElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGMarkerElement() throws Exception { - test("Element", "SVGMarkerElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGMaskElement() throws Exception { - test("Element", "SVGMaskElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGMetadataElement() throws Exception { - test("Element", "SVGMetadataElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Element_SVGMPathElement() throws Exception { - test("Element", "SVGMPathElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGPathElement() throws Exception { - test("Element", "SVGPathElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGPatternElement() throws Exception { - test("Element", "SVGPatternElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGPolygonElement() throws Exception { - test("Element", "SVGPolygonElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGPolylineElement() throws Exception { - test("Element", "SVGPolylineElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGRadialGradientElement() throws Exception { - test("Element", "SVGRadialGradientElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGRectElement() throws Exception { - test("Element", "SVGRectElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGSVGElement() throws Exception { - test("Element", "SVGSVGElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGScriptElement() throws Exception { - test("Element", "SVGScriptElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Element_SVGSetElement() throws Exception { - test("Element", "SVGSetElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGStopElement() throws Exception { - test("Element", "SVGStopElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGStyleElement() throws Exception { - test("Element", "SVGStyleElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGSwitchElement() throws Exception { - test("Element", "SVGSwitchElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGSymbolElement() throws Exception { - test("Element", "SVGSymbolElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGTSpanElement() throws Exception { - test("Element", "SVGTSpanElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGTextElement() throws Exception { - test("Element", "SVGTextElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGTextPathElement() throws Exception { - test("Element", "SVGTextPathElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGTitleElement() throws Exception { - test("Element", "SVGTitleElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGUseElement() throws Exception { - test("Element", "SVGUseElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGViewElement() throws Exception { - test("Element", "SVGViewElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Event_BeforeUnloadEvent() throws Exception { - test("Event", "BeforeUnloadEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Event_HashChangeEvent() throws Exception { - test("Event", "HashChangeEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Event_KeyboardEvent() throws Exception { - test("Event", "KeyboardEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Event_MessageEvent() throws Exception { - test("Event", "MessageEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Event_MouseEvent() throws Exception { - test("Event", "MouseEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Event_MutationEvent() throws Exception { - test("Event", "MutationEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Event_PointerEvent() throws Exception { - test("Event", "PointerEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Event_UIEvent() throws Exception { - test("Event", "UIEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _FormData_FormData() throws Exception { - test("FormData", "FormData"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Element_SVGGradientElement() throws Exception { - test("Element", "SVGGradientElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") public void _AnalyserNode_AnalyserNode() throws Exception { test("AnalyserNode", "AnalyserNode"); } @@ -2018,37 +370,7 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _DocumentFragment_ShadowRoot() throws Exception { - test("DocumentFragment", "ShadowRoot"); - } - - /** - * @throws Exception if the test fails - */ - @Test @Alerts(DEFAULT = "true", - IE = "false") - public void _Element_HTMLShadowElement() throws Exception { - test("Element", "HTMLShadowElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _DOMCursor_DOMCursor() throws Exception { - test("DOMCursor", "DOMCursor"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", IE = "false") public void _AudioBuffer_AudioBuffer() throws Exception { test("AudioBuffer", "AudioBuffer"); @@ -2228,26 +550,6 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _DelayNode_DelayNode() throws Exception { - test("DelayNode", "DelayNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Event_AudioProcessingEvent() throws Exception { - test("Event", "AudioProcessingEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test @Alerts("true") public void _CSSPageRule_CSSPageRule() throws Exception { test("CSSPageRule", "CSSPageRule"); @@ -2367,76 +669,6 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _DynamicsCompressorNode_DynamicsCompressorNode() throws Exception { - test("DynamicsCompressorNode", "DynamicsCompressorNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Event_MediaStreamEvent() throws Exception { - test("Event", "MediaStreamEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Event_OfflineAudioCompletionEvent() throws Exception { - test("Event", "OfflineAudioCompletionEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _GainNode_GainNode() throws Exception { - test("GainNode", "GainNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Element_HTMLContentElement() throws Exception { - test("Element", "HTMLContentElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _EventTarget_HTMLDataElement() throws Exception { - test("EventTarget", "HTMLDataElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _Element_HTMLDataElement() throws Exception { - test("Element", "HTMLDataElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test @Alerts("true") public void _CharacterData_CDATASection() throws Exception { test("CharacterData", "CDATASection"); @@ -2611,2064 +843,7 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _DeviceMotionEvent_DeviceMotionEvent() throws Exception { - test("DeviceMotionEvent", "DeviceMotionEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _DeviceOrientationEvent_DeviceOrientationEvent() throws Exception { - test("DeviceOrientationEvent", "DeviceOrientationEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test @Alerts("true") - public void _ErrorEvent_ErrorEvent() throws Exception { - test("ErrorEvent", "ErrorEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventSource_EventSource() throws Exception { - test("EventSource", "EventSource"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_AnalyserNode() throws Exception { - test("EventTarget", "AnalyserNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _EventTarget_ApplicationCache() throws Exception { - test("EventTarget", "ApplicationCache"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_Attr() throws Exception { - test("EventTarget", "Attr"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_AudioBufferSourceNode() throws Exception { - test("EventTarget", "AudioBufferSourceNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_AudioContext() throws Exception { - test("EventTarget", "AudioContext"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_AudioDestinationNode() throws Exception { - test("EventTarget", "AudioDestinationNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_AudioNode() throws Exception { - test("EventTarget", "AudioNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_BiquadFilterNode() throws Exception { - test("EventTarget", "BiquadFilterNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_CDATASection() throws Exception { - test("EventTarget", "CDATASection"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_ChannelMergerNode() throws Exception { - test("EventTarget", "ChannelMergerNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_ChannelSplitterNode() throws Exception { - test("EventTarget", "ChannelSplitterNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_CharacterData() throws Exception { - test("EventTarget", "CharacterData"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_Comment() throws Exception { - test("EventTarget", "Comment"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_ConvolverNode() throws Exception { - test("EventTarget", "ConvolverNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_DelayNode() throws Exception { - test("EventTarget", "DelayNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_Document() throws Exception { - test("EventTarget", "Document"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_DocumentFragment() throws Exception { - test("EventTarget", "DocumentFragment"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_DocumentType() throws Exception { - test("EventTarget", "DocumentType"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_DynamicsCompressorNode() throws Exception { - test("EventTarget", "DynamicsCompressorNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_Element() throws Exception { - test("EventTarget", "Element"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_EventSource() throws Exception { - test("EventTarget", "EventSource"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_EventTarget() throws Exception { - test("EventTarget", "EventTarget"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_GainNode() throws Exception { - test("EventTarget", "GainNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLAnchorElement() throws Exception { - test("EventTarget", "HTMLAnchorElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _EventTarget_HTMLAppletElement() throws Exception { - test("EventTarget", "HTMLAppletElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLAreaElement() throws Exception { - test("EventTarget", "HTMLAreaElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLAudioElement() throws Exception { - test("EventTarget", "HTMLAudioElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLBRElement() throws Exception { - test("EventTarget", "HTMLBRElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLBaseElement() throws Exception { - test("EventTarget", "HTMLBaseElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLBodyElement() throws Exception { - test("EventTarget", "HTMLBodyElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLButtonElement() throws Exception { - test("EventTarget", "HTMLButtonElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLCanvasElement() throws Exception { - test("EventTarget", "HTMLCanvasElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLContentElement() throws Exception { - test("EventTarget", "HTMLContentElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLDListElement() throws Exception { - test("EventTarget", "HTMLDListElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLDataListElement() throws Exception { - test("EventTarget", "HTMLDataListElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _EventTarget_HTMLDetailsElement() throws Exception { - test("EventTarget", "HTMLDetailsElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _EventTarget_HTMLDialogElement() throws Exception { - test("EventTarget", "HTMLDialogElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLDirectoryElement() throws Exception { - test("EventTarget", "HTMLDirectoryElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLDivElement() throws Exception { - test("EventTarget", "HTMLDivElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLDocument() throws Exception { - test("EventTarget", "HTMLDocument"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLElement() throws Exception { - test("EventTarget", "HTMLElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLEmbedElement() throws Exception { - test("EventTarget", "HTMLEmbedElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLFieldSetElement() throws Exception { - test("EventTarget", "HTMLFieldSetElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLFontElement() throws Exception { - test("EventTarget", "HTMLFontElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLFormElement() throws Exception { - test("EventTarget", "HTMLFormElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLFrameElement() throws Exception { - test("EventTarget", "HTMLFrameElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLFrameSetElement() throws Exception { - test("EventTarget", "HTMLFrameSetElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLHRElement() throws Exception { - test("EventTarget", "HTMLHRElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLHeadElement() throws Exception { - test("EventTarget", "HTMLHeadElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLHeadingElement() throws Exception { - test("EventTarget", "HTMLHeadingElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLHtmlElement() throws Exception { - test("EventTarget", "HTMLHtmlElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLIFrameElement() throws Exception { - test("EventTarget", "HTMLIFrameElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLImageElement() throws Exception { - test("EventTarget", "HTMLImageElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLInputElement() throws Exception { - test("EventTarget", "HTMLInputElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _EventTarget_HTMLKeygenElement() throws Exception { - test("EventTarget", "HTMLKeygenElement"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _EventTarget_HTMLLIElement() throws Exception { - test("Eve... [truncated message content] |