Bug 1136341 - fix source actors representing inline scripts in XUL files so breakpoints work r=ejpbruel

--HG--
extra : rebase_source : 95f75743470a96f46e9dcb527f70d9f0d2c3253a
This commit is contained in:
James Long 2015-03-24 10:01:00 -07:00
Родитель b2a7f5ef69
Коммит baf59606e2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -278,7 +278,7 @@ TabSources.prototype = {
if (url) {
try {
let urlInfo = Services.io.newURI(url, null, null).QueryInterface(Ci.nsIURL);
if (urlInfo.fileExtension === "html") {
if (urlInfo.fileExtension === "html" || urlInfo.fileExtension === "xml") {
spec.isInlineSource = true;
}
else if (urlInfo.fileExtension === "js") {