0

//# sourceURLFirefox 24 でコメントが機能しません。

ここにtest.htmlがあります:

<html>
<script src="test.js"></script>

そして、ここにtest.jsがあります:

document.write('<p>hello</p>');

//# sourceURL=one.js

var fn;

fn = eval("(function two() { console.log(1); })\n//# sourceURL=two.js");
fn.call();

fn = new Function([], "console.log(2);\n//# sourceURL=three.js");
fn.call();

これが機能する場合、Firefox デバッガーone.jsに 、two.js、およびの 3 つのファイルが表示されるはずthree.jsです。ただし、デバッガーには 1 つのファイルが表示されますtest.js

Firefox デバッガー

私が見逃したものについての手がかりはありますか?

4

1 に答える 1