This commit is contained in:
Ryan VanderMeulen 2012-09-04 21:01:50 -04:00
Родитель 9509102724 26d9e20e39
Коммит 9d666dfae5
2 изменённых файлов: 5 добавлений и 5 удалений

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

@ -482,8 +482,8 @@
}
}
// Using Array.join() prevents lots of large intermediate strings from
// being created; instead, the result is created in one go.
// Using Array.join() avoids the overhead from lazy string concatenation.
// See http://blog.cdleary.com/2012/01/string-representation-in-spidermonkey/#ropes
let arr = [];
getHTML(this);
return arr.join("");
@ -526,8 +526,8 @@
}
}
// Using Array.join() prevents lots of large intermediate strings from
// being created; instead, the result is created in one go.
// Using Array.join() avoids the overhead from lazy string concatenation.
// See http://blog.cdleary.com/2012/01/string-representation-in-spidermonkey/#ropes
let text = [];
getText(this);
return text.join("");

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

@ -1,6 +1,6 @@
{
"talos.zip": {
"url": "http://build.mozilla.org/talos/zips/talos.38e088867f7b.zip",
"url": "http://build.mozilla.org/talos/zips/talos.2605620aa7fc.zip",
"path": ""
}
}