blob: 1db4c4831dd6ff46efdb940b6ea0d62c7bc345f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2014 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.
'use strict';
function testCreateCacheKey() {
var key = Cache.createKey({url: 'http://example.com/image.jpg'});
assertTrue(!!key);
}
function testNotCreateCacheKey() {
var key = Cache.createKey({url: 'data:xxx'});
assertFalse(!!key);
var key = Cache.createKey({url: 'DaTa:xxx'});
assertFalse(!!key);
}
|