From: <rb...@us...> - 2018-06-20 06:59:27
|
Revision: 15367 http://sourceforge.net/p/htmlunit/code/15367 Author: rbri Date: 2018-06-20 06:59:19 +0000 (Wed, 20 Jun 2018) Log Message: ----------- ff60 support (wip) Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/xml/XMLHttpRequestCORSTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/xml/XMLHttpRequestCORSTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/xml/XMLHttpRequestCORSTest.java 2018-06-20 06:56:40 UTC (rev 15366) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/xml/XMLHttpRequestCORSTest.java 2018-06-20 06:59:19 UTC (rev 15367) @@ -594,8 +594,7 @@ * @throws Exception if the test fails. */ @Test - @Alerts(DEFAULT = {"false", "true", "false", "true"}, - FF60 = {"false", "true", "false", "ex: open", "true"}) + @Alerts({"false", "true", "false", "true"}) public void withCredentials_setBeforeOpenSync() throws Exception { final String html = "<html><head>\n" + "<script>\n" @@ -675,8 +674,7 @@ * @throws Exception if the test fails. */ @Test - @Alerts(DEFAULT = {"false", "false", "true", "false"}, - FF60 = {"false", "false", "ex: withCredentials=true", "ex: withCredentials=false"}) + @Alerts({"false", "false", "true", "false"}) public void withCredentials_setAfterOpenSync() throws Exception { final String html = "<html><head>\n" + "<script>\n" @@ -709,8 +707,7 @@ * @throws Exception if the test fails. */ @Test - @Alerts(DEFAULT = {"false", "false", "true", "false"}, - FF60 = {"false", "false", "ex: withCredentials=true", "ex: withCredentials=false"}) + @Alerts({"false", "false", "true", "false"}) public void withCredentials_setAfterOpenAsync() throws Exception { final String html = "<html><head>\n" + "<script>\n" |