summaryrefslogtreecommitdiff
path: root/dom/webidl/TreeWalker.webidl
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2022-02-12 13:53:59 -0600
committerMatt A. Tobin <email@mattatobin.com>2022-02-12 13:53:59 -0600
commitc054e324210895e7e2c5b3e84437cba43f201ec8 (patch)
tree00735055ed5ee588f71e147c5ae27363349f1687 /dom/webidl/TreeWalker.webidl
parent5da550a67c876bf06690439192db5bef2c54cb20 (diff)
downloadpalemoon-gre-c054e324210895e7e2c5b3e84437cba43f201ec8.tar.gz
Prep for GRE
Diffstat (limited to 'dom/webidl/TreeWalker.webidl')
-rw-r--r--dom/webidl/TreeWalker.webidl37
1 files changed, 0 insertions, 37 deletions
diff --git a/dom/webidl/TreeWalker.webidl b/dom/webidl/TreeWalker.webidl
deleted file mode 100644
index 2cd302f00..000000000
--- a/dom/webidl/TreeWalker.webidl
+++ /dev/null
@@ -1,37 +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/.
- *
- * The origin of this IDL file is
- * http://www.w3.org/TR/2012/WD-dom-20120105/
- *
- * Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
- * liability, trademark and document use rules apply.
- */
-
-interface TreeWalker {
- [Constant]
- readonly attribute Node root;
- [Constant]
- readonly attribute unsigned long whatToShow;
- [Constant]
- readonly attribute NodeFilter? filter;
- [Pure, SetterThrows]
- attribute Node currentNode;
-
- [Throws]
- Node? parentNode();
- [Throws]
- Node? firstChild();
- [Throws]
- Node? lastChild();
- [Throws]
- Node? previousSibling();
- [Throws]
- Node? nextSibling();
- [Throws]
- Node? previousNode();
- [Throws]
- Node? nextNode();
-};