From: <rb...@us...> - 2016-08-17 09:10:20
|
Revision: 12919 http://sourceforge.net/p/htmlunit/code/12919 Author: rbri Date: 2016-08-17 09:10:17 +0000 (Wed, 17 Aug 2016) Log Message: ----------- fix some more tests Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.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-08-16 16:38:08 UTC (rev 12918) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java 2016-08-17 09:10:17 UTC (rev 12919) @@ -5540,8 +5540,7 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts("false") public void _AutocompleteErrorEvent_AutocompleteErrorEvent() throws Exception { test("AutocompleteErrorEvent", "AutocompleteErrorEvent"); } @@ -5750,8 +5749,7 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts("false") public void _Event_AutocompleteErrorEvent() throws Exception { test("Event", "AutocompleteErrorEvent"); } 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 2016-08-16 16:38:08 UTC (rev 12918) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java 2016-08-17 09:10:17 UTC (rev 12919) @@ -3000,6 +3000,28 @@ * if the test fails */ @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _PerformanceObserverEntryList_PerformanceObserverEntryList() throws Exception { + test("PerformanceObserverEntryList", "PerformanceObserverEntryList"); + } + + /** + * @throws Exception + * if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _PerformanceObserver_PerformanceObserver () throws Exception { + test("PerformanceObserver", "PerformanceObserver"); + } + + /** + * @throws Exception + * if the test fails + */ + @Test @Alerts("true") public void _PerformanceResourceTiming_PerformanceResourceTiming() throws Exception { test("PerformanceResourceTiming", "PerformanceResourceTiming"); @@ -3199,8 +3221,7 @@ * if the test fails */ @Test - @Alerts(DEFAULT = "false", - CHROME = "true") + @Alerts("false") public void _ReadableByteStream_ReadableByteStream() throws Exception { test("ReadableByteStream", "ReadableByteStream"); } |