mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #15303 - nox:open-your-heart-to-eternal-dimension, r=jdm
Implement document.open and document.close <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15303) <!-- Reviewable:end -->
This commit is contained in:
commit
fa60ce62b8
50 changed files with 412 additions and 232 deletions
|
@ -111,9 +111,11 @@ partial /*sealed*/ interface Document {
|
|||
readonly attribute HTMLScriptElement? currentScript;
|
||||
|
||||
// dynamic markup insertion
|
||||
// Document open(optional DOMString type = "text/html", optional DOMString replace = "");
|
||||
[Throws]
|
||||
Document open(optional DOMString type = "text/html", optional DOMString replace = "");
|
||||
// WindowProxy open(DOMString url, DOMString name, DOMString features, optional boolean replace = false);
|
||||
// void close();
|
||||
[Throws]
|
||||
void close();
|
||||
[Throws]
|
||||
void write(DOMString... text);
|
||||
[Throws]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue