diff options
author | win7-7 <win7-7@users.noreply.github.com> | 2019-05-24 14:05:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-24 14:05:09 +0300 |
commit | a371a69a73ebcd542ceb42927ce2859b0d326c98 (patch) | |
tree | ef5687420900fb770eed0460430404bcafd96ffb /parser | |
parent | 58ff91d97e90094e18ec335a5e19bbd95fff0bd9 (diff) | |
download | uxp-a371a69a73ebcd542ceb42927ce2859b0d326c98.tar.gz |
make HTML parser to use faster atomization in main thread
Diffstat (limited to 'parser')
-rw-r--r-- | parser/html/nsHtml5TreeOperation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parser/html/nsHtml5TreeOperation.h b/parser/html/nsHtml5TreeOperation.h index 0b2970738e..a93f44c46f 100644 --- a/parser/html/nsHtml5TreeOperation.h +++ b/parser/html/nsHtml5TreeOperation.h @@ -108,7 +108,7 @@ class nsHtml5TreeOperation { } nsAutoString str; aAtom->ToString(str); - return NS_Atomize(str); + return NS_AtomizeMainThread(str); } static nsresult AppendTextToTextNode(const char16_t* aBuffer, |