blob: 0e845c14662dd37676e7a7a1716341e649976032 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
// Original source code for the cross-domain source map test.
// The generated file was made with
// webpack --devtool source-map code_cross_domain.js code_bundle_cross_domain.js
// ... and then the bundle was edited to replace the generated
// sourceMappingURL.
"use strict";
function f() {
console.log("anything will do");
}
f();
// Avoid script GC.
window.f = f;
|