Bug 1359346 - Implement custom element state;

https://dom.spec.whatwg.org/#concept-element-custom-element-state

Tag UXP Issue #1344
This commit is contained in:
Gaming4JC 2020-01-04 13:24:58 -05:00 committed by Roy Tam
commit cb89330bf3
3 changed files with 44 additions and 22 deletions

View file

@ -3550,6 +3550,9 @@ CreateHTMLElement(const GlobalObject& aGlobal, const JS::CallArgs& aCallArgs,
element = CreateHTMLElement(tag, nodeInfo.forget(), NOT_FROM_PARSER);
}
element->SetCustomElementData(
new CustomElementData(definition->mType, CustomElementData::State::eCustom));
return element.forget();
}