//# sourceURL
Firefox 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
。
私が見逃したものについての手がかりはありますか?