Bug 1122445 - CSP: don't normalize path for CSP checks - test updates (r=sstamm)

This commit is contained in:
Christoph Kerschbaumer 2015-01-21 13:52:28 -08:00
Родитель ba632b1091
Коммит 5a43979bbc
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -62,6 +62,12 @@ var policies = [
["blocked", "test1.example.com:8888/tests"],
["blocked", "test1.example.com:8888/tests/dom/base/test/csp"],
["blocked", "test1.example.com:8888/tests/dom/base/test/csp/file_csp_path_matching.py"],
// case insensitive matching for scheme and host, but case sensitive matching for paths
["allowed", "HTTP://test1.EXAMPLE.com/tests/"],
["allowed", "test1.EXAMPLE.com/tests/"],
["blocked", "test1.example.com/tests/dom/base/test/CSP/?foo=val"],
["blocked", "test1.example.com/tests/dom/base/test/csp/FILE_csp_path_matching.js?foo=val"],
]
var counter = 0;