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 |
From: <rb...@us...> - 2017-12-17 14:47:00
|
Revision: 15018 http://sourceforge.net/p/htmlunit/code/15018 Author: rbri Date: 2017-12-17 14:46:58 +0000 (Sun, 17 Dec 2017) Log Message: ----------- fixes for chrome 63 (wip) Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.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-12-16 10:50:32 UTC (rev 15017) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java 2017-12-17 14:46:58 UTC (rev 15018) @@ -113,8 +113,7 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts("false") public void _AppBannerPromptResult_AppBannerPromptResult() throws Exception { test("AppBannerPromptResult", "AppBannerPromptResult"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java 2017-12-16 10:50:32 UTC (rev 15017) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java 2017-12-17 14:46:58 UTC (rev 15018) @@ -583,6 +583,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _Element_HTMLDataElement() throws Exception { test("Element", "HTMLDataElement"); @@ -1197,6 +1198,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _Element_HTMLTimeElement() throws Exception { test("Element", "HTMLTimeElement"); @@ -3081,6 +3083,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _EventTarget_HTMLDataElement() throws Exception { test("EventTarget", "HTMLDataElement"); @@ -3683,6 +3686,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _EventTarget_HTMLTimeElement() throws Exception { test("EventTarget", "HTMLTimeElement"); Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2017-12-16 10:50:32 UTC (rev 15017) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2017-12-17 14:46:58 UTC (rev 15018) @@ -266,6 +266,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _HTMLDataElement_HTMLDataElement() throws Exception { test("HTMLDataElement", "HTMLDataElement"); @@ -494,6 +495,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _HTMLElement_HTMLDataElement() throws Exception { test("HTMLElement", "HTMLDataElement"); @@ -1108,6 +1110,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _HTMLElement_HTMLTimeElement() throws Exception { test("HTMLElement", "HTMLTimeElement"); @@ -1786,6 +1789,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _HTMLTimeElement_HTMLTimeElement() throws Exception { test("HTMLTimeElement", "HTMLTimeElement"); Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java 2017-12-16 10:50:32 UTC (rev 15017) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java 2017-12-17 14:46:58 UTC (rev 15018) @@ -977,6 +977,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _Node_HTMLDataElement() throws Exception { test("Node", "HTMLDataElement"); @@ -1666,6 +1667,7 @@ */ @Test @Alerts(DEFAULT = "false", + CHROME = "true", FF = "true") public void _Node_HTMLTimeElement() throws Exception { test("Node", "HTMLTimeElement"); |
From: <rb...@us...> - 2017-12-21 18:22:48
|
Revision: 15032 http://sourceforge.net/p/htmlunit/code/15032 Author: rbri Date: 2017-12-21 18:22:46 +0000 (Thu, 21 Dec 2017) Log Message: ----------- fix build Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java 2017-12-21 14:21:37 UTC (rev 15031) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java 2017-12-21 18:22:46 UTC (rev 15032) @@ -662,8 +662,7 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts("false") public void _CSSRule_CSSViewportRule() throws Exception { test("CSSRule", "CSSViewportRule"); } @@ -778,8 +777,7 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts("false") public void _CSSViewportRule_CSSViewportRule() throws Exception { test("CSSViewportRule", "CSSViewportRule"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java 2017-12-21 14:21:37 UTC (rev 15031) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java 2017-12-21 18:22:46 UTC (rev 15032) @@ -261,7 +261,7 @@ @Alerts(DEFAULT = "false", CHROME = "true", FF52 = "true") - @NotYetImplemented(FF52) + @NotYetImplemented({CHROME, FF52}) public void _DOMMatrix_WebKitCSSMatrix() throws Exception { test("DOMMatrix", "WebKitCSSMatrix"); } @@ -293,7 +293,7 @@ @Alerts(DEFAULT = "false", CHROME = "true", FF52 = "true") - @NotYetImplemented(FF52) + @NotYetImplemented({CHROME, FF52}) public void _DOMMatrixReadOnly_WebKitCSSMatrix() throws Exception { test("DOMMatrixReadOnly", "WebKitCSSMatrix"); } @@ -582,9 +582,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _Element_HTMLDataElement() throws Exception { test("Element", "HTMLDataElement"); } @@ -1197,9 +1196,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _Element_HTMLTimeElement() throws Exception { test("Element", "HTMLTimeElement"); } @@ -3082,9 +3080,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _EventTarget_HTMLDataElement() throws Exception { test("EventTarget", "HTMLDataElement"); } @@ -3685,9 +3682,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _EventTarget_HTMLTimeElement() throws Exception { test("EventTarget", "HTMLTimeElement"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2017-12-21 14:21:37 UTC (rev 15031) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2017-12-21 18:22:46 UTC (rev 15032) @@ -265,9 +265,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _HTMLDataElement_HTMLDataElement() throws Exception { test("HTMLDataElement", "HTMLDataElement"); } @@ -494,9 +493,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _HTMLElement_HTMLDataElement() throws Exception { test("HTMLElement", "HTMLDataElement"); } @@ -1109,9 +1107,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _HTMLElement_HTMLTimeElement() throws Exception { test("HTMLElement", "HTMLTimeElement"); } @@ -1788,9 +1785,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _HTMLTimeElement_HTMLTimeElement() throws Exception { test("HTMLTimeElement", "HTMLTimeElement"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java 2017-12-21 14:21:37 UTC (rev 15031) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java 2017-12-21 18:22:46 UTC (rev 15032) @@ -976,9 +976,8 @@ * if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _Node_HTMLDataElement() throws Exception { test("Node", "HTMLDataElement"); } @@ -1666,9 +1665,8 @@ * if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _Node_HTMLTimeElement() throws Exception { test("Node", "HTMLTimeElement"); } |
From: <rb...@us...> - 2018-05-29 19:04:13
|
Revision: 15293 http://sourceforge.net/p/htmlunit/code/15293 Author: rbri Date: 2018-05-29 19:04:06 +0000 (Tue, 29 May 2018) Log Message: ----------- FF60 adjust expectations (wip) Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/ElementClosesElementTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfBTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfFTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfWTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/ElementClosesElementTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/ElementClosesElementTest.java 2018-05-27 11:29:11 UTC (rev 15292) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/ElementClosesElementTest.java 2018-05-29 19:04:06 UTC (rev 15293) @@ -233,7 +233,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _a_isindex() throws Exception { test("a", "isindex"); @@ -416,7 +417,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _abbr_isindex() throws Exception { test("abbr", "isindex"); @@ -599,7 +601,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _acronym_isindex() throws Exception { test("acronym", "isindex"); @@ -782,7 +785,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _address_isindex() throws Exception { test("address", "isindex"); @@ -965,7 +969,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _applet_isindex() throws Exception { test("applet", "isindex"); @@ -2408,7 +2413,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _article_isindex() throws Exception { test("article", "isindex"); @@ -2591,7 +2597,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _aside_isindex() throws Exception { test("aside", "isindex"); @@ -2774,7 +2781,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _audio_isindex() throws Exception { test("audio", "isindex"); @@ -2957,7 +2965,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _b_isindex() throws Exception { test("b", "isindex"); @@ -5660,7 +5669,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _bdi_isindex() throws Exception { test("bdi", "isindex"); @@ -5843,7 +5853,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _bdo_isindex() throws Exception { test("bdo", "isindex"); @@ -7286,7 +7297,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _big_isindex() throws Exception { test("big", "isindex"); @@ -7469,7 +7481,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _blink_isindex() throws Exception { test("blink", "isindex"); @@ -7652,7 +7665,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _blockquote_isindex() throws Exception { test("blockquote", "isindex"); @@ -8267,7 +8281,8 @@ */ @Test @Alerts(DEFAULT = "3", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({FF, IE, EDGE}) public void _body_isindex() throws Exception { test("body", "isindex"); @@ -10250,7 +10265,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _button_isindex() throws Exception { test("button", "isindex"); @@ -10433,7 +10449,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _canvas_isindex() throws Exception { test("canvas", "isindex"); @@ -11877,7 +11894,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _center_isindex() throws Exception { test("center", "isindex"); @@ -12060,7 +12078,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _cite_isindex() throws Exception { test("cite", "isindex"); @@ -12243,7 +12262,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _code_isindex() throws Exception { test("code", "isindex"); @@ -15518,7 +15538,8 @@ */ @Test @Alerts(DEFAULT = "0", - FF = "2") + FF52 = "2", + FF60 = "1") @NotYetImplemented({FF, EDGE}) public void _command_isindex() throws Exception { test("command", "isindex"); @@ -16350,7 +16371,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _content_isindex() throws Exception { test("content", "isindex"); @@ -16533,7 +16555,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _data_isindex() throws Exception { test("data", "isindex"); @@ -16716,7 +16739,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _datalist_isindex() throws Exception { test("datalist", "isindex"); @@ -16917,7 +16941,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _dd_isindex() throws Exception { test("dd", "isindex"); @@ -17100,7 +17125,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _del_isindex() throws Exception { test("del", "isindex"); @@ -17283,7 +17309,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _details_isindex() throws Exception { test("details", "isindex"); @@ -17466,7 +17493,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _dfn_isindex() throws Exception { test("dfn", "isindex"); @@ -17649,7 +17677,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _dialog_isindex() throws Exception { test("dialog", "isindex"); @@ -17832,7 +17861,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _dir_isindex() throws Exception { test("dir", "isindex"); @@ -18015,7 +18045,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _div_isindex() throws Exception { test("div", "isindex"); @@ -18198,7 +18229,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _dl_isindex() throws Exception { test("dl", "isindex"); @@ -18399,7 +18431,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _dt_isindex() throws Exception { test("dt", "isindex"); @@ -18582,7 +18615,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _em_isindex() throws Exception { test("em", "isindex"); @@ -20026,7 +20060,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _fieldset_isindex() throws Exception { test("fieldset", "isindex"); @@ -20209,7 +20244,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _figcaption_isindex() throws Exception { test("figcaption", "isindex"); @@ -20392,7 +20428,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _figure_isindex() throws Exception { test("figure", "isindex"); @@ -20575,7 +20612,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _font_isindex() throws Exception { test("font", "isindex"); @@ -20758,7 +20796,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _footer_isindex() throws Exception { test("footer", "isindex"); @@ -23689,7 +23728,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _h1_isindex() throws Exception { test("h1", "isindex"); @@ -23926,7 +23966,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _h2_isindex() throws Exception { test("h2", "isindex"); @@ -24163,7 +24204,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _h3_isindex() throws Exception { test("h3", "isindex"); @@ -24400,7 +24442,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _h4_isindex() throws Exception { test("h4", "isindex"); @@ -24637,7 +24680,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _h5_isindex() throws Exception { test("h5", "isindex"); @@ -24874,7 +24918,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _h6_isindex() throws Exception { test("h6", "isindex"); @@ -26318,7 +26363,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _header_isindex() throws Exception { test("header", "isindex"); @@ -29023,7 +29069,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _i_isindex() throws Exception { test("i", "isindex"); @@ -32989,7 +33036,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _ins_isindex() throws Exception { test("ins", "isindex"); @@ -33072,7 +33120,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_a() throws Exception { test("isindex", "a"); @@ -33083,7 +33132,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_abbr() throws Exception { test("isindex", "abbr"); @@ -33094,7 +33144,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_acronym() throws Exception { test("isindex", "acronym"); @@ -33105,7 +33156,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_address() throws Exception { test("isindex", "address"); @@ -33116,7 +33168,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_applet() throws Exception { test("isindex", "applet"); @@ -33127,7 +33180,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_area() throws Exception { test("isindex", "area"); @@ -33138,7 +33192,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_article() throws Exception { test("isindex", "article"); @@ -33149,7 +33204,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_aside() throws Exception { test("isindex", "aside"); @@ -33160,7 +33216,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_audio() throws Exception { test("isindex", "audio"); @@ -33171,7 +33228,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_b() throws Exception { test("isindex", "b"); @@ -33182,7 +33240,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_base() throws Exception { test("isindex", "base"); @@ -33193,7 +33252,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_basefont() throws Exception { test("isindex", "basefont"); @@ -33204,7 +33264,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_bdi() throws Exception { test("isindex", "bdi"); @@ -33215,7 +33276,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_bdo() throws Exception { test("isindex", "bdo"); @@ -33226,7 +33288,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_bgsound() throws Exception { test("isindex", "bgsound"); @@ -33237,7 +33300,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_big() throws Exception { test("isindex", "big"); @@ -33248,7 +33312,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_blink() throws Exception { test("isindex", "blink"); @@ -33259,7 +33324,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_blockquote() throws Exception { test("isindex", "blockquote"); @@ -33270,7 +33336,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_body() throws Exception { test("isindex", "body"); @@ -33281,7 +33348,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_br() throws Exception { test("isindex", "br"); @@ -33292,7 +33360,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_button() throws Exception { test("isindex", "button"); @@ -33303,7 +33372,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_canvas() throws Exception { test("isindex", "canvas"); @@ -33314,7 +33384,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_caption() throws Exception { test("isindex", "caption"); @@ -33325,7 +33396,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_center() throws Exception { test("isindex", "center"); @@ -33336,7 +33408,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_cite() throws Exception { test("isindex", "cite"); @@ -33347,7 +33420,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_code() throws Exception { test("isindex", "code"); @@ -33358,7 +33432,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_col() throws Exception { test("isindex", "col"); @@ -33369,7 +33444,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_colgroup() throws Exception { test("isindex", "colgroup"); @@ -33380,7 +33456,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_command() throws Exception { test("isindex", "command"); @@ -33391,7 +33468,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_content() throws Exception { test("isindex", "content"); @@ -33402,7 +33480,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_data() throws Exception { test("isindex", "data"); @@ -33413,7 +33492,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_datalist() throws Exception { test("isindex", "datalist"); @@ -33424,7 +33504,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_dd() throws Exception { test("isindex", "dd"); @@ -33435,7 +33516,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_del() throws Exception { test("isindex", "del"); @@ -33446,7 +33528,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_details() throws Exception { test("isindex", "details"); @@ -33457,7 +33540,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_dfn() throws Exception { test("isindex", "dfn"); @@ -33468,7 +33552,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_dialog() throws Exception { test("isindex", "dialog"); @@ -33479,7 +33564,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_dir() throws Exception { test("isindex", "dir"); @@ -33490,7 +33576,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_div() throws Exception { test("isindex", "div"); @@ -33501,7 +33588,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_dl() throws Exception { test("isindex", "dl"); @@ -33512,7 +33600,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_dt() throws Exception { test("isindex", "dt"); @@ -33523,7 +33612,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_em() throws Exception { test("isindex", "em"); @@ -33534,7 +33624,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_embed() throws Exception { test("isindex", "embed"); @@ -33545,7 +33636,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_fieldset() throws Exception { test("isindex", "fieldset"); @@ -33556,7 +33648,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_figcaption() throws Exception { test("isindex", "figcaption"); @@ -33567,7 +33660,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_figure() throws Exception { test("isindex", "figure"); @@ -33578,7 +33672,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_font() throws Exception { test("isindex", "font"); @@ -33589,7 +33684,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_footer() throws Exception { test("isindex", "footer"); @@ -33600,7 +33696,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_form() throws Exception { test("isindex", "form"); @@ -33611,7 +33708,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_frame() throws Exception { test("isindex", "frame"); @@ -33622,7 +33720,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_frameset() throws Exception { test("isindex", "frameset"); @@ -33633,7 +33732,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_h1() throws Exception { test("isindex", "h1"); @@ -33644,7 +33744,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_h2() throws Exception { test("isindex", "h2"); @@ -33655,7 +33756,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_h3() throws Exception { test("isindex", "h3"); @@ -33666,7 +33768,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_h4() throws Exception { test("isindex", "h4"); @@ -33677,7 +33780,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_h5() throws Exception { test("isindex", "h5"); @@ -33688,7 +33792,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_h6() throws Exception { test("isindex", "h6"); @@ -33699,7 +33804,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_head() throws Exception { test("isindex", "head"); @@ -33710,7 +33816,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_header() throws Exception { test("isindex", "header"); @@ -33721,7 +33828,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_hr() throws Exception { test("isindex", "hr"); @@ -33732,7 +33840,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_html() throws Exception { test("isindex", "html"); @@ -33743,7 +33852,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_i() throws Exception { test("isindex", "i"); @@ -33754,7 +33864,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_iframe() throws Exception { test("isindex", "iframe"); @@ -33765,7 +33876,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_image() throws Exception { test("isindex", "image"); @@ -33776,7 +33888,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_img() throws Exception { test("isindex", "img"); @@ -33787,7 +33900,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_input() throws Exception { test("isindex", "input"); @@ -33798,7 +33912,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_ins() throws Exception { test("isindex", "ins"); @@ -33809,7 +33924,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") public void _isindex_isindex() throws Exception { test("isindex", "isindex"); } @@ -33819,7 +33935,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_kbd() throws Exception { test("isindex", "kbd"); @@ -33830,7 +33947,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_keygen() throws Exception { test("isindex", "keygen"); @@ -33841,7 +33959,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_label() throws Exception { test("isindex", "label"); @@ -33852,7 +33971,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_layer() throws Exception { test("isindex", "layer"); @@ -33863,7 +33983,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_legend() throws Exception { test("isindex", "legend"); @@ -33874,7 +33995,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_li() throws Exception { test("isindex", "li"); @@ -33885,7 +34007,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_link() throws Exception { test("isindex", "link"); @@ -33896,7 +34019,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_listing() throws Exception { test("isindex", "listing"); @@ -33907,7 +34031,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_main() throws Exception { test("isindex", "main"); @@ -33918,7 +34043,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_map() throws Exception { test("isindex", "map"); @@ -33929,7 +34055,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_mark() throws Exception { test("isindex", "mark"); @@ -33940,7 +34067,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_marquee() throws Exception { test("isindex", "marquee"); @@ -33951,7 +34079,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_menu() throws Exception { test("isindex", "menu"); @@ -33962,7 +34091,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_menuitem() throws Exception { test("isindex", "menuitem"); @@ -33973,7 +34103,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_meta() throws Exception { test("isindex", "meta"); @@ -33984,7 +34115,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_meter() throws Exception { test("isindex", "meter"); @@ -33995,7 +34127,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_multicol() throws Exception { test("isindex", "multicol"); @@ -34006,7 +34139,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_nav() throws Exception { test("isindex", "nav"); @@ -34017,7 +34151,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_nextid() throws Exception { test("isindex", "nextid"); @@ -34028,7 +34163,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_nobr() throws Exception { test("isindex", "nobr"); @@ -34039,7 +34175,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_noembed() throws Exception { test("isindex", "noembed"); @@ -34050,7 +34187,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_noframes() throws Exception { test("isindex", "noframes"); @@ -34061,7 +34199,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_nolayer() throws Exception { test("isindex", "nolayer"); @@ -34072,7 +34211,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_noscript() throws Exception { test("isindex", "noscript"); @@ -34083,7 +34223,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_object() throws Exception { test("isindex", "object"); @@ -34094,7 +34235,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_ol() throws Exception { test("isindex", "ol"); @@ -34105,7 +34247,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_optgroup() throws Exception { test("isindex", "optgroup"); @@ -34116,7 +34259,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_option() throws Exception { test("isindex", "option"); @@ -34127,7 +34271,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_output() throws Exception { test("isindex", "output"); @@ -34138,7 +34283,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_p() throws Exception { test("isindex", "p"); @@ -34149,7 +34295,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_param() throws Exception { test("isindex", "param"); @@ -34160,7 +34307,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_picture() throws Exception { test("isindex", "picture"); @@ -34171,7 +34319,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _isindex_plaintext() throws Exception { test("isindex", "plaintext"); @@ -34182,7 +34331,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_pre() throws Exception { test("isindex", "pre"); @@ -34193,7 +34343,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_progress() throws Exception { test("isindex", "progress"); @@ -34204,7 +34355,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_q() throws Exception { test("isindex", "q"); @@ -34215,7 +34367,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_rp() throws Exception { test("isindex", "rp"); @@ -34226,7 +34379,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_rt() throws Exception { test("isindex", "rt"); @@ -34237,7 +34391,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_ruby() throws Exception { test("isindex", "ruby"); @@ -34248,7 +34403,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_s() throws Exception { test("isindex", "s"); @@ -34259,7 +34415,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_samp() throws Exception { test("isindex", "samp"); @@ -34270,7 +34427,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_script() throws Exception { test("isindex", "script"); @@ -34281,7 +34439,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_section() throws Exception { test("isindex", "section"); @@ -34292,7 +34451,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_select() throws Exception { test("isindex", "select"); @@ -34303,7 +34463,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _isindex_slot() throws Exception { test("isindex", "slot"); @@ -34314,7 +34475,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_small() throws Exception { test("isindex", "small"); @@ -34325,7 +34487,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_source() throws Exception { test("isindex", "source"); @@ -34336,7 +34499,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_span() throws Exception { test("isindex", "span"); @@ -34347,7 +34511,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_strike() throws Exception { test("isindex", "strike"); @@ -34358,7 +34523,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_strong() throws Exception { test("isindex", "strong"); @@ -34369,7 +34535,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_style() throws Exception { test("isindex", "style"); @@ -34380,7 +34547,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_sub() throws Exception { test("isindex", "sub"); @@ -34391,7 +34559,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_summary() throws Exception { test("isindex", "summary"); @@ -34402,7 +34571,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_sup() throws Exception { test("isindex", "sup"); @@ -34413,7 +34583,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_table() throws Exception { test("isindex", "table"); @@ -34424,7 +34595,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_tbody() throws Exception { test("isindex", "tbody"); @@ -34435,7 +34607,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_td() throws Exception { test("isindex", "td"); @@ -34446,7 +34619,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_template() throws Exception { test("isindex", "template"); @@ -34457,7 +34631,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_textarea() throws Exception { test("isindex", "textarea"); @@ -34468,7 +34643,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_tfoot() throws Exception { test("isindex", "tfoot"); @@ -34479,7 +34655,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_th() throws Exception { test("isindex", "th"); @@ -34490,7 +34667,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_thead() throws Exception { test("isindex", "thead"); @@ -34501,7 +34679,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_time() throws Exception { test("isindex", "time"); @@ -34512,7 +34691,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_title() throws Exception { test("isindex", "title"); @@ -34523,7 +34703,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_tr() throws Exception { test("isindex", "tr"); @@ -34534,7 +34715,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_track() throws Exception { test("isindex", "track"); @@ -34545,7 +34727,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_tt() throws Exception { test("isindex", "tt"); @@ -34556,7 +34739,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_u() throws Exception { test("isindex", "u"); @@ -34567,7 +34751,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_ul() throws Exception { test("isindex", "ul"); @@ -34578,7 +34763,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_var() throws Exception { test("isindex", "var"); @@ -34589,7 +34775,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_video() throws Exception { test("isindex", "video"); @@ -34600,7 +34787,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "2") + CHROME = "2", + FF60 = "2") @NotYetImplemented({IE, FF, EDGE}) public void _isindex_wbr() throws Exception { test("isindex", "wbr"); @@ -34611,7 +34799,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE, EDGE}) public void _isindex_xmp() throws Exception { test("isindex", "xmp"); @@ -34722,7 +34911,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _kbd_isindex() throws Exception { test("kbd", "isindex"); @@ -36306,7 +36496,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _label_isindex() throws Exception { test("label", "isindex"); @@ -36489,7 +36680,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _layer_isindex() throws Exception { test("layer", "isindex"); @@ -36672,7 +36864,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _legend_isindex() throws Exception { test("legend", "isindex"); @@ -36855,7 +37048,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _li_isindex() throws Exception { test("li", "isindex"); @@ -38308,7 +38502,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _listing_isindex() throws Exception { test("listing", "isindex"); @@ -38491,7 +38686,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _main_isindex() throws Exception { test("main", "isindex"); @@ -38674,7 +38870,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _map_isindex() throws Exception { test("map", "isindex"); @@ -38857,7 +39054,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _mark_isindex() throws Exception { test("mark", "isindex"); @@ -39040,7 +39238,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _marquee_isindex() throws Exception { test("marquee", "isindex"); @@ -39223,7 +39422,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _menu_isindex() throws Exception { test("menu", "isindex"); @@ -39406,7 +39606,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _menuitem_isindex() throws Exception { test("menuitem", "isindex"); @@ -40850,7 +41051,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _meter_isindex() throws Exception { test("meter", "isindex"); @@ -41033,7 +41235,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _multicol_isindex() throws Exception { test("multicol", "isindex"); @@ -41216,7 +41419,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _nav_isindex() throws Exception { test("nav", "isindex"); @@ -41399,7 +41603,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _nextid_isindex() throws Exception { test("nextid", "isindex"); @@ -41582,7 +41787,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _nobr_isindex() throws Exception { test("nobr", "isindex"); @@ -41964,7 +42170,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _nolayer_isindex() throws Exception { test("nolayer", "isindex"); @@ -42147,7 +42354,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _object_isindex() throws Exception { test("object", "isindex"); @@ -42330,7 +42538,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({IE, FF}) public void _ol_isindex() throws Exception { test("ol", "isindex"); @@ -42513,7 +42722,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _optgroup_isindex() throws Exception { test("optgroup", "isindex"); @@ -42696,7 +42906,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _option_isindex() throws Exception { test("option", "isindex"); @@ -42897,7 +43108,8 @@ */ @Test @Alerts(DEFAULT = "2", - CHROME = "1") + CHROME = "1", + FF60 = "1") @NotYetImplemented({FF, IE}) public void _output_isindex() throws Exception { test("output", "isindex"); @@ -43098,6 +43310,16 @@ * @throws Exception if the test fails */ @Test + @Alerts(DEFAULT = "1", + FF60 = "0") + public void _p_dialog() throws Exception { + test("p", "dialog"); + } + + /** + * @throws Exception if the test fails + */ + @Test @Alerts("0") public void _p_dir() throws Exception { test("p", "dir"); @@ -43288,7 +43510,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + ... [truncated message content] |
From: <rb...@us...> - 2018-05-31 07:06:45
|
Revision: 15295 http://sourceforge.net/p/htmlunit/code/15295 Author: rbri Date: 2018-05-31 07:06:41 +0000 (Thu, 31 May 2018) Log Message: ----------- work on ff60 expectations Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfPTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfTTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2018-05-29 19:06:34 UTC (rev 15294) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2018-05-31 07:06:41 UTC (rev 15295) @@ -102,7 +102,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _HTMLAppletElement_HTMLAppletElement() throws Exception { test("HTMLAppletElement", "HTMLAppletElement"); } @@ -255,7 +256,7 @@ */ @Test @Alerts(DEFAULT = "true", - FF52 = "false", + FF = "false", IE = "false") public void _HTMLContentElement_HTMLContentElement() throws Exception { test("HTMLContentElement", "HTMLContentElement"); @@ -295,7 +296,7 @@ */ @Test @Alerts(DEFAULT = "false", - FF52 = "true", + FF = "true", CHROME = "true") public void _HTMLDetailsElement_HTMLDetailsElement() throws Exception { test("HTMLDetailsElement", "HTMLDetailsElement"); @@ -380,7 +381,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _HTMLElement_HTMLAppletElement() throws Exception { test("HTMLElement", "HTMLAppletElement"); } @@ -483,7 +485,7 @@ */ @Test @Alerts(DEFAULT = "true", - FF52 = "false", + FF = "false", IE = "false") public void _HTMLElement_HTMLContentElement() throws Exception { test("HTMLElement", "HTMLContentElement"); @@ -523,7 +525,7 @@ */ @Test @Alerts(DEFAULT = "false", - FF52 = "true", + FF = "true", CHROME = "true") public void _HTMLElement_HTMLDetailsElement() throws Exception { test("HTMLElement", "HTMLDetailsElement"); @@ -967,7 +969,7 @@ */ @Test @Alerts(DEFAULT = "true", - FF52 = "false", + FF = "false", IE = "false") public void _HTMLElement_HTMLShadowElement() throws Exception { test("HTMLElement", "HTMLShadowElement"); @@ -1625,7 +1627,7 @@ */ @Test @Alerts(DEFAULT = "true", - FF52 = "false", + FF = "false", IE = "false") public void _HTMLShadowElement_HTMLShadowElement() throws Exception { test("HTMLShadowElement", "HTMLShadowElement"); Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java 2018-05-29 19:06:34 UTC (rev 15294) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java 2018-05-31 07:06:41 UTC (rev 15295) @@ -196,7 +196,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _IdleDeadline_IdleDeadline() throws Exception { test("IdleDeadline", "IdleDeadline"); } @@ -329,7 +330,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _IntersectionObserver_IntersectionObserver() throws Exception { test("IntersectionObserver", "IntersectionObserver"); } @@ -339,7 +341,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _IntersectionObserverEntry_IntersectionObserverEntry() throws Exception { test("IntersectionObserverEntry", "IntersectionObserverEntry"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfPTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfPTest.java 2018-05-29 19:06:34 UTC (rev 15294) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfPTest.java 2018-05-31 07:06:41 UTC (rev 15295) @@ -173,7 +173,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") @NotYetImplemented(CHROME) public void _PerformanceEntry_PerformanceNavigationTiming() throws Exception { test("PerformanceEntry", "PerformanceNavigationTiming"); @@ -224,7 +225,7 @@ */ @Test @Alerts(DEFAULT = "true", - FF = "false") + FF52 = "false") public void _PerformanceNavigationTiming_PerformanceNavigationTiming() throws Exception { test("PerformanceNavigationTiming", "PerformanceNavigationTiming"); } @@ -235,7 +236,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _PerformanceObserver_PerformanceObserver() throws Exception { test("PerformanceObserver", "PerformanceObserver"); } @@ -246,7 +248,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _PerformanceObserverEntryList_PerformanceObserverEntryList() throws Exception { test("PerformanceObserverEntryList", "PerformanceObserverEntryList"); } @@ -257,7 +260,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") @NotYetImplemented(CHROME) public void _PerformanceResourceTiming_PerformanceNavigationTiming() throws Exception { test("PerformanceResourceTiming", "PerformanceNavigationTiming"); @@ -300,7 +304,7 @@ */ @Test @Alerts(DEFAULT = "false", - FF52 = "true", + FF = "true", CHROME = "true") public void _Permissions_Permissions() throws Exception { test("Permissions", "Permissions"); @@ -312,7 +316,7 @@ */ @Test @Alerts(DEFAULT = "false", - FF52 = "true", + FF = "true", CHROME = "true") public void _PermissionStatus_PermissionStatus() throws Exception { test("PermissionStatus", "PermissionStatus"); @@ -344,7 +348,7 @@ */ @Test @Alerts(DEFAULT = "true", - FF = "false") + FF52 = "false") public void _PointerEvent_PointerEvent() throws Exception { test("PointerEvent", "PointerEvent"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java 2018-05-29 19:06:34 UTC (rev 15294) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java 2018-05-31 07:06:41 UTC (rev 15295) @@ -193,7 +193,7 @@ */ @Test @Alerts(DEFAULT = "false", - FF52 = "true") + FF = "true") public void _SpeechSynthesis_SpeechSynthesis() throws Exception { test("SpeechSynthesis", "SpeechSynthesis"); } @@ -203,7 +203,7 @@ */ @Test @Alerts(DEFAULT = "false", - FF52 = "true") + FF = "true") public void _SpeechSynthesisErrorEvent_SpeechSynthesisErrorEvent() throws Exception { test("SpeechSynthesisErrorEvent", "SpeechSynthesisErrorEvent"); } @@ -233,7 +233,7 @@ */ @Test @Alerts(DEFAULT = "false", - FF52 = "true") + FF = "true") public void _SpeechSynthesisVoice_SpeechSynthesisVoice() throws Exception { test("SpeechSynthesisVoice", "SpeechSynthesisVoice"); } @@ -271,7 +271,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _StorageManager_StorageManager() throws Exception { test("StorageManager", "StorageManager"); } @@ -1027,7 +1028,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _SVGElement_SVGGeometryElement() throws Exception { test("SVGElement", "SVGGeometryElement"); } @@ -1593,7 +1595,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _SVGGeometryElement_SVGGeometryElement() throws Exception { test("SVGGeometryElement", "SVGGeometryElement"); } @@ -1613,7 +1616,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _SVGGeometryElement_SVGPathElement() throws Exception { test("SVGGeometryElement", "SVGPathElement"); } @@ -1760,7 +1764,8 @@ */ @Test @Alerts(DEFAULT = "false", - CHROME = "true") + CHROME = "true", + FF60 = "true") public void _SVGGraphicsElement_SVGGeometryElement() throws Exception { test("SVGGraphicsElement", "SVGGeometryElement"); } @@ -2038,7 +2043,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSeg() throws Exception { test("SVGPathSeg", "SVGPathSeg"); } @@ -2048,7 +2054,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegArcAbs() throws Exception { test("SVGPathSeg", "SVGPathSegArcAbs"); } @@ -2058,7 +2065,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegArcRel() throws Exception { test("SVGPathSeg", "SVGPathSegArcRel"); } @@ -2068,7 +2076,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegClosePath() throws Exception { test("SVGPathSeg", "SVGPathSegClosePath"); } @@ -2078,7 +2087,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegCurvetoCubicAbs() throws Exception { test("SVGPathSeg", "SVGPathSegCurvetoCubicAbs"); } @@ -2088,7 +2098,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegCurvetoCubicRel() throws Exception { test("SVGPathSeg", "SVGPathSegCurvetoCubicRel"); } @@ -2098,7 +2109,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegCurvetoCubicSmoothAbs() throws Exception { test("SVGPathSeg", "SVGPathSegCurvetoCubicSmoothAbs"); } @@ -2108,7 +2120,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegCurvetoCubicSmoothRel() throws Exception { test("SVGPathSeg", "SVGPathSegCurvetoCubicSmoothRel"); } @@ -2118,7 +2131,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegCurvetoQuadraticAbs() throws Exception { test("SVGPathSeg", "SVGPathSegCurvetoQuadraticAbs"); } @@ -2128,7 +2142,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegCurvetoQuadraticRel() throws Exception { test("SVGPathSeg", "SVGPathSegCurvetoQuadraticRel"); } @@ -2138,7 +2153,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegCurvetoQuadraticSmoothAbs() throws Exception { test("SVGPathSeg", "SVGPathSegCurvetoQuadraticSmoothAbs"); } @@ -2148,7 +2164,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegCurvetoQuadraticSmoothRel() throws Exception { test("SVGPathSeg", "SVGPathSegCurvetoQuadraticSmoothRel"); } @@ -2158,7 +2175,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegLinetoAbs() throws Exception { test("SVGPathSeg", "SVGPathSegLinetoAbs"); } @@ -2168,7 +2186,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegLinetoHorizontalAbs() throws Exception { test("SVGPathSeg", "SVGPathSegLinetoHorizontalAbs"); } @@ -2178,7 +2197,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegLinetoHorizontalRel() throws Exception { test("SVGPathSeg", "SVGPathSegLinetoHorizontalRel"); } @@ -2188,7 +2208,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegLinetoRel() throws Exception { test("SVGPathSeg", "SVGPathSegLinetoRel"); } @@ -2198,7 +2219,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegLinetoVerticalAbs() throws Exception { test("SVGPathSeg", "SVGPathSegLinetoVerticalAbs"); } @@ -2208,7 +2230,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegLinetoVerticalRel() throws Exception { test("SVGPathSeg", "SVGPathSegLinetoVerticalRel"); } @@ -2218,7 +2241,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegMovetoAbs() throws Exception { test("SVGPathSeg", "SVGPathSegMovetoAbs"); } @@ -2228,7 +2252,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSeg_SVGPathSegMovetoRel() throws Exception { test("SVGPathSeg", "SVGPathSegMovetoRel"); } @@ -2238,7 +2263,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegArcAbs_SVGPathSegArcAbs() throws Exception { test("SVGPathSegArcAbs", "SVGPathSegArcAbs"); } @@ -2248,7 +2274,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegArcRel_SVGPathSegArcRel() throws Exception { test("SVGPathSegArcRel", "SVGPathSegArcRel"); } @@ -2258,7 +2285,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegClosePath_SVGPathSegClosePath() throws Exception { test("SVGPathSegClosePath", "SVGPathSegClosePath"); } @@ -2268,7 +2296,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegCurvetoCubicAbs_SVGPathSegCurvetoCubicAbs() throws Exception { test("SVGPathSegCurvetoCubicAbs", "SVGPathSegCurvetoCubicAbs"); } @@ -2278,7 +2307,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegCurvetoCubicRel_SVGPathSegCurvetoCubicRel() throws Exception { test("SVGPathSegCurvetoCubicRel", "SVGPathSegCurvetoCubicRel"); } @@ -2288,7 +2318,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegCurvetoCubicSmoothAbs_SVGPathSegCurvetoCubicSmoothAbs() throws Exception { test("SVGPathSegCurvetoCubicSmoothAbs", "SVGPathSegCurvetoCubicSmoothAbs"); } @@ -2298,7 +2329,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegCurvetoCubicSmoothRel_SVGPathSegCurvetoCubicSmoothRel() throws Exception { test("SVGPathSegCurvetoCubicSmoothRel", "SVGPathSegCurvetoCubicSmoothRel"); } @@ -2308,7 +2340,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegCurvetoQuadraticAbs_SVGPathSegCurvetoQuadraticAbs() throws Exception { test("SVGPathSegCurvetoQuadraticAbs", "SVGPathSegCurvetoQuadraticAbs"); } @@ -2318,7 +2351,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegCurvetoQuadraticRel_SVGPathSegCurvetoQuadraticRel() throws Exception { test("SVGPathSegCurvetoQuadraticRel", "SVGPathSegCurvetoQuadraticRel"); } @@ -2328,7 +2362,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegCurvetoQuadraticSmoothAbs_SVGPathSegCurvetoQuadraticSmoothAbs() throws Exception { test("SVGPathSegCurvetoQuadraticSmoothAbs", "SVGPathSegCurvetoQuadraticSmoothAbs"); } @@ -2338,7 +2373,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegCurvetoQuadraticSmoothRel_SVGPathSegCurvetoQuadraticSmoothRel() throws Exception { test("SVGPathSegCurvetoQuadraticSmoothRel", "SVGPathSegCurvetoQuadraticSmoothRel"); } @@ -2348,7 +2384,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegLinetoAbs_SVGPathSegLinetoAbs() throws Exception { test("SVGPathSegLinetoAbs", "SVGPathSegLinetoAbs"); } @@ -2358,7 +2395,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegLinetoHorizontalAbs_SVGPathSegLinetoHorizontalAbs() throws Exception { test("SVGPathSegLinetoHorizontalAbs", "SVGPathSegLinetoHorizontalAbs"); } @@ -2368,7 +2406,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegLinetoHorizontalRel_SVGPathSegLinetoHorizontalRel() throws Exception { test("SVGPathSegLinetoHorizontalRel", "SVGPathSegLinetoHorizontalRel"); } @@ -2378,7 +2417,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegLinetoRel_SVGPathSegLinetoRel() throws Exception { test("SVGPathSegLinetoRel", "SVGPathSegLinetoRel"); } @@ -2388,7 +2428,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegLinetoVerticalAbs_SVGPathSegLinetoVerticalAbs() throws Exception { test("SVGPathSegLinetoVerticalAbs", "SVGPathSegLinetoVerticalAbs"); } @@ -2398,7 +2439,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegLinetoVerticalRel_SVGPathSegLinetoVerticalRel() throws Exception { test("SVGPathSegLinetoVerticalRel", "SVGPathSegLinetoVerticalRel"); } @@ -2418,7 +2460,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegMovetoAbs_SVGPathSegMovetoAbs() throws Exception { test("SVGPathSegMovetoAbs", "SVGPathSegMovetoAbs"); } @@ -2428,7 +2471,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGPathSegMovetoRel_SVGPathSegMovetoRel() throws Exception { test("SVGPathSegMovetoRel", "SVGPathSegMovetoRel"); } @@ -2765,7 +2809,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _SVGZoomEvent_SVGZoomEvent() throws Exception { test("SVGZoomEvent", "SVGZoomEvent"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfTTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfTTest.java 2018-05-29 19:06:34 UTC (rev 15294) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfTTest.java 2018-05-31 07:06:41 UTC (rev 15295) @@ -325,7 +325,7 @@ */ @Test @Alerts(DEFAULT = "true", - FF = "false") + FF52 = "false") public void _UIEvent_PointerEvent() throws Exception { test("UIEvent", "PointerEvent"); } @@ -335,7 +335,8 @@ */ @Test @Alerts(DEFAULT = "true", - CHROME = "false") + CHROME = "false", + FF60 = "false") public void _UIEvent_SVGZoomEvent() throws Exception { test("UIEvent", "SVGZoomEvent"); } |
From: <rb...@us...> - 2018-05-31 13:39:02
|
Revision: 15299 http://sourceforge.net/p/htmlunit/code/15299 Author: rbri Date: 2018-05-31 13:38:59 +0000 (Thu, 31 May 2018) Log Message: ----------- work on ff60 expectations Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfFTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java 2018-05-31 08:30:19 UTC (rev 15298) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfDTest.java 2018-05-31 13:38:59 UTC (rev 15299) @@ -254,9 +254,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") @NotYetImplemented({CHROME, FF52}) public void _DOMMatrix_WebKitCSSMatrix() throws Exception { test("DOMMatrix", "WebKitCSSMatrix"); @@ -286,9 +285,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true", - FF = "true") + @Alerts(DEFAULT = "true", + IE = "false") @NotYetImplemented({CHROME, FF52}) public void _DOMMatrixReadOnly_WebKitCSSMatrix() throws Exception { test("DOMMatrixReadOnly", "WebKitCSSMatrix"); @@ -366,9 +364,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - CHROME = "false", - FF = "false") + @Alerts(DEFAULT = "false", + IE = "true") public void _DOMSettableTokenList_DOMSettableTokenList() throws Exception { test("DOMSettableTokenList", "DOMSettableTokenList"); } @@ -396,9 +393,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - CHROME = "false", - FF = "false") + @Alerts(DEFAULT = "false", + IE = "true") public void _DOMTokenList_DOMSettableTokenList() throws Exception { test("DOMTokenList", "DOMSettableTokenList"); } @@ -566,9 +562,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _Element_HTMLContentElement() throws Exception { test("Element", "HTMLContentElement"); } @@ -1049,9 +1044,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _Element_HTMLShadowElement() throws Exception { test("Element", "HTMLShadowElement"); } @@ -2629,6 +2623,16 @@ */ @Test @Alerts(DEFAULT = "false", + FF60 = "true") + public void _EventTarget_Animation() throws Exception { + test("EventTarget", "Animation"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", CHROME = "true") public void _EventTarget_ApplicationCache() throws Exception { test("EventTarget", "ApplicationCache"); @@ -3061,9 +3065,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _EventTarget_HTMLContentElement() throws Exception { test("EventTarget", "HTMLContentElement"); } @@ -3542,9 +3545,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _EventTarget_HTMLShadowElement() throws Exception { test("EventTarget", "HTMLShadowElement"); } @@ -5168,6 +5170,16 @@ */ @Test @Alerts(DEFAULT = "false", + FF60 = "true") + public void _Event_SpeechSynthesisErrorEvent() throws Exception { + test("Event", "SpeechSynthesisErrorEvent"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", IE = "true") public void _EXT_texture_filter_anisotropic_EXT_texture_filter_anisotropic() throws Exception { test("EXT_texture_filter_anisotropic", "EXT_texture_filter_anisotropic"); Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfFTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfFTest.java 2018-05-31 08:30:19 UTC (rev 15298) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfFTest.java 2018-05-31 13:38:59 UTC (rev 15299) @@ -118,6 +118,16 @@ */ @Test @Alerts(DEFAULT = "false", + FF60 = "true") + public void _FileSystemEntry_FileSystemDirectoryEntry() throws Exception { + test("FileSystemEntry", "FileSystemDirectoryEntry"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", FF = "true") public void _FileSystemEntry_FileSystemEntry() throws Exception { test("FileSystemEntry", "FileSystemEntry"); @@ -128,6 +138,16 @@ */ @Test @Alerts(DEFAULT = "false", + FF60 = "true") + public void _FileSystemEntry_FileSystemFileEntry() throws Exception { + test("FileSystemEntry", "FileSystemFileEntry"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", FF = "true") public void _FileSystemFileEntry_FileSystemFileEntry() throws Exception { test("FileSystemFileEntry", "FileSystemFileEntry"); Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2018-05-31 08:30:19 UTC (rev 15298) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2018-05-31 13:38:59 UTC (rev 15299) @@ -255,9 +255,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _HTMLContentElement_HTMLContentElement() throws Exception { test("HTMLContentElement", "HTMLContentElement"); } @@ -295,9 +294,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - FF = "true", - CHROME = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _HTMLDetailsElement_HTMLDetailsElement() throws Exception { test("HTMLDetailsElement", "HTMLDetailsElement"); } @@ -484,9 +482,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _HTMLElement_HTMLContentElement() throws Exception { test("HTMLElement", "HTMLContentElement"); } @@ -524,9 +521,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - FF = "true", - CHROME = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _HTMLElement_HTMLDetailsElement() throws Exception { test("HTMLElement", "HTMLDetailsElement"); } @@ -968,9 +964,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _HTMLElement_HTMLShadowElement() throws Exception { test("HTMLElement", "HTMLShadowElement"); } @@ -1626,9 +1621,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _HTMLShadowElement_HTMLShadowElement() throws Exception { test("HTMLShadowElement", "HTMLShadowElement"); } |
From: <rb...@us...> - 2018-06-12 15:36:11
|
Revision: 15300 http://sourceforge.net/p/htmlunit/code/15300 Author: rbri Date: 2018-06-12 15:36:05 +0000 (Tue, 12 Jun 2018) Log Message: ----------- more ff60 expectations Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfPTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java 2018-05-31 13:38:59 UTC (rev 15299) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfMTest.java 2018-06-12 15:36:05 UTC (rev 15300) @@ -962,9 +962,8 @@ * if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _Node_HTMLContentElement() throws Exception { test("Node", "HTMLContentElement"); } @@ -1006,9 +1005,8 @@ * if the test fails */ @Test - @Alerts(DEFAULT = "false", - FF = "true", - CHROME = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _Node_HTMLDetailsElement() throws Exception { test("Node", "HTMLDetailsElement"); } @@ -1508,9 +1506,8 @@ * if the test fails */ @Test - @Alerts(DEFAULT = "true", - FF = "false", - IE = "false") + @Alerts(DEFAULT = "false", + CHROME = "true") public void _Node_HTMLShadowElement() throws Exception { test("Node", "HTMLShadowElement"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfPTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfPTest.java 2018-05-31 13:38:59 UTC (rev 15299) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfPTest.java 2018-06-12 15:36:05 UTC (rev 15300) @@ -303,9 +303,8 @@ * if the test fails */ @Test - @Alerts(DEFAULT = "false", - FF = "true", - CHROME = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _Permissions_Permissions() throws Exception { test("Permissions", "Permissions"); } @@ -315,9 +314,8 @@ * if the test fails */ @Test - @Alerts(DEFAULT = "false", - FF = "true", - CHROME = "true") + @Alerts(DEFAULT = "true", + IE = "false") public void _PermissionStatus_PermissionStatus() throws Exception { test("PermissionStatus", "PermissionStatus"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java 2018-05-31 13:38:59 UTC (rev 15299) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java 2018-06-12 15:36:05 UTC (rev 15300) @@ -212,6 +212,16 @@ * @throws Exception if the test fails */ @Test + @Alerts(DEFAULT = "false", + FF = "true") + public void _SpeechSynthesisEvent_SpeechSynthesisErrorEvent() throws Exception { + test("SpeechSynthesisEvent", "SpeechSynthesisErrorEvent"); + } + + /** + * @throws Exception if the test fails + */ + @Test @Alerts(DEFAULT = "true", IE = "false") public void _SpeechSynthesisEvent_SpeechSynthesisEvent() throws Exception { |
From: <rb...@us...> - 2018-06-13 13:41:54
|
Revision: 15301 http://sourceforge.net/p/htmlunit/code/15301 Author: rbri Date: 2018-06-13 13:41:50 +0000 (Wed, 13 Jun 2018) Log Message: ----------- latest chrome Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java 2018-06-12 15:36:05 UTC (rev 15300) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfCTest.java 2018-06-13 13:41:50 UTC (rev 15301) @@ -669,6 +669,7 @@ */ @Test @Alerts(DEFAULT = "true", + CHROME = "false", FF60 = "false") public void _CSSRule_MozCSSKeyframesRule() throws Exception { test("CSSRule", "MozCSSKeyframesRule"); Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java 2018-06-12 15:36:05 UTC (rev 15300) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java 2018-06-13 13:41:50 UTC (rev 15301) @@ -142,8 +142,7 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts("false") public void _SharedArrayBuffer_SharedArrayBuffer() throws Exception { test("SharedArrayBuffer", "SharedArrayBuffer"); } |