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.
5 function create(manifest_url
) {
6 var embed
= load_util
.embed(manifest_url
);
7 simple_test
.addTestListeners(embed
);
8 document
.body
.appendChild(embed
);
11 function documentLoaded() {
12 create('extension_validation_cache.nmf');
15 document
.addEventListener('DOMContentLoaded', documentLoaded
);