aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen/HTMLDocument.webidl
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2013-10-21 19:51:12 +0200
committerMs2ger <ms2ger@gmail.com>2013-10-21 19:51:12 +0200
commite418e4d830f9cdbda7db7ff0e46320e37933589a (patch)
tree0af20d1251f295f2719812c9f0d8948154f3c278 /src/components/script/dom/bindings/codegen/HTMLDocument.webidl
parent5c725b31af4632407c201ae2727698a06e0bfd78 (diff)
downloadservo-e418e4d830f9cdbda7db7ff0e46320e37933589a.tar.gz
servo-e418e4d830f9cdbda7db7ff0e46320e37933589a.zip
Remove no-op implementations from Document and HTMLDocument.
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLDocument.webidl')
-rw-r--r--src/components/script/dom/bindings/codegen/HTMLDocument.webidl60
1 files changed, 30 insertions, 30 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLDocument.webidl b/src/components/script/dom/bindings/codegen/HTMLDocument.webidl
index db7d2522474..bb209a20bf9 100644
--- a/src/components/script/dom/bindings/codegen/HTMLDocument.webidl
+++ b/src/components/script/dom/bindings/codegen/HTMLDocument.webidl
@@ -8,13 +8,13 @@ interface Selection;
[OverrideBuiltins]
interface HTMLDocument : Document {
- [Throws]
- attribute DOMString? domain;
- [Throws]
- attribute DOMString cookie;
+ // [Throws]
+ // attribute DOMString? domain;
+ // [Throws]
+ // attribute DOMString cookie;
// DOM tree accessors
- [Throws]
- getter object (DOMString name);
+ // [Throws]
+ // getter object (DOMString name);
/*[SetterThrows]
attribute HTMLElement? body;*/
readonly attribute HTMLHeadElement? head;
@@ -32,41 +32,41 @@ interface HTMLDocument : Document {
Document open(optional DOMString type = "text/html", optional DOMString replace = "");
[Throws]
WindowProxy open(DOMString url, DOMString name, DOMString features, optional boolean replace = false);*/
- [Throws]
- void close();
+ // [Throws]
+ // void close();
/*[Throws]
void write(DOMString... text);
[Throws]
void writeln(DOMString... text);*/
- [SetterThrows]
- attribute DOMString designMode;
- [Throws]
- boolean execCommand(DOMString commandId, optional boolean showUI = false,
- optional DOMString value = "");
- [Throws]
- boolean queryCommandEnabled(DOMString commandId);
- [Throws]
- boolean queryCommandIndeterm(DOMString commandId);
- [Throws]
- boolean queryCommandState(DOMString commandId);
- boolean queryCommandSupported(DOMString commandId);
- [Throws]
- DOMString queryCommandValue(DOMString commandId);
+ // [SetterThrows]
+ // attribute DOMString designMode;
+ // [Throws]
+ // boolean execCommand(DOMString commandId, optional boolean showUI = false,
+ // optional DOMString value = "");
+ // [Throws]
+ // boolean queryCommandEnabled(DOMString commandId);
+ // [Throws]
+ // boolean queryCommandIndeterm(DOMString commandId);
+ // [Throws]
+ // boolean queryCommandState(DOMString commandId);
+ // boolean queryCommandSupported(DOMString commandId);
+ // [Throws]
+ // DOMString queryCommandValue(DOMString commandId);
- [TreatNullAs=EmptyString] attribute DOMString fgColor;
- [TreatNullAs=EmptyString] attribute DOMString linkColor;
- [TreatNullAs=EmptyString] attribute DOMString vlinkColor;
- [TreatNullAs=EmptyString] attribute DOMString alinkColor;
- [TreatNullAs=EmptyString] attribute DOMString bgColor;
+ // [TreatNullAs=EmptyString] attribute DOMString fgColor;
+ // [TreatNullAs=EmptyString] attribute DOMString linkColor;
+ // [TreatNullAs=EmptyString] attribute DOMString vlinkColor;
+ // [TreatNullAs=EmptyString] attribute DOMString alinkColor;
+ // [TreatNullAs=EmptyString] attribute DOMString bgColor;
readonly attribute HTMLCollection anchors;
readonly attribute HTMLCollection applets;
- void clear();
+ // void clear();
- [Throws]
- readonly attribute object all;
+ // [Throws]
+ // readonly attribute object all;
// https://dvcs.w3.org/hg/editing/raw-file/tip/editing.html#selections
/*[Throws]