chromium/third_party/blink/web_tests/http/tests/security/subresourceIntegrity/subresource-integrity-hash-function-priority.html

<!DOCTYPE html>
<html>
    <head>
        <title>Priority of stronger hash functions</title>
    </head>
    <body>
        <script src="/resources/testharness.js"></script>
        <script src="/resources/testharnessreport.js"></script>
        <script>
            setup({single_test: true});

            function scriptError() {
                done();
            };

            function success() {
                assert_unreached('Script loaded.');
                done();
            };
        </script>
        <script src="call-success.js" integrity="sha256-B0/62fJSJFrdjEFR9ba04m/D+LHQ+zG6PGcaR0Trpxg= sha512-deadbeef" onerror="scriptError();""></script>
    </body>
</html>