From: <rb...@us...> - 2017-08-04 08:42:11
|
Revision: 14764 http://sourceforge.net/p/htmlunit/code/14764 Author: rbri Date: 2017-08-04 08:42:09 +0000 (Fri, 04 Aug 2017) Log Message: ----------- one more split and re tested with real chrome Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfBTest.java Added Paths: ----------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.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 2017-08-04 06:32:35 UTC (rev 14763) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java 2017-08-04 08:42:09 UTC (rev 14764) @@ -152,6 +152,16 @@ * @throws Exception if the test fails */ @Test + @Alerts("false") + @NotYetImplemented(CHROME) + public void _Atomics_Atomics() throws Exception { + test("Atomics", "Atomics"); + } + + /** + * @throws Exception if the test fails + */ + @Test @Alerts("true") public void _Attr_Attr() throws Exception { test("Attr", "Attr"); Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfBTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfBTest.java 2017-08-04 06:32:35 UTC (rev 14763) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfBTest.java 2017-08-04 08:42:09 UTC (rev 14764) @@ -14,8 +14,6 @@ */ package com.gargoylesoftware.htmlunit.general.huge; -import static com.gargoylesoftware.htmlunit.BrowserRunner.TestedBrowser.CHROME; - import java.util.Collection; import org.junit.Test; @@ -24,12 +22,11 @@ import com.gargoylesoftware.htmlunit.BrowserParameterizedRunner; import com.gargoylesoftware.htmlunit.BrowserRunner.Alerts; -import com.gargoylesoftware.htmlunit.BrowserRunner.NotYetImplemented; /** * Tests two Host classes, if one prototype is parent of another. * - * This class handles all host names which starts by character 'B' to 'C'. + * This class handles all host names which starts by character 'B'. * * @author Ahmed Ashour */ @@ -45,7 +42,7 @@ public static Collection<Object[]> data() throws Exception { return HostParentOf.data(input -> { final char ch = Character.toUpperCase(input.charAt(0)); - return ch >= 'B' && ch <= 'C'; + return ch == 'B'; }); } @@ -170,753 +167,9 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _Cache_Cache() throws Exception { - test("Cache", "Cache"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CacheStorage_CacheStorage() throws Exception { - test("CacheStorage", "CacheStorage"); - } - - /** - * @throws Exception if the test fails - */ - @Test @Alerts(DEFAULT = "false", - FF = "true") - public void _CanvasCaptureMediaStream_CanvasCaptureMediaStream() throws Exception { - test("CanvasCaptureMediaStream", "CanvasCaptureMediaStream"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", CHROME = "true") - public void _CanvasCaptureMediaStreamTrack_CanvasCaptureMediaStreamTrack() throws Exception { - test("CanvasCaptureMediaStreamTrack", "CanvasCaptureMediaStreamTrack"); + public void _BudgetService_BudgetService() throws Exception { + test("BudgetService", "BudgetService"); } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CanvasGradient_CanvasGradient() throws Exception { - test("CanvasGradient", "CanvasGradient"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CanvasPattern_CanvasPattern() throws Exception { - test("CanvasPattern", "CanvasPattern"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CanvasRenderingContext2D_CanvasRenderingContext2D() throws Exception { - test("CanvasRenderingContext2D", "CanvasRenderingContext2D"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CaretPosition_CaretPosition() throws Exception { - test("CaretPosition", "CaretPosition"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CDATASection_CDATASection() throws Exception { - test("CDATASection", "CDATASection"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _ChannelMergerNode_ChannelMergerNode() throws Exception { - test("ChannelMergerNode", "ChannelMergerNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _ChannelSplitterNode_ChannelSplitterNode() throws Exception { - test("ChannelSplitterNode", "ChannelSplitterNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CharacterData_CDATASection() throws Exception { - test("CharacterData", "CDATASection"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CharacterData_CharacterData() throws Exception { - test("CharacterData", "CharacterData"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CharacterData_Comment() throws Exception { - test("CharacterData", "Comment"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CharacterData_ProcessingInstruction() throws Exception { - test("CharacterData", "ProcessingInstruction"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CharacterData_Text() throws Exception { - test("CharacterData", "Text"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - FF = "false") - public void _ClientRect_ClientRect() throws Exception { - test("ClientRect", "ClientRect"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - FF = "false") - public void _ClientRectList_ClientRectList() throws Exception { - test("ClientRectList", "ClientRectList"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _ClipboardEvent_ClipboardEvent() throws Exception { - test("ClipboardEvent", "ClipboardEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CloseEvent_CloseEvent() throws Exception { - test("CloseEvent", "CloseEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Comment_Comment() throws Exception { - test("Comment", "Comment"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CompositionEvent_CompositionEvent() throws Exception { - test("CompositionEvent", "CompositionEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Console_Console() throws Exception { - test("Console", "Console"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF52 = "true", - CHROME = "true") - public void _ConstantSourceNode_ConstantSourceNode() throws Exception { - test("ConstantSourceNode", "ConstantSourceNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _ConvolverNode_ConvolverNode() throws Exception { - test("ConvolverNode", "ConvolverNode"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - IE = "true") - public void _Coordinates_Coordinates() throws Exception { - test("Coordinates", "Coordinates"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _Credential_Credential() throws Exception { - test("Credential", "Credential"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _Credential_FederatedCredential() throws Exception { - test("Credential", "FederatedCredential"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _Credential_PasswordCredential() throws Exception { - test("Credential", "PasswordCredential"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _CredentialsContainer_CredentialsContainer() throws Exception { - test("CredentialsContainer", "CredentialsContainer"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _Crypto_Crypto() throws Exception { - test("Crypto", "Crypto"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CryptoKey_CryptoKey() throws Exception { - test("CryptoKey", "CryptoKey"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - @NotYetImplemented(CHROME) - public void _CSS_CSS() throws Exception { - test("CSS", "CSS"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CSS2Properties_CSS2Properties() throws Exception { - test("CSS2Properties", "CSS2Properties"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSConditionRule_CSSConditionRule() throws Exception { - test("CSSConditionRule", "CSSConditionRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSConditionRule_CSSMediaRule() throws Exception { - test("CSSConditionRule", "CSSMediaRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSConditionRule_CSSSupportsRule() throws Exception { - test("CSSConditionRule", "CSSSupportsRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CSSCounterStyleRule_CSSCounterStyleRule() throws Exception { - test("CSSCounterStyleRule", "CSSCounterStyleRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSFontFaceRule_CSSFontFaceRule() throws Exception { - test("CSSFontFaceRule", "CSSFontFaceRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSGroupingRule_CSSConditionRule() throws Exception { - test("CSSGroupingRule", "CSSConditionRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSGroupingRule_CSSGroupingRule() throws Exception { - test("CSSGroupingRule", "CSSGroupingRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSGroupingRule_CSSMediaRule() throws Exception { - test("CSSGroupingRule", "CSSMediaRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSGroupingRule_CSSSupportsRule() throws Exception { - test("CSSGroupingRule", "CSSSupportsRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSImportRule_CSSImportRule() throws Exception { - test("CSSImportRule", "CSSImportRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - FF45 = "false") - public void _CSSKeyframeRule_CSSKeyframeRule() throws Exception { - test("CSSKeyframeRule", "CSSKeyframeRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - FF45 = "false") - public void _CSSKeyframesRule_CSSKeyframesRule() throws Exception { - test("CSSKeyframesRule", "CSSKeyframesRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSMediaRule_CSSMediaRule() throws Exception { - test("CSSMediaRule", "CSSMediaRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - FF = "false") - public void _CSSNamespaceRule_CSSNamespaceRule() throws Exception { - test("CSSNamespaceRule", "CSSNamespaceRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSPageRule_CSSPageRule() throws Exception { - test("CSSPageRule", "CSSPageRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CSSPrimitiveValue_CSSPrimitiveValue() throws Exception { - test("CSSPrimitiveValue", "CSSPrimitiveValue"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSRule_CSSConditionRule() throws Exception { - test("CSSRule", "CSSConditionRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CSSRule_CSSCounterStyleRule() throws Exception { - test("CSSRule", "CSSCounterStyleRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSRule_CSSFontFaceRule() throws Exception { - test("CSSRule", "CSSFontFaceRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSRule_CSSGroupingRule() throws Exception { - test("CSSRule", "CSSGroupingRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSRule_CSSImportRule() throws Exception { - test("CSSRule", "CSSImportRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - FF45 = "false") - public void _CSSRule_CSSKeyframeRule() throws Exception { - test("CSSRule", "CSSKeyframeRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - FF45 = "false") - public void _CSSRule_CSSKeyframesRule() throws Exception { - test("CSSRule", "CSSKeyframesRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSRule_CSSMediaRule() throws Exception { - test("CSSRule", "CSSMediaRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - FF = "false") - public void _CSSRule_CSSNamespaceRule() throws Exception { - test("CSSRule", "CSSNamespaceRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSRule_CSSPageRule() throws Exception { - test("CSSRule", "CSSPageRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSRule_CSSRule() throws Exception { - test("CSSRule", "CSSRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSRule_CSSStyleRule() throws Exception { - test("CSSRule", "CSSStyleRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSRule_CSSSupportsRule() throws Exception { - test("CSSRule", "CSSSupportsRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _CSSRule_CSSViewportRule() throws Exception { - test("CSSRule", "CSSViewportRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF45 = "true") - public void _CSSRule_MozCSSKeyframesRule() throws Exception { - test("CSSRule", "MozCSSKeyframesRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSRuleList_CSSRuleList() throws Exception { - test("CSSRuleList", "CSSRuleList"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CSSStyleDeclaration_CSS2Properties() throws Exception { - test("CSSStyleDeclaration", "CSS2Properties"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSStyleDeclaration_CSSStyleDeclaration() throws Exception { - test("CSSStyleDeclaration", "CSSStyleDeclaration"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSStyleRule_CSSStyleRule() throws Exception { - test("CSSStyleRule", "CSSStyleRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CSSStyleSheet_CSSStyleSheet() throws Exception { - test("CSSStyleSheet", "CSSStyleSheet"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "true", - IE = "false") - public void _CSSSupportsRule_CSSSupportsRule() throws Exception { - test("CSSSupportsRule", "CSSSupportsRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CSSValue_CSSPrimitiveValue() throws Exception { - test("CSSValue", "CSSPrimitiveValue"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CSSValue_CSSValue() throws Exception { - test("CSSValue", "CSSValue"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CSSValue_CSSValueList() throws Exception { - test("CSSValue", "CSSValueList"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF = "true") - public void _CSSValueList_CSSValueList() throws Exception { - test("CSSValueList", "CSSValueList"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _CSSViewportRule_CSSViewportRule() throws Exception { - test("CSSViewportRule", "CSSViewportRule"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _CustomElementRegistry_CustomElementRegistry() throws Exception { - test("CustomElementRegistry", "CustomElementRegistry"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts("true") - public void _CustomEvent_CustomEvent() throws Exception { - test("CustomEvent", "CustomEvent"); - } } Added: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java (rev 0) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java 2017-08-04 08:42:09 UTC (rev 14764) @@ -0,0 +1,805 @@ +/* + * Copyright (c) 2002-2017 Gargoyle Software Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.gargoylesoftware.htmlunit.general.huge; + +import static com.gargoylesoftware.htmlunit.BrowserRunner.TestedBrowser.CHROME; + +import java.util.Collection; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized.Parameters; + +import com.gargoylesoftware.htmlunit.BrowserParameterizedRunner; +import com.gargoylesoftware.htmlunit.BrowserRunner.Alerts; +import com.gargoylesoftware.htmlunit.BrowserRunner.NotYetImplemented; + +/** + * Tests two Host classes, if one prototype is parent of another. + * + * This class handles all host names which starts by character 'C'. + * + * @author Ahmed Ashour + */ +@RunWith(BrowserParameterizedRunner.class) +public class HostParentOfCTest extends HostParentOf { + + /** + * Returns the parameterized data. + * @return the parameterized data + * @throws Exception if an error occurs + */ + @Parameters + public static Collection<Object[]> data() throws Exception { + return HostParentOf.data(input -> { + final char ch = Character.toUpperCase(input.charAt(0)); + return ch == 'C'; + }); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _Cache_Cache() throws Exception { + test("Cache", "Cache"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CacheStorage_CacheStorage() throws Exception { + test("CacheStorage", "CacheStorage"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CanvasCaptureMediaStream_CanvasCaptureMediaStream() throws Exception { + test("CanvasCaptureMediaStream", "CanvasCaptureMediaStream"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _CanvasCaptureMediaStreamTrack_CanvasCaptureMediaStreamTrack() throws Exception { + test("CanvasCaptureMediaStreamTrack", "CanvasCaptureMediaStreamTrack"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CanvasGradient_CanvasGradient() throws Exception { + test("CanvasGradient", "CanvasGradient"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CanvasPattern_CanvasPattern() throws Exception { + test("CanvasPattern", "CanvasPattern"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CanvasRenderingContext2D_CanvasRenderingContext2D() throws Exception { + test("CanvasRenderingContext2D", "CanvasRenderingContext2D"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CaretPosition_CaretPosition() throws Exception { + test("CaretPosition", "CaretPosition"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CDATASection_CDATASection() throws Exception { + test("CDATASection", "CDATASection"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _ChannelMergerNode_ChannelMergerNode() throws Exception { + test("ChannelMergerNode", "ChannelMergerNode"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _ChannelSplitterNode_ChannelSplitterNode() throws Exception { + test("ChannelSplitterNode", "ChannelSplitterNode"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CharacterData_CDATASection() throws Exception { + test("CharacterData", "CDATASection"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CharacterData_CharacterData() throws Exception { + test("CharacterData", "CharacterData"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CharacterData_Comment() throws Exception { + test("CharacterData", "Comment"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CharacterData_ProcessingInstruction() throws Exception { + test("CharacterData", "ProcessingInstruction"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CharacterData_Text() throws Exception { + test("CharacterData", "Text"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + FF = "false") + public void _ClientRect_ClientRect() throws Exception { + test("ClientRect", "ClientRect"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + FF = "false") + public void _ClientRectList_ClientRectList() throws Exception { + test("ClientRectList", "ClientRectList"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _ClipboardEvent_ClipboardEvent() throws Exception { + test("ClipboardEvent", "ClipboardEvent"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CloseEvent_CloseEvent() throws Exception { + test("CloseEvent", "CloseEvent"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _Comment_Comment() throws Exception { + test("Comment", "Comment"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CompositionEvent_CompositionEvent() throws Exception { + test("CompositionEvent", "CompositionEvent"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + IE = "true") + public void _Console_Console() throws Exception { + test("Console", "Console"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF52 = "true", + CHROME = "true") + public void _ConstantSourceNode_ConstantSourceNode() throws Exception { + test("ConstantSourceNode", "ConstantSourceNode"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _ConvolverNode_ConvolverNode() throws Exception { + test("ConvolverNode", "ConvolverNode"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + IE = "true") + public void _Coordinates_Coordinates() throws Exception { + test("Coordinates", "Coordinates"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _Credential_Credential() throws Exception { + test("Credential", "Credential"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _Credential_FederatedCredential() throws Exception { + test("Credential", "FederatedCredential"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _Credential_PasswordCredential() throws Exception { + test("Credential", "PasswordCredential"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _CredentialsContainer_CredentialsContainer() throws Exception { + test("CredentialsContainer", "CredentialsContainer"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _Crypto_Crypto() throws Exception { + test("Crypto", "Crypto"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CryptoKey_CryptoKey() throws Exception { + test("CryptoKey", "CryptoKey"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + @NotYetImplemented(CHROME) + public void _CSS_CSS() throws Exception { + test("CSS", "CSS"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CSS2Properties_CSS2Properties() throws Exception { + test("CSS2Properties", "CSS2Properties"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSConditionRule_CSSConditionRule() throws Exception { + test("CSSConditionRule", "CSSConditionRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSConditionRule_CSSMediaRule() throws Exception { + test("CSSConditionRule", "CSSMediaRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSConditionRule_CSSSupportsRule() throws Exception { + test("CSSConditionRule", "CSSSupportsRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CSSCounterStyleRule_CSSCounterStyleRule() throws Exception { + test("CSSCounterStyleRule", "CSSCounterStyleRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSFontFaceRule_CSSFontFaceRule() throws Exception { + test("CSSFontFaceRule", "CSSFontFaceRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSGroupingRule_CSSConditionRule() throws Exception { + test("CSSGroupingRule", "CSSConditionRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSGroupingRule_CSSGroupingRule() throws Exception { + test("CSSGroupingRule", "CSSGroupingRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSGroupingRule_CSSMediaRule() throws Exception { + test("CSSGroupingRule", "CSSMediaRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSGroupingRule_CSSSupportsRule() throws Exception { + test("CSSGroupingRule", "CSSSupportsRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSImportRule_CSSImportRule() throws Exception { + test("CSSImportRule", "CSSImportRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + FF45 = "false") + public void _CSSKeyframeRule_CSSKeyframeRule() throws Exception { + test("CSSKeyframeRule", "CSSKeyframeRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + FF45 = "false") + public void _CSSKeyframesRule_CSSKeyframesRule() throws Exception { + test("CSSKeyframesRule", "CSSKeyframesRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSMediaRule_CSSMediaRule() throws Exception { + test("CSSMediaRule", "CSSMediaRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + FF = "false") + public void _CSSNamespaceRule_CSSNamespaceRule() throws Exception { + test("CSSNamespaceRule", "CSSNamespaceRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSPageRule_CSSPageRule() throws Exception { + test("CSSPageRule", "CSSPageRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CSSPrimitiveValue_CSSPrimitiveValue() throws Exception { + test("CSSPrimitiveValue", "CSSPrimitiveValue"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSRule_CSSConditionRule() throws Exception { + test("CSSRule", "CSSConditionRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CSSRule_CSSCounterStyleRule() throws Exception { + test("CSSRule", "CSSCounterStyleRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSRule_CSSFontFaceRule() throws Exception { + test("CSSRule", "CSSFontFaceRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSRule_CSSGroupingRule() throws Exception { + test("CSSRule", "CSSGroupingRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSRule_CSSImportRule() throws Exception { + test("CSSRule", "CSSImportRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + FF45 = "false") + public void _CSSRule_CSSKeyframeRule() throws Exception { + test("CSSRule", "CSSKeyframeRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + FF45 = "false") + public void _CSSRule_CSSKeyframesRule() throws Exception { + test("CSSRule", "CSSKeyframesRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSRule_CSSMediaRule() throws Exception { + test("CSSRule", "CSSMediaRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + FF = "false") + public void _CSSRule_CSSNamespaceRule() throws Exception { + test("CSSRule", "CSSNamespaceRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSRule_CSSPageRule() throws Exception { + test("CSSRule", "CSSPageRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSRule_CSSRule() throws Exception { + test("CSSRule", "CSSRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSRule_CSSStyleRule() throws Exception { + test("CSSRule", "CSSStyleRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSRule_CSSSupportsRule() throws Exception { + test("CSSRule", "CSSSupportsRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _CSSRule_CSSViewportRule() throws Exception { + test("CSSRule", "CSSViewportRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF45 = "true") + public void _CSSRule_MozCSSKeyframesRule() throws Exception { + test("CSSRule", "MozCSSKeyframesRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSRuleList_CSSRuleList() throws Exception { + test("CSSRuleList", "CSSRuleList"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CSSStyleDeclaration_CSS2Properties() throws Exception { + test("CSSStyleDeclaration", "CSS2Properties"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSStyleDeclaration_CSSStyleDeclaration() throws Exception { + test("CSSStyleDeclaration", "CSSStyleDeclaration"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSStyleRule_CSSStyleRule() throws Exception { + test("CSSStyleRule", "CSSStyleRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CSSStyleSheet_CSSStyleSheet() throws Exception { + test("CSSStyleSheet", "CSSStyleSheet"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "true", + IE = "false") + public void _CSSSupportsRule_CSSSupportsRule() throws Exception { + test("CSSSupportsRule", "CSSSupportsRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CSSValue_CSSPrimitiveValue() throws Exception { + test("CSSValue", "CSSPrimitiveValue"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CSSValue_CSSValue() throws Exception { + test("CSSValue", "CSSValue"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CSSValue_CSSValueList() throws Exception { + test("CSSValue", "CSSValueList"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _CSSValueList_CSSValueList() throws Exception { + test("CSSValueList", "CSSValueList"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _CSSViewportRule_CSSViewportRule() throws Exception { + test("CSSViewportRule", "CSSViewportRule"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _CustomElementRegistry_CustomElementRegistry() throws Exception { + test("CustomElementRegistry", "CustomElementRegistry"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts("true") + public void _CustomEvent_CustomEvent() throws Exception { + test("CustomEvent", "CustomEvent"); + } +} Property changes on: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property |