Index: core/html/HTMLDocument.idl |
diff --git a/core/html/HTMLDocument.idl b/core/html/HTMLDocument.idl |
index 04ba97f3187cee75943a5b7efb1527e29f900b10..e166240d089267d56a6893a4d0de4a2074585a13 100644 |
--- a/core/html/HTMLDocument.idl |
+++ b/core/html/HTMLDocument.idl |
@@ -18,18 +18,15 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
-[ |
- // FIXME: Oilpan: remove this once Node specifies WillBeGarbageCollected. |
- WillBeGarbageCollected |
-] interface HTMLDocument : Document { |
+interface HTMLDocument : Document { |
[Custom, CustomElementCallbacks] void open(); |
[RaisesException] void close(); |
// We support multiple DOMString arguments to match FF / IE, e.g.: |
// document.write("a", "b", "c") --> document.write("abc") |
// document.write() --> document.write("") |
- [CallWith=ActiveWindow,LogActivity, CustomElementCallbacks, RaisesException] void write(DOMString... text); |
- [CallWith=ActiveWindow, LogActivity, CustomElementCallbacks, RaisesException] void writeln(DOMString... text); |
+ [CallWith=ActiveWindow, CustomElementCallbacks, RaisesException] void write(DOMString... text); |
+ [CallWith=ActiveWindow, CustomElementCallbacks, RaisesException] void writeln(DOMString... text); |
// Extensions |