blob: 292ac94b871a9ba7b39f1c9da82d6153dffbd469 [file] [log] [blame]
<!--
Copyright 2020 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!DOCTYPE html>
<meta charset="utf-8">
<title>Dynamic loading of files</title>
<script>
window.go = async function() {
await import('./minified-sourcecode.js');
eval(`function foo() {}
//# sourceURL=${new URL('evalSourceURL.js', window.location.href).href}
`);
};
</script>