1# Copyright 2018 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# Fuzzer dictionary for URI template parser 6 7# Variable expressions 8"{foo}" 9"{+foo}" 10"{#foo}" 11"{.foo}" 12"{/foo}" 13"{;foo}" 14"{?foo}" 15"{&foo}" 16"{foo,bar}" 17"{?foo,bar,baz}" 18"?{foo,bar,baz}" 19 20# Variable names 21"foo" 22"bar" 23"baz" 24 25# Variable values 26" " 27"%" 28"%31" 29"\x80" 30 31# Magic end of string marker used by FuzzedDataProvider 32"\\a" 33