@@ -156,6 +156,8 @@ public void basicHistoryNavigationWithoutAProxy() {
156
156
*/
157
157
@ Test
158
158
@ NeedsLocalEnvironment
159
+ @ Ignore (value = CHROME ,
160
+ reason = "https://developers.google.com/web/updates/2020/07/referrer-policy-new-chrome-default" )
159
161
public void crossDomainHistoryNavigationWithoutAProxy () {
160
162
String page1Url = server1 .whereIs (PAGE_1 ) + "?next=" + encode (server2 .whereIs (PAGE_2 ));
161
163
String page2Url = server2 .whereIs (PAGE_2 ) + "?next=" + encode (server1 .whereIs (PAGE_3 ));
@@ -198,6 +200,8 @@ public void basicHistoryNavigationWithADirectProxy() {
198
200
*/
199
201
@ Test
200
202
@ NeedsLocalEnvironment
203
+ @ Ignore (value = CHROME ,
204
+ reason = "https://developers.google.com/web/updates/2020/07/referrer-policy-new-chrome-default" )
201
205
public void crossDomainHistoryNavigationWithADirectProxy () {
202
206
proxyServer .setPacFileContents ("function FindProxyForURL(url, host) { return 'DIRECT'; }" );
203
207
WebDriver driver = createDriver (proxyServer .whereIs ("/pac.js" ));
@@ -221,6 +225,8 @@ public void crossDomainHistoryNavigationWithADirectProxy() {
221
225
*/
222
226
@ Test
223
227
@ NeedsLocalEnvironment
228
+ @ Ignore (value = CHROME ,
229
+ reason = "https://developers.google.com/web/updates/2020/07/referrer-policy-new-chrome-default" )
224
230
public void crossDomainHistoryNavigationWithAProxiedHost () {
225
231
proxyServer .setPacFileContents (Joiner .on ('\n' ).join (
226
232
"function FindProxyForURL(url, host) {" ,
@@ -251,6 +257,8 @@ public void crossDomainHistoryNavigationWithAProxiedHost() {
251
257
*/
252
258
@ Test
253
259
@ NeedsLocalEnvironment
260
+ @ Ignore (value = CHROME ,
261
+ reason = "https://developers.google.com/web/updates/2020/07/referrer-policy-new-chrome-default" )
254
262
public void crossDomainHistoryNavigationWhenProxyInterceptsHostRequests () {
255
263
proxyServer .setPacFileContents (Joiner .on ('\n' ).join (
256
264
"function FindProxyForURL(url, host) {" ,
0 commit comments