summaryrefslogtreecommitdiffstats
path: root/dom/interfaces/stylesheets
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/interfaces/stylesheets
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/interfaces/stylesheets')
-rw-r--r--dom/interfaces/stylesheets/moz.build14
-rw-r--r--dom/interfaces/stylesheets/nsIDOMMediaList.idl28
-rw-r--r--dom/interfaces/stylesheets/nsIDOMStyleSheet.idl26
-rw-r--r--dom/interfaces/stylesheets/nsIDOMStyleSheetList.idl22
4 files changed, 90 insertions, 0 deletions
diff --git a/dom/interfaces/stylesheets/moz.build b/dom/interfaces/stylesheets/moz.build
new file mode 100644
index 000000000..9037bd24f
--- /dev/null
+++ b/dom/interfaces/stylesheets/moz.build
@@ -0,0 +1,14 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# 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/.
+
+XPIDL_SOURCES += [
+ 'nsIDOMMediaList.idl',
+ 'nsIDOMStyleSheet.idl',
+ 'nsIDOMStyleSheetList.idl',
+]
+
+XPIDL_MODULE = 'dom_stylesheets'
+
diff --git a/dom/interfaces/stylesheets/nsIDOMMediaList.idl b/dom/interfaces/stylesheets/nsIDOMMediaList.idl
new file mode 100644
index 000000000..2e2290e49
--- /dev/null
+++ b/dom/interfaces/stylesheets/nsIDOMMediaList.idl
@@ -0,0 +1,28 @@
+/* -*- 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/. */
+
+#include "domstubs.idl"
+
+/**
+ * The nsIDOMMediaList interface is a datatype for a list of media
+ * types in the Document Object Model.
+ *
+ * For more information on this interface please see
+ * http://www.w3.org/TR/DOM-Level-2-Style
+ */
+
+[uuid(9b0c2ed7-111c-4824-adf9-ef0da6dad371)]
+interface nsIDOMMediaList : nsISupports
+{
+ attribute DOMString mediaText;
+ // raises(DOMException) on setting
+
+ readonly attribute unsigned long length;
+ DOMString item(in unsigned long index);
+ void deleteMedium(in DOMString oldMedium)
+ raises(DOMException);
+ void appendMedium(in DOMString newMedium)
+ raises(DOMException);
+};
diff --git a/dom/interfaces/stylesheets/nsIDOMStyleSheet.idl b/dom/interfaces/stylesheets/nsIDOMStyleSheet.idl
new file mode 100644
index 000000000..e2aafa8e7
--- /dev/null
+++ b/dom/interfaces/stylesheets/nsIDOMStyleSheet.idl
@@ -0,0 +1,26 @@
+/* -*- 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/. */
+
+#include "domstubs.idl"
+
+/**
+ * The nsIDOMStyleSheet interface is a datatype for a style sheet in
+ * the Document Object Model.
+ *
+ * For more information on this interface please see
+ * http://www.w3.org/TR/DOM-Level-2-Style
+ */
+
+[uuid(a6cf9080-15b3-11d2-932e-00805f8add32)]
+interface nsIDOMStyleSheet : nsISupports
+{
+ readonly attribute DOMString type;
+ attribute boolean disabled;
+ readonly attribute nsIDOMNode ownerNode;
+ readonly attribute nsIDOMStyleSheet parentStyleSheet;
+ readonly attribute DOMString href;
+ readonly attribute DOMString title;
+ readonly attribute nsIDOMMediaList media;
+};
diff --git a/dom/interfaces/stylesheets/nsIDOMStyleSheetList.idl b/dom/interfaces/stylesheets/nsIDOMStyleSheetList.idl
new file mode 100644
index 000000000..1adbb915d
--- /dev/null
+++ b/dom/interfaces/stylesheets/nsIDOMStyleSheetList.idl
@@ -0,0 +1,22 @@
+/* -*- 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/. */
+
+#include "domstubs.idl"
+
+/**
+ * The nsIDOMStyleSheetList interface is a datatype for a style sheet
+ * list in the Document Object Model.
+ *
+ * For more information on this interface please see
+ * http://www.w3.org/TR/DOM-Level-2-Style
+ */
+
+[uuid(0e424250-ac2a-4fe2-bccd-a45824af090e)]
+interface nsIDOMStyleSheetList : nsISupports
+{
+ readonly attribute unsigned long length;
+ [binaryname(SlowItem)]
+ nsIDOMStyleSheet item(in unsigned long index);
+};