Am 18/01/2017 um 23:28 schrieb Julen Ruiz Aizpuru:
> Hi Jeff,
>
> Thanks for sharing, it's an interesting update.
>
> Out of curiosity, is there a link/info to learn more about the performance
> issues the JS implementation of l20n had in the context of Firefox?
There's a few, but in the end, one thing that has hurt us was to call
into DOM APIs of many XUL elements.
Reflecting a single XUL element into JS is quite a bit of computing work
due to XBL and CSS binding that XBL, so that turned out to be hard.
We probably fix this problem by creating an API that let's us set
attributes and textContent of a list of elements with one call.
Axel