| <!-- | |
| 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> |