From: <rb...@us...> - 2017-05-10 13:58:48
|
Revision: 14427 http://sourceforge.net/p/htmlunit/code/14427 Author: rbri Date: 2017-05-10 13:58:45 +0000 (Wed, 10 May 2017) Log Message: ----------- ff52 expectations Modified Paths: -------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisErrorEvent.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisVoice.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisErrorEvent.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisErrorEvent.java 2017-05-10 13:53:28 UTC (rev 14426) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisErrorEvent.java 2017-05-10 13:58:45 UTC (rev 14427) @@ -26,7 +26,7 @@ * * @author Ronald Brill */ -@JsxClass(isJSObject = false, value = FF52) +@JsxClass(FF52) public class SpeechSynthesisErrorEvent extends SimpleScriptable { /** Constant. */ Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisVoice.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisVoice.java 2017-05-10 13:53:28 UTC (rev 14426) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/speech/SpeechSynthesisVoice.java 2017-05-10 13:58:45 UTC (rev 14427) @@ -25,7 +25,7 @@ * * @author Ronald Brill */ -@JsxClass(isJSObject = false, value = FF52) +@JsxClass(FF52) public class SpeechSynthesisVoice extends SimpleScriptable { /** 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 2017-05-10 13:53:28 UTC (rev 14426) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfSTest.java 2017-05-10 13:58:45 UTC (rev 14427) @@ -2428,6 +2428,16 @@ */ @Test @Alerts(DEFAULT = "false", + FF52 = "true") + public void _SpeechSynthesisErrorEvent_SpeechSynthesisErrorEvent() throws Exception { + test("SpeechSynthesisErrorEvent", "SpeechSynthesisErrorEvent"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", CHROME = "true", FF52 = "true") public void _SpeechSynthesisEvent_SpeechSynthesisEvent() throws Exception { @@ -2438,6 +2448,16 @@ * @throws Exception if the test fails */ @Test + @Alerts(DEFAULT = "false", + FF52 = "true") + public void _SpeechSynthesisVoice_SpeechSynthesisVoice() throws Exception { + test("SpeechSynthesisVoice", "SpeechSynthesisVoice"); + } + + /** + * @throws Exception if the test fails + */ + @Test @Alerts("true") public void _SVGComponentTransferFunctionElement_SVGComponentTransferFunctionElement() throws Exception { test("SVGComponentTransferFunctionElement", "SVGComponentTransferFunctionElement"); |