Revision 3c940291e9e8c30e8c7c401426160e3531639403 authored by Yoav Weiss on 27 April 2018, 09:15:43 UTC, committed by Blink WPT Bot on 27 April 2018, 09:33:13 UTC
Currently `Request.destination` is set to "unknown" prefetch,
but that was recently changed:
Issue: https://github.com/whatwg/fetch/issues/658
PR: https://github.com/whatwg/fetch/pull/659

This CL aligns the destination values to the spec change.

Bug: 832105
Change-Id: Ib9f21dcc6cf0ace27b7a810d3670cddc45b3b74f
Reviewed-on: https://chromium-review.googlesource.com/1029858
Commit-Queue: Yoav Weiss <yoav@yoav.ws>
Reviewed-by: Charlie Harrison <csharrison@chromium.org>
Reviewed-by: Yutaka Hirano <yhirano@chromium.org>
Cr-Commit-Position: refs/heads/master@{#554341}
1 parent c70b18e
Raw File
test_successes_HMAC.https.html
<!DOCTYPE html>
<meta charset=utf-8>
<meta name="timeout" content="long">
<title>WebCryptoAPI: generateKey() Successful Calls</title>
<link rel="author" title="Charles Engelke" href="mailto:w3c@engelke.com">
<link rel="help" href="https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-generateKey">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<script src="/WebCryptoAPI/util/helpers.js"></script>
<script src="successes.js"></script>

<h1>generateKey Tests for Good Parameters</h1>
<p>
    <strong>Warning!</strong> RSA key generation is intrinsically
    very slow, so the related tests can take up to
    several minutes to complete, depending on browser!
</p>

<div id="log"></div>
<script>
run_test(["HMAC"]);
</script>
back to top