| # Copyright 2018 The Chromium Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| # Fuzzer dictionary for URI template parser | |
| # Variable expressions | |
| "{foo}" | |
| "{+foo}" | |
| "{#foo}" | |
| "{.foo}" | |
| "{/foo}" | |
| "{;foo}" | |
| "{?foo}" | |
| "{&foo}" | |
| "{foo,bar}" | |
| "{?foo,bar,baz}" | |
| "?{foo,bar,baz}" | |
| # Variable names | |
| "foo" | |
| "bar" | |
| "baz" | |
| # Variable values | |
| " " | |
| "%" | |
| "%31" | |
| "\x80" | |
| # Magic end of string marker used by FuzzedDataProvider | |
| "\\a" |