Bug 1352532 - Part 2: Allocate more DOM nodes in the nursery r=smaug

Differential Revision: https://phabricator.services.mozilla.com/D144697
This commit is contained in:
Jon Coppeard 2022-05-30 14:24:52 +00:00
Родитель dbe179c474
Коммит b94e6a34d4
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -11,7 +11,7 @@
* and create derivative works of this document.
*/
[Exposed=Window]
[Exposed=Window, ProbablyShortLivingWrapper]
interface HTMLDivElement : HTMLElement {
[HTMLConstructor] constructor();
};

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

@ -12,7 +12,7 @@
*/
// http://www.whatwg.org/specs/web-apps/current-work/#the-span-element
[Exposed=Window]
[Exposed=Window, ProbablyShortLivingWrapper]
interface HTMLSpanElement : HTMLElement {
[HTMLConstructor] constructor();
};

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

@ -10,7 +10,7 @@
* liability, trademark and document use rules apply.
*/
[Exposed=Window]
[Exposed=Window, ProbablyShortLivingWrapper]
interface Text : CharacterData {
[Throws]
constructor(optional DOMString data = "");