From: <rb...@us...> - 2016-12-10 10:13:46
|
Revision: 13191 http://sourceforge.net/p/htmlunit/code/13191 Author: rbri Date: 2016-12-10 10:13:44 +0000 (Sat, 10 Dec 2016) Log Message: ----------- try to make the huge build green again Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfWTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java 2016-12-10 09:17:15 UTC (rev 13190) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java 2016-12-10 10:13:44 UTC (rev 13191) @@ -1191,6 +1191,7 @@ @Test @Alerts(DEFAULT = "false", CHROME = "true") + @NotYetImplemented(CHROME) public void _AudioContext_webkitAudioContext() throws Exception { test("AudioContext", "webkitAudioContext"); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfWTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfWTest.java 2016-12-10 09:17:15 UTC (rev 13190) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfWTest.java 2016-12-10 10:13:44 UTC (rev 13191) @@ -432,6 +432,16 @@ * @throws Exception if the test fails */ @Test + @Alerts("false") + @NotYetImplemented(CHROME) + public void _webkitAudioContext_OfflineAudioContext() throws Exception { + test("webkitAudioContext", "OfflineAudioContext"); + } + + /** + * @throws Exception if the test fails + */ + @Test @Alerts(DEFAULT = "false", CHROME = "true") public void _webkitAudioContext_webkitAudioContext() throws Exception { @@ -442,6 +452,16 @@ * @throws Exception if the test fails */ @Test + @Alerts("false") + @NotYetImplemented(CHROME) + public void _webkitAudioContext_webkitOfflineAudioContext() throws Exception { + test("webkitAudioContext", "OfflineAudioContext"); + } + + /** + * @throws Exception if the test fails + */ + @Test @Alerts(DEFAULT = "false", CHROME = "true") public void _webkitIDBCursor_IDBCursor() throws Exception { |