1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
7 function testCreateCacheKey() {
8 var key = Cache.createKey({url: 'http://example.com/image.jpg'});
12 function testNotCreateCacheKey() {
13 var key = Cache.createKey({url: 'data:xxx'});
16 var key = Cache.createKey({url: 'DaTa:xxx'});