mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-31 03:51:38 +09:00
Bug 1378079 - Part 2: Introduce throw-on-dynamic-markup-insertion counter.
Per spec, document objects have a throw-on-dynamic-markup-insertion counter, which is used in conjunction with the create an element for the token algorithm to prevent custom element constructors from being able to use document.open(), document.close(), and document.write() when they are invoked by the parser. Tag UXP Issue #1344
This commit is contained in:
parent
efcb40fb3d
commit
a3b5d98af7
3 changed files with 54 additions and 1 deletions
|
|
@ -1401,6 +1401,11 @@ nsHTMLDocument::Open(JSContext* cx,
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
if (ShouldThrowOnDynamicMarkupInsertion()) {
|
||||
aError.Throw(NS_ERROR_DOM_INVALID_STATE_ERR);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// Set up the content type for insertion
|
||||
nsAutoCString contentType;
|
||||
contentType.AssignLiteral("text/html");
|
||||
|
|
@ -1608,6 +1613,11 @@ nsHTMLDocument::Close(ErrorResult& rv)
|
|||
return;
|
||||
}
|
||||
|
||||
if (ShouldThrowOnDynamicMarkupInsertion()) {
|
||||
rv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!mParser || !mParser->IsScriptCreated()) {
|
||||
return;
|
||||
}
|
||||
|
|
@ -1683,6 +1693,10 @@ nsHTMLDocument::WriteCommon(JSContext *cx,
|
|||
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
||||
}
|
||||
|
||||
if (ShouldThrowOnDynamicMarkupInsertion()) {
|
||||
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
||||
}
|
||||
|
||||
if (mParserAborted) {
|
||||
// Hixie says aborting the parser doesn't undefine the insertion point.
|
||||
// However, since we null out mParser in that case, we track the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue