mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Implement document.write (fixes #3704)
This is a bit crude because of some missing utility methods on BufferQueue.
This commit is contained in:
parent
708ebdceee
commit
4d93ee134c
91 changed files with 235 additions and 585 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