chromium/third_party/blink/web_tests/http/tests/inspector-protocol/network/blocked-setcookie-multiple-reasons-expected.txt

Verifies that we get multiple cookie blocked reasons when overwriting a Secure cookie over an insecure connection.
set-cookie that would overwrite secure cookie blocked set-cookies:[
    [0] : {
        blockedReasons : [
            [0] : SecureOnly
            [1] : OverwriteSecure
        ]
        cookie : {
            domain : cookie.test
            expires : -1
            httpOnly : false
            name : name
            path : /inspector-protocol/network/resources
            priority : Medium
            sameParty : false
            secure : true
            session : true
            size : 9
            sourcePort : 8000
            sourceScheme : Secure
            value : value
        }
        cookieLine : name=value; Secure
    }
]