aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen/HTMLDocument.webidl
diff options
context:
space:
mode:
authorYoungmin Yoo <youngmin.yoo@samsung.com>2014-01-16 21:33:05 +0900
committerYoungmin Yoo <youngmin.yoo@samsung.com>2014-01-20 12:56:23 +0900
commit0523a7dfe9d439f10fb05a1ccb08f22517ede280 (patch)
tree01302771785810b0e88ff81bfa190f9fa25a72e1 /src/components/script/dom/bindings/codegen/HTMLDocument.webidl
parent897e037db3fac6a245de2b35a37faabc202e4609 (diff)
downloadservo-0523a7dfe9d439f10fb05a1ccb08f22517ede280.tar.gz
servo-0523a7dfe9d439f10fb05a1ccb08f22517ede280.zip
Move webidl files to dom/webidl
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLDocument.webidl')
-rw-r--r--src/components/script/dom/bindings/codegen/HTMLDocument.webidl74
1 files changed, 0 insertions, 74 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLDocument.webidl b/src/components/script/dom/bindings/codegen/HTMLDocument.webidl
deleted file mode 100644
index f735e4f5326..00000000000
--- a/src/components/script/dom/bindings/codegen/HTMLDocument.webidl
+++ /dev/null
@@ -1,74 +0,0 @@
-/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this file,
- * You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-interface Selection;
-
-[OverrideBuiltins]
-interface HTMLDocument : Document {
- // [Throws]
- // attribute DOMString? domain;
- // [Throws]
- // attribute DOMString cookie;
- // DOM tree accessors
- // [Throws]
- // getter object (DOMString name);
- /*[SetterThrows]
- attribute HTMLElement? body;*/
- // readonly attribute HTMLHeadElement? head;
- readonly attribute HTMLCollection images;
- readonly attribute HTMLCollection embeds;
- readonly attribute HTMLCollection plugins;
- readonly attribute HTMLCollection links;
- readonly attribute HTMLCollection forms;
- readonly attribute HTMLCollection scripts;
- /*NodeList getElementsByName(DOMString elementName);
- NodeList getItems(optional DOMString typeNames = ""); // microdata*/
-
- // dynamic markup insertion
- /*[Throws]
- 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 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);
-
- // [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();
-
- // [Throws]
- // readonly attribute object all;
-
- // https://dvcs.w3.org/hg/editing/raw-file/tip/editing.html#selections
- /*[Throws]
- Selection getSelection();*/
-};