Bug 1473380 [wpt PR 11782] - Unflake wpt/fetch/security/redirect-to-url-with-credentials.https.html, a=testonly

Automatic update from web-platform-testsUnflake wpt/fetch/security/redirect-to-url-with-credentials.https.html

The test is flaky because of step_timeout. This CL removes that, and
marks the test as consistent TIMEOUT.

Bug: 846497, 626703
Change-Id: Iaa8b0e275d1d4fc9db6cb77db5399d06744fd60a
Reviewed-on: https://chromium-review.googlesource.com/1125548
Reviewed-by: Adam Rice <ricea@chromium.org>
Commit-Queue: Yutaka Hirano <yhirano@chromium.org>
Cr-Commit-Position: refs/heads/master@{#572688}

--

wpt-commits: 250d8640a9c8e43a13cc02595b72097bed69695d
wpt-pr: 11782
This commit is contained in:
Yutaka Hirano 2018-07-07 07:59:11 +00:00 committed by James Graham
parent 77a942d5db
commit fe1046de07
2 changed files with 1 additions and 2 deletions

View File

@ -572478,7 +572478,7 @@
"testharness"
],
"fetch/security/redirect-to-url-with-credentials.https.html": [
"6eb9c75887afd084c12dee609dd4c4a7cf7a6a5e",
"a74c316c593a1abe293e13198c56927481382f15",
"testharness"
],
"fetch/security/support/embedded-credential-window.sub.html": [

View File

@ -60,7 +60,6 @@ promise_test(async (test) => {
iframe.src = frameURL;
iframe.onload = resolve;
iframe.onerror = (e) => reject(e);
test.step_timeout(() => reject("Frame loading timed out"), 5000);
});
document.body.removeChild(iframe);
}, "Frame loading after a redirect with an URL containing credentials");