1// Copyright 2017 The Chromium Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5// This is a HSTS preloaded list used by the unittests. For more information 6// on the content and format see the comments in 7// transport_security_state_static.json. 8 9{ 10 "entries": [ 11 { 12 "name": "example.com", 13 "policy": "test", 14 "mode": "force-https", 15 "include_subdomains": true 16 }, { 17 "name": "hpkp.example.com", 18 "policy": "test" 19 }, { 20 "name": "example.org", 21 "policy": "test", 22 "mode": "force-https" 23 }, { 24 "name": "badssl.com", 25 "policy": "test", 26 "include_subdomains": true 27 }, { 28 "name": "mix.badssl.com", 29 "policy": "test", 30 "mode": "force-https", 31 "include_subdomains": false 32 }, { 33 // Keep this a simple entry in the context of TrieWriter::IsSimpleEntry(). 34 "name": "simple-entry.example.com", 35 "policy": "test", 36 "mode": "force-https", 37 "include_subdomains": true 38 } 39 ] 40} 41