blob: 1db4c4831dd6ff46efdb940b6ea0d62c7bc345f2 [file] [log] [blame]
// 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);
}