mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Auto merge of #14361 - nox:write, r=jdm
Implement document.write (fixes #3704) <!-- 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/14361) <!-- Reviewable:end -->
This commit is contained in:
commit
00f30d1b7e
61 changed files with 369 additions and 363 deletions
|
@ -114,8 +114,10 @@ partial /*sealed*/ interface Document {
|
|||
// Document open(optional DOMString type = "text/html", optional DOMString replace = "");
|
||||
// WindowProxy open(DOMString url, DOMString name, DOMString features, optional boolean replace = false);
|
||||
// void close();
|
||||
// void write(DOMString... text);
|
||||
// void writeln(DOMString... text);
|
||||
[Throws]
|
||||
void write(DOMString... text);
|
||||
[Throws]
|
||||
void writeln(DOMString... text);
|
||||
|
||||
// user interaction
|
||||
readonly attribute Window?/*Proxy?*/ defaultView;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue