mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 685798 - Node.parentElement, r=bz
This commit is contained in:
parent
9efa44eaaa
commit
586e545839
@ -509,6 +509,7 @@ _TEST_FILES2 = \
|
||||
test_bug682592.html \
|
||||
bug682592-subframe.html \
|
||||
bug682592-subframe-ref.html \
|
||||
test_bug685798.html \
|
||||
$(NULL)
|
||||
|
||||
_CHROME_FILES = \
|
||||
|
@ -48,7 +48,7 @@
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(6bdedbc5-681e-4570-a3dc-3685ed8d6e1e)]
|
||||
[scriptable, uuid(03da4bc9-1b9a-41dc-a1a4-32414d48d704)]
|
||||
interface nsIDOMAttr : nsIDOMNode
|
||||
{
|
||||
readonly attribute DOMString name;
|
||||
|
@ -49,7 +49,7 @@
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(f1eea89d-8af3-4c2a-90df-6c3a75cb5005)]
|
||||
[scriptable, uuid(08a05c75-23de-4937-a45b-89bdcbe4f467)]
|
||||
interface nsIDOMCDATASection : nsIDOMText
|
||||
{
|
||||
};
|
||||
|
@ -47,7 +47,7 @@
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(6ce64178-d600-4e5e-a33a-5bde69f05bd5)]
|
||||
[scriptable, uuid(cb75c251-afc7-444f-b2d6-b9635555f3ed)]
|
||||
interface nsIDOMCharacterData : nsIDOMNode
|
||||
{
|
||||
attribute DOMString data;
|
||||
|
@ -48,7 +48,7 @@
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(eaf04950-d409-41a0-a99d-2e4e43c1e33d)]
|
||||
[scriptable, uuid(cea49a35-dac9-4c4d-9830-4660abb3b6bc)]
|
||||
interface nsIDOMComment : nsIDOMCharacterData
|
||||
{
|
||||
};
|
||||
|
@ -63,7 +63,7 @@ interface nsIDOMCaretPosition;
|
||||
* http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html
|
||||
*/
|
||||
|
||||
[scriptable, uuid(903493d3-72b6-4416-b930-fbfc17ef1d87)]
|
||||
[scriptable, uuid(48ef69c6-844f-41ba-af66-17b338177a8b)]
|
||||
interface nsIDOMDocument : nsIDOMNode
|
||||
{
|
||||
readonly attribute nsIDOMDocumentType doctype;
|
||||
|
@ -48,7 +48,7 @@
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(06376ec5-7c91-45ad-a346-30a06a125935)]
|
||||
[scriptable, uuid(4a15eb0c-d5bc-4902-9d50-21b12cab47e7)]
|
||||
interface nsIDOMDocumentFragment : nsIDOMNode
|
||||
{
|
||||
};
|
||||
|
@ -49,7 +49,7 @@
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(bfd028d4-fbbd-4d69-8899-dbee1778dde2)]
|
||||
[scriptable, uuid(ac5fd4c5-6c5d-4dfc-878c-7d661aa676de)]
|
||||
interface nsIDOMDocumentType : nsIDOMNode
|
||||
{
|
||||
readonly attribute DOMString name;
|
||||
|
@ -47,7 +47,7 @@
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(f220e259-5c41-4cca-a38b-7267ffa874aa)]
|
||||
[scriptable, uuid(56aaaf03-f8f1-4c06-9cb5-f3e33a39e5c3)]
|
||||
interface nsIDOMElement : nsIDOMNode
|
||||
{
|
||||
readonly attribute DOMString tagName;
|
||||
|
@ -52,7 +52,7 @@ interface nsIDOMUserDataHandler;
|
||||
* http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html
|
||||
*/
|
||||
|
||||
[scriptable, uuid(45e7ac3c-27d9-49bc-b3a3-dfc573f6f649)]
|
||||
[scriptable, uuid(c8ac3f81-63e1-4c31-8543-70a656642789)]
|
||||
interface nsIDOMNode : nsISupports
|
||||
{
|
||||
const unsigned short ELEMENT_NODE = 1;
|
||||
|
@ -48,7 +48,7 @@
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(1c3118cc-4d21-40cc-96c4-9d46facee5d1)]
|
||||
[scriptable, uuid(5964f639-1183-487d-a87d-4c93111eae85)]
|
||||
interface nsIDOMProcessingInstruction : nsIDOMNode
|
||||
{
|
||||
readonly attribute DOMString target;
|
||||
|
@ -47,7 +47,7 @@
|
||||
* http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html
|
||||
*/
|
||||
|
||||
[scriptable, uuid(04a1ec2b-491f-4a80-8db4-694c37e31a6f)]
|
||||
[scriptable, uuid(92b0df87-78a1-4e3b-a23c-d0c5bb2b83f9)]
|
||||
interface nsIDOMText : nsIDOMCharacterData
|
||||
{
|
||||
nsIDOMText splitText(in unsigned long offset)
|
||||
|
@ -38,7 +38,7 @@
|
||||
|
||||
#include "nsIDOMDocument.idl"
|
||||
|
||||
[scriptable, uuid(f97b36ff-425f-4c87-b6dc-fcfcfb4d5c77)]
|
||||
[scriptable, uuid(e788e37b-9a89-4b3e-9593-c598e50695eb)]
|
||||
interface nsIDOMXMLDocument : nsIDOMDocument
|
||||
{
|
||||
// DOM Level 3 Load & Save, DocumentLS
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(768bfb39-f0ce-4f17-bad7-f0f722dc293a)]
|
||||
[scriptable, uuid(dfcf9a0b-2bc4-465b-b007-9c0e26aabc17)]
|
||||
interface nsIDOMHTMLAnchorElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString href;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(1840a15d-618e-4e22-a53e-56a3624b8ae3)]
|
||||
[scriptable, uuid(fe7107a3-d8ea-4ef5-a5b0-c358767ca243)]
|
||||
interface nsIDOMHTMLAppletElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(eeae849e-d9f6-4e66-a838-44deb9594bc1)]
|
||||
[scriptable, uuid(59e6d277-5468-4ff2-bc98-adecaf4e0aa8)]
|
||||
interface nsIDOMHTMLAreaElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString alt;
|
||||
|
@ -52,7 +52,7 @@
|
||||
* @status UNDER_DEVELOPMENT
|
||||
*/
|
||||
|
||||
[scriptable, uuid(f0d4977c-9632-4fab-bc9b-91c250a6ef96)]
|
||||
[scriptable, uuid(4b832a46-8c9d-4dda-aaa3-8ebeece2b13a)]
|
||||
interface nsIDOMHTMLAudioElement : nsIDOMHTMLMediaElement
|
||||
{
|
||||
// Setup the audio stream for writing
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(e8252870-aa63-4eaf-9d59-5e5ea014fdf3)]
|
||||
[scriptable, uuid(a348b00a-7e0e-4f61-97f8-9798d1c73971)]
|
||||
interface nsIDOMHTMLBRElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString clear;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(84ee3ce6-ea9c-4443-93a2-359c259ef218)]
|
||||
[scriptable, uuid(7549715a-0931-4fbd-a0b9-5a99f7a8d7f1)]
|
||||
interface nsIDOMHTMLBaseElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString href;
|
||||
|
@ -54,7 +54,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(9569e420-137a-4c7e-a880-288a81f78308)]
|
||||
[scriptable, uuid(6954f803-fc81-4300-bcad-e0854ef9a142)]
|
||||
interface nsIDOMHTMLBodyElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString aLink;
|
||||
|
@ -52,7 +52,7 @@
|
||||
|
||||
interface nsIDOMValidityState;
|
||||
|
||||
[scriptable, uuid(7a40902e-d0ce-41f2-bc46-e247e9662ea8)]
|
||||
[scriptable, uuid(a7740abf-dbef-4a5e-a8a8-be5809c5d851)]
|
||||
interface nsIDOMHTMLButtonElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean autofocus;
|
||||
|
@ -55,7 +55,7 @@
|
||||
interface nsIDOMFile;
|
||||
interface nsIVariant;
|
||||
|
||||
[scriptable, uuid(010d8e6f-86ba-47ad-a04f-1a4d75f1caf8)]
|
||||
[scriptable, uuid(b00ad90f-b83a-400d-87b8-704503a65061)]
|
||||
interface nsIDOMHTMLCanvasElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute unsigned long width;
|
||||
|
@ -46,7 +46,7 @@
|
||||
* @status UNDER_DEVELOPMENT
|
||||
*/
|
||||
|
||||
[scriptable, uuid(df4a19b4-81f1-412e-a971-fcbe7312a9b6)]
|
||||
[scriptable, uuid(c09f7b23-199c-4e5e-a8c1-48640725b8a2)]
|
||||
interface nsIDOMHTMLCommandElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString type;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(8c2e26d3-8ed4-4e13-abc8-46d7d2f7d300)]
|
||||
[scriptable, uuid(fe0a4ba1-99d4-4a22-87ad-f9f5e5ebc0b4)]
|
||||
interface nsIDOMHTMLDListElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean compact;
|
||||
|
@ -49,7 +49,7 @@
|
||||
|
||||
interface nsIDOMHTMLCollection;
|
||||
|
||||
[scriptable, uuid(11dacc1f-4abc-44a5-9c57-c0c3e833e387)]
|
||||
[scriptable, uuid(0ed2f7db-83ed-44a9-aeca-4995d0a39898)]
|
||||
interface nsIDOMHTMLDataListElement : nsIDOMHTMLElement
|
||||
{
|
||||
readonly attribute nsIDOMHTMLCollection options;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(3531a90c-cd39-4619-abad-71a961a58c54)]
|
||||
[scriptable, uuid(a7ce62d2-7b08-4289-a044-2aa568f03c75)]
|
||||
interface nsIDOMHTMLDirectoryElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean compact;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(616223f7-014d-4805-b524-ad6cf8536ac0)]
|
||||
[scriptable, uuid(2a2bbe83-9faf-460b-8fbe-e37630c6ca7f)]
|
||||
interface nsIDOMHTMLDivElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -47,7 +47,7 @@
|
||||
*/
|
||||
interface nsISelection;
|
||||
|
||||
[scriptable, uuid(efe95e19-f5df-4349-89fb-804ba016f0a2)]
|
||||
[scriptable, uuid(7587ce39-e939-4b86-838d-a1d04e4e04c0)]
|
||||
interface nsIDOMHTMLDocument : nsIDOMDocument
|
||||
{
|
||||
readonly attribute DOMString URL;
|
||||
|
@ -51,7 +51,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(c6e10ab6-ecf4-48e4-aeaa-37724307dfd5)]
|
||||
[scriptable, uuid(6ecb115c-8a7b-495b-958e-2ef5d8a50244)]
|
||||
interface nsIDOMHTMLElement : nsIDOMElement
|
||||
{
|
||||
attribute DOMString id;
|
||||
|
@ -47,7 +47,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/#the-embed-element
|
||||
*/
|
||||
|
||||
[scriptable, uuid(dec16079-b0e7-46b9-aafa-c7f0ebc9abc1)]
|
||||
[scriptable, uuid(b93fec38-9436-49c2-95ec-77cf1de8c38f)]
|
||||
interface nsIDOMHTMLEmbedElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -52,7 +52,7 @@
|
||||
|
||||
interface nsIDOMValidityState;
|
||||
|
||||
[scriptable, uuid(c989a733-40a6-4712-b0f0-944dd5ec4344)]
|
||||
[scriptable, uuid(95fce971-83b5-4f03-9dfd-4ef07306fa2a)]
|
||||
interface nsIDOMHTMLFieldSetElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean disabled;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(99875201-4f50-4e8a-a58e-dd39b9ff51e1)]
|
||||
[scriptable, uuid(e6b3c397-8227-4de2-bd7f-cd59aef8af9b)]
|
||||
interface nsIDOMHTMLFontElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString color;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(b7892cbf-a23b-460a-817a-798d490b12df)]
|
||||
[scriptable, uuid(7b859d90-6b01-4208-8922-7999653c7491)]
|
||||
interface nsIDOMHTMLFormElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString acceptCharset;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(e3f42587-847f-4743-8891-490b2066493d)]
|
||||
[scriptable, uuid(c5e51cd2-f862-4440-90da-dee5bf84cc2e)]
|
||||
interface nsIDOMHTMLFrameElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString frameBorder;
|
||||
|
@ -54,7 +54,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(d6872633-0f1c-4110-bf49-88713a3cad86)]
|
||||
[scriptable, uuid(0d6d7deb-4e8b-40fc-acf0-5f0f862d20e6)]
|
||||
interface nsIDOMHTMLFrameSetElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString cols;
|
||||
|
@ -51,7 +51,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(32342e24-b209-4f50-8518-f7af339d4ae2)]
|
||||
[scriptable, uuid(48d708c2-48ef-42c3-9101-8b2a68e42ace)]
|
||||
interface nsIDOMHTMLHRElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(1be0672a-edfd-49b8-81e3-e68641029133)]
|
||||
[scriptable, uuid(5e62e47c-264e-47b4-aa8c-84a1d37238b9)]
|
||||
interface nsIDOMHTMLHeadElement : nsIDOMHTMLElement
|
||||
{
|
||||
};
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(0515a456-2545-4865-9a5b-f744a8e16101)]
|
||||
[scriptable, uuid(c8fe0b12-e8c2-45ab-9831-fae7c54ba4cb)]
|
||||
interface nsIDOMHTMLHeadingElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a8500f4c-3314-4049-bb79-f782663e7273)]
|
||||
[scriptable, uuid(eaee35a4-12af-4db2-8177-131ee690baa0)]
|
||||
interface nsIDOMHTMLHtmlElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString version;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(31969911-36fb-42ee-9a00-018c3ff78cfb)]
|
||||
[scriptable, uuid(1c4174d0-8e24-407a-b527-fb78c23c801f)]
|
||||
interface nsIDOMHTMLIFrameElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(ce760602-0528-493d-966d-65d4ee52347d)]
|
||||
[scriptable, uuid(db167ea6-b7f6-4eb3-aa34-705f436f8525)]
|
||||
interface nsIDOMHTMLImageElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString alt;
|
||||
|
@ -54,7 +54,7 @@ interface nsIDOMValidityState;
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(66819eba-89b5-4db4-8d27-6368c70761e8)]
|
||||
[scriptable, uuid(90fa1822-deca-4732-bc50-0b5393ffd129)]
|
||||
interface nsIDOMHTMLInputElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString accept;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(9c31bd99-1412-49a2-954c-6c1be575decc)]
|
||||
[scriptable, uuid(cfc33c89-1a7e-4798-a09a-73d28073c1f7)]
|
||||
interface nsIDOMHTMLLIElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString type;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(0b4f3766-e6e8-4578-9d4e-f1fb4861c956)]
|
||||
[scriptable, uuid(3581e396-92ba-4696-83b4-e633de8fec00)]
|
||||
interface nsIDOMHTMLLabelElement : nsIDOMHTMLElement
|
||||
{
|
||||
readonly attribute nsIDOMHTMLFormElement form;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(d84fcdd0-5962-42aa-ab83-dc92321553aa)]
|
||||
[scriptable, uuid(e32bab6d-2640-47df-8053-803bb29c69ec)]
|
||||
interface nsIDOMHTMLLegendElement : nsIDOMHTMLElement
|
||||
{
|
||||
readonly attribute nsIDOMHTMLFormElement form;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(b60dc7dd-30d1-40aa-a306-02a2ebb30f12)]
|
||||
[scriptable, uuid(442dddcc-cdc3-4385-946d-9d6b8b4eb927)]
|
||||
interface nsIDOMHTMLLinkElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean disabled;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(1fe0dac9-564d-4f20-9933-e77bef7853cc)]
|
||||
[scriptable, uuid(0ca121ce-2e78-4c13-8fd3-fea07a1a9225)]
|
||||
interface nsIDOMHTMLMapElement : nsIDOMHTMLElement
|
||||
{
|
||||
readonly attribute nsIDOMHTMLCollection areas;
|
||||
|
@ -57,7 +57,7 @@
|
||||
#endif
|
||||
%}
|
||||
|
||||
[scriptable, uuid(16b81ded-30cb-427d-831d-1635dc68d346)]
|
||||
[scriptable, uuid(1b38c0a1-e532-41f1-9ec8-c76236d42cb7)]
|
||||
interface nsIDOMHTMLMediaElement : nsIDOMHTMLElement
|
||||
{
|
||||
// error state
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(43aa6818-f67f-420c-a400-59a2668e9fe5)]
|
||||
[scriptable, uuid(a9dce2dd-e46a-4e34-ab54-84ed2b4ea338)]
|
||||
interface nsIDOMHTMLMenuElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean compact;
|
||||
|
@ -43,7 +43,7 @@
|
||||
* @status UNDER_DEVELOPMENT
|
||||
*/
|
||||
|
||||
[scriptable, uuid(613f28ee-01f5-42dc-8224-161f85f0f20b)]
|
||||
[scriptable, uuid(eb28f8a2-047c-4317-bb96-a8c3b8b2047f)]
|
||||
interface nsIDOMHTMLMenuItemElement : nsIDOMHTMLCommandElement
|
||||
{
|
||||
};
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(43232acb-397c-46ce-8cd7-7fb2c286e851)]
|
||||
[scriptable, uuid(9f576967-dfaf-4651-920c-3890bde7629a)]
|
||||
interface nsIDOMHTMLMetaElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString content;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(9ee75a83-0acb-42e4-8fe7-dac88fcec547)]
|
||||
[scriptable, uuid(19d1a727-9a87-4f3a-985b-15fc7eb99634)]
|
||||
interface nsIDOMHTMLModElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString cite;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(e0bc10a7-46c7-4d6a-99a7-621827594efe)]
|
||||
[scriptable, uuid(c162aed0-002d-438b-8fe4-c25043be33f3)]
|
||||
interface nsIDOMHTMLOListElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean compact;
|
||||
|
@ -52,7 +52,7 @@
|
||||
|
||||
interface nsIDOMValidityState;
|
||||
|
||||
[scriptable, uuid(700d3c7b-cbc2-4ab4-9aa3-fedd0b09fe89)]
|
||||
[scriptable, uuid(f4778b38-f925-4c30-8c4d-9d73e28d74f0)]
|
||||
interface nsIDOMHTMLObjectElement : nsIDOMHTMLElement
|
||||
{
|
||||
readonly attribute nsIDOMHTMLFormElement form;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(98694f29-5a2a-4da3-8a0f-3351bafe1fea)]
|
||||
[scriptable, uuid(4cfc7664-e974-4f80-bb71-5a9878324ff3)]
|
||||
interface nsIDOMHTMLOptGroupElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean disabled;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(f289fdb9-fe0f-41d3-bbdb-5c4e21f0a4d2)]
|
||||
[scriptable, uuid(a36a1710-7684-4fb7-a401-ccbf442064c1)]
|
||||
interface nsIDOMHTMLOptionElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean disabled;
|
||||
|
@ -50,7 +50,7 @@
|
||||
interface nsIDOMDOMSettableTokenList;
|
||||
interface nsIDOMValidityState;
|
||||
|
||||
[scriptable, uuid(546ce012-e7ce-4490-8530-75f2b1b135b6)]
|
||||
[scriptable, uuid(a930fee7-dd3a-4d57-9ea7-79cfba343fde)]
|
||||
interface nsIDOMHTMLOutputElement : nsIDOMHTMLElement
|
||||
{
|
||||
readonly attribute nsIDOMDOMSettableTokenList htmlFor;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(7a324f4d-c264-4978-9d0c-5fdaac33a3ee)]
|
||||
[scriptable, uuid(fcc41020-196a-49c4-a73b-b38cbe7c0a8b)]
|
||||
interface nsIDOMHTMLParagraphElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(20ac93e9-4ac8-40b0-a1f3-38948f6ca6ab)]
|
||||
[scriptable, uuid(e7e2ac93-7a44-4c9d-bf4a-4b7231b6e9a8)]
|
||||
interface nsIDOMHTMLParamElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString name;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(3459e9d4-40a0-4b55-a018-db287561feab)]
|
||||
[scriptable, uuid(ae2ae9b9-86f1-4230-88dc-3317bcb8a375)]
|
||||
interface nsIDOMHTMLPreElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute long width;
|
||||
|
@ -47,7 +47,7 @@
|
||||
* @status UNDER_DEVELOPMENT
|
||||
*/
|
||||
|
||||
[scriptable, uuid(d14250f5-3176-4244-8085-1d0a532ce44c)]
|
||||
[scriptable, uuid(80f0f2f7-d1f0-457f-b80f-f6d78c8efafc)]
|
||||
interface nsIDOMHTMLProgressElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute double value;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(c9c87e61-dc16-47b9-acdd-641dd220557b)]
|
||||
[scriptable, uuid(6b53a7c3-8c6e-4a7d-80ac-5241ce8b62f6)]
|
||||
interface nsIDOMHTMLQuoteElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString cite;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(c623ecc4-381b-4fa7-9016-a29f0a06230b)]
|
||||
[scriptable, uuid(9956c866-08da-45f6-bf9e-6b5d09ce879d)]
|
||||
interface nsIDOMHTMLScriptElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString src;
|
||||
|
@ -53,7 +53,7 @@
|
||||
|
||||
interface nsIDOMValidityState;
|
||||
|
||||
[scriptable, uuid(069bc0d8-d16d-406a-8555-2f84384c9b3b)]
|
||||
[scriptable, uuid(f6e68b8c-58cf-49dd-8d70-de8768ac5bac)]
|
||||
interface nsIDOMHTMLSelectElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean autofocus;
|
||||
|
@ -48,7 +48,7 @@
|
||||
* @status UNDER_DEVELOPMENT
|
||||
*/
|
||||
|
||||
[scriptable, uuid(ee69ccd4-5216-46cc-bfb4-b612d197ce29)]
|
||||
[scriptable, uuid(d2c8c680-d3e7-4306-bced-4cddcbae4485)]
|
||||
interface nsIDOMHTMLSourceElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString src;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(675aff34-07c5-491f-b92f-ccaf616ef8b3)]
|
||||
[scriptable, uuid(f456b94c-d1e5-454e-99f1-30099d91c965)]
|
||||
interface nsIDOMHTMLStyleElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean disabled;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(0e843cc7-ff12-49b5-8c8d-939dc5b66b6b)]
|
||||
[scriptable, uuid(2e8ef4c4-b34b-48ad-937b-9c9a219fa19f)]
|
||||
interface nsIDOMHTMLTableCaptionElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(042957a7-8680-4ed4-9a45-40108e73701b)]
|
||||
[scriptable, uuid(a3a038e3-9c6e-4a27-bdec-8bfcb968fd94)]
|
||||
interface nsIDOMHTMLTableCellElement : nsIDOMHTMLElement
|
||||
{
|
||||
readonly attribute long cellIndex;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(b0c8daa0-6b74-4436-b1ca-2de5d6d3fe33)]
|
||||
[scriptable, uuid(1baa218e-f772-492c-a286-7c3680e221b3)]
|
||||
interface nsIDOMHTMLTableColElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(1927df94-db16-4e28-a491-4279eccc539d)]
|
||||
[scriptable, uuid(b5211d09-aeec-4dca-a676-c7d4376ab115)]
|
||||
interface nsIDOMHTMLTableElement : nsIDOMHTMLElement
|
||||
{
|
||||
// Modified in DOM Level 2:
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(0f614ba0-5ee1-494b-ade8-14c29f416798)]
|
||||
[scriptable, uuid(637b44fe-229c-4a72-a9e9-ccdb265821ed)]
|
||||
interface nsIDOMHTMLTableRowElement : nsIDOMHTMLElement
|
||||
{
|
||||
// Modified in DOM Level 2:
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(76400ad3-725a-45c1-bb98-5a6cdb91af11)]
|
||||
[scriptable, uuid(698f916c-329e-4aa4-8007-0e1ea708fd8d)]
|
||||
interface nsIDOMHTMLTableSectionElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString align;
|
||||
|
@ -53,7 +53,7 @@ interface nsIDOMValidityState;
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(43e99aee-e41f-4935-a87d-f2dbafdbfddb)]
|
||||
[scriptable, uuid(3fa5ddd0-060e-4de7-835d-0c02cb3f6e79)]
|
||||
interface nsIDOMHTMLTextAreaElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean autofocus;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(487748c0-31c0-4985-93c6-588b64f8ed2d)]
|
||||
[scriptable, uuid(77e6df52-a4b5-4113-b293-fbceb1be718d)]
|
||||
interface nsIDOMHTMLTitleElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute DOMString text;
|
||||
|
@ -50,7 +50,7 @@
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/
|
||||
*/
|
||||
|
||||
[scriptable, uuid(49610fd6-bf9e-4a13-beb3-09ac74540077)]
|
||||
[scriptable, uuid(8a64c035-b4aa-4b6c-b907-eba752e754e3)]
|
||||
interface nsIDOMHTMLUListElement : nsIDOMHTMLElement
|
||||
{
|
||||
attribute boolean compact;
|
||||
|
@ -43,7 +43,7 @@
|
||||
*
|
||||
* @see <http://www.whatwg.org/html/#htmlunknownelement>
|
||||
*/
|
||||
[scriptable, uuid(9d094117-9937-4ae4-a325-1761d7a9f3bc)]
|
||||
[scriptable, uuid(45dfc97e-4ade-41be-b83e-5074003c042c)]
|
||||
interface nsIDOMHTMLUnknownElement : nsIDOMHTMLElement
|
||||
{
|
||||
};
|
||||
|
@ -48,7 +48,7 @@
|
||||
* @status UNDER_DEVELOPMENT
|
||||
*/
|
||||
|
||||
[scriptable, uuid(00c757ec-db7b-477e-95cd-b2a03b0f8634)]
|
||||
[scriptable, uuid(bebdbca4-05be-480a-bfb9-949fc7ff793f)]
|
||||
interface nsIDOMHTMLVideoElement : nsIDOMHTMLMediaElement
|
||||
{
|
||||
attribute long width;
|
||||
|
@ -44,7 +44,7 @@
|
||||
|
||||
interface nsIDOMSVGAnimatedString;
|
||||
|
||||
[scriptable, uuid(4b1c2d6b-71c2-4dd0-96fc-84c1872786ce)]
|
||||
[scriptable, uuid(139491ec-3bc2-490e-bce6-ec1b1b5aeaf9)]
|
||||
interface nsIDOMSVGAElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -35,7 +35,7 @@
|
||||
|
||||
#include "nsIDOMSVGTextPositionElem.idl"
|
||||
|
||||
[scriptable, uuid(f624c6ea-ced6-404a-b8a0-5f67a4d86bce)]
|
||||
[scriptable, uuid(9cfd33f4-0720-4e9f-977e-7a1fe72d23c9)]
|
||||
interface nsIDOMSVGAltGlyphElement : nsIDOMSVGTextPositioningElement
|
||||
/*
|
||||
The SVG DOM makes use of multiple interface inheritance.
|
||||
|
@ -37,5 +37,5 @@
|
||||
|
||||
#include "nsIDOMSVGAnimationElement.idl"
|
||||
|
||||
[scriptable, uuid(0c4297e8-68d0-471d-a933-64132ccc5b97)]
|
||||
[scriptable, uuid(fb2484e8-3d50-471b-87dd-3aa70a436b71)]
|
||||
interface nsIDOMSVGAnimateElement : nsIDOMSVGAnimationElement {};
|
||||
|
@ -37,5 +37,5 @@
|
||||
|
||||
#include "nsIDOMSVGAnimationElement.idl"
|
||||
|
||||
[scriptable, uuid(8ac8b152-a44f-4456-bda5-b004f8148a93)]
|
||||
[scriptable, uuid(2216f319-1bea-489c-b025-2e1f5217f0cd)]
|
||||
interface nsIDOMSVGAnimateMotionElement : nsIDOMSVGAnimationElement { };
|
||||
|
@ -37,5 +37,5 @@
|
||||
|
||||
#include "nsIDOMSVGAnimationElement.idl"
|
||||
|
||||
[scriptable, uuid(735e0f75-c6aa-4aee-bcd2-46426d6ac90c)]
|
||||
[scriptable, uuid(381c61a0-3af4-46be-99c4-db5253efccd9)]
|
||||
interface nsIDOMSVGAnimateTransformElement : nsIDOMSVGAnimationElement {};
|
||||
|
@ -37,7 +37,7 @@
|
||||
|
||||
#include "nsIDOMSVGElement.idl"
|
||||
|
||||
[scriptable, uuid(4e04c285-80c2-42a2-979f-3786ba42acf5)]
|
||||
[scriptable, uuid(ed76a4bc-7817-4724-b89c-1a06ca36dc08)]
|
||||
interface nsIDOMSVGAnimationElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
interface nsIDOMSVGAnimatedLength;
|
||||
|
||||
[scriptable, uuid(db2ba352-d0b2-49fd-859e-64624ad557bc)]
|
||||
[scriptable, uuid(eea07241-beed-442e-ba0d-9a8f534a70e8)]
|
||||
interface nsIDOMSVGCircleElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -47,7 +47,7 @@
|
||||
|
||||
interface nsIDOMSVGAnimatedEnumeration;
|
||||
|
||||
[scriptable, uuid(3dd19de9-deee-4105-9c5c-c51c68b31326)]
|
||||
[scriptable, uuid(91147786-14f3-4567-b926-7e69e0228c03)]
|
||||
interface nsIDOMSVGClipPathElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -38,7 +38,7 @@
|
||||
|
||||
#include "nsIDOMSVGElement.idl"
|
||||
|
||||
[scriptable, uuid(649d4045-57d0-4937-a19b-e9d52e306a2b)]
|
||||
[scriptable, uuid(26d55016-c8a7-428b-ad39-61d1597b5df7)]
|
||||
interface nsIDOMSVGDefsElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -38,7 +38,7 @@
|
||||
|
||||
#include "nsIDOMSVGElement.idl"
|
||||
|
||||
[scriptable, uuid(6c867f82-13b5-4237-a653-d4a21d5d3d0b)]
|
||||
[scriptable, uuid(ade2ccfe-2858-46ed-b8a4-bc302d226c5c)]
|
||||
interface nsIDOMSVGDescElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -39,7 +39,7 @@
|
||||
|
||||
interface nsIDOMSVGSVGElement;
|
||||
|
||||
[scriptable, uuid(880e6976-844c-4614-99db-a580790231eb)]
|
||||
[scriptable, uuid(4ac55dee-ce7f-465d-a27c-ecc293ae35db)]
|
||||
interface nsIDOMSVGDocument : nsIDOMDocument
|
||||
{
|
||||
readonly attribute DOMString domain;
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
interface nsIDOMSVGSVGElement;
|
||||
|
||||
[scriptable, uuid(c358d048-be72-4d39-93dc-0e85b8c9f07b)]
|
||||
[scriptable, uuid(aee43575-391a-4b3f-81ce-7283d228a6c3)]
|
||||
interface nsIDOMSVGElement : nsIDOMElement
|
||||
{
|
||||
attribute DOMString id;
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
interface nsIDOMSVGAnimatedLength;
|
||||
|
||||
[scriptable, uuid(2e1af4ae-5d46-4b0c-8d69-624eca05c831)]
|
||||
[scriptable, uuid(ffe5fe9f-0dbd-457a-898a-bc0b0d0de923)]
|
||||
interface nsIDOMSVGEllipseElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -40,7 +40,7 @@ interface nsIDOMSVGAnimatedLength;
|
||||
interface nsIDOMSVGAnimatedEnumeration;
|
||||
interface nsIDOMSVGAnimatedInteger;
|
||||
|
||||
[scriptable, uuid(56606fdd-9b9e-4b91-a34a-9504af3139dd)]
|
||||
[scriptable, uuid(65f0b91a-13c3-44a8-aa97-6d80c788c5af)]
|
||||
interface nsIDOMSVGFilterElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -45,7 +45,7 @@ interface nsIDOMSVGAnimatedNumberList;
|
||||
interface nsIDOMSVGAnimatedInteger;
|
||||
interface nsIDOMSVGAnimatedBoolean;
|
||||
|
||||
[scriptable, uuid(8ec9c323-10dd-45ef-a301-4ecb9ec414dd)]
|
||||
[scriptable, uuid(e5ed442b-a208-41cd-8494-9670d9a19023)]
|
||||
interface nsIDOMSVGFilterPrimitiveStandardAttributes : nsIDOMSVGElement
|
||||
{
|
||||
readonly attribute nsIDOMSVGAnimatedLength x;
|
||||
@ -55,7 +55,7 @@ interface nsIDOMSVGFilterPrimitiveStandardAttributes : nsIDOMSVGElement
|
||||
readonly attribute nsIDOMSVGAnimatedString result;
|
||||
};
|
||||
|
||||
[scriptable, uuid(1644ea2b-8fdb-492d-a858-850b7bb570ed)]
|
||||
[scriptable, uuid(e3538ea5-625d-485e-a902-ea6b60d47047)]
|
||||
interface nsIDOMSVGFEBlendElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
const unsigned short SVG_MODE_UNKNOWN = 0;
|
||||
@ -70,7 +70,7 @@ interface nsIDOMSVGFEBlendElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
readonly attribute nsIDOMSVGAnimatedEnumeration mode;
|
||||
};
|
||||
|
||||
[scriptable, uuid(94d552df-87ea-4eaf-8618-5de29a7a9dbe)]
|
||||
[scriptable, uuid(67415934-e859-4408-aec7-e3bccf3a85c5)]
|
||||
interface nsIDOMSVGFEColorMatrixElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
// Color Matrix Types
|
||||
@ -85,13 +85,13 @@ interface nsIDOMSVGFEColorMatrixElement : nsIDOMSVGFilterPrimitiveStandardAttrib
|
||||
readonly attribute nsIDOMSVGAnimatedNumberList values;
|
||||
};
|
||||
|
||||
[scriptable, uuid(2871a5c9-d4e5-420c-910c-c98fc2e8cad1)]
|
||||
[scriptable, uuid(75159f44-2f78-4d4d-8136-a6c23070f187)]
|
||||
interface nsIDOMSVGFEComponentTransferElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
readonly attribute nsIDOMSVGAnimatedString in1;
|
||||
};
|
||||
|
||||
[scriptable, uuid(1620e78a-cb9d-44ad-99f3-732168a403e6)]
|
||||
[scriptable, uuid(819d470b-9d0d-40c6-8379-acaa026bdbac)]
|
||||
interface nsIDOMSVGComponentTransferFunctionElement : nsIDOMSVGElement
|
||||
{
|
||||
// Component Transfer Types
|
||||
@ -111,7 +111,7 @@ interface nsIDOMSVGComponentTransferFunctionElement : nsIDOMSVGElement
|
||||
readonly attribute nsIDOMSVGAnimatedNumber offset;
|
||||
};
|
||||
|
||||
[scriptable, uuid(12c63fba-b0f9-41ee-ad57-573650ebde89)]
|
||||
[scriptable, uuid(5566215e-fbbd-4a65-975b-32f900ff593e)]
|
||||
interface nsIDOMSVGFECompositeElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
// Operator Types
|
||||
@ -135,27 +135,27 @@ interface nsIDOMSVGFECompositeElement : nsIDOMSVGFilterPrimitiveStandardAttribut
|
||||
|
||||
};
|
||||
|
||||
[scriptable, uuid(f13456d1-04b9-45cb-9fbf-fc733d6a0279)]
|
||||
[scriptable, uuid(652da357-e3e3-4398-bc08-8dedd24fafba)]
|
||||
interface nsIDOMSVGFEFuncRElement : nsIDOMSVGComponentTransferFunctionElement
|
||||
{
|
||||
};
|
||||
|
||||
[scriptable, uuid(05709de9-e3a9-43c1-a820-585c3f4694be)]
|
||||
[scriptable, uuid(d525c67b-0b22-4037-936c-477d0cba2279)]
|
||||
interface nsIDOMSVGFEFuncGElement : nsIDOMSVGComponentTransferFunctionElement
|
||||
{
|
||||
};
|
||||
|
||||
[scriptable, uuid(7ed53e92-f831-4e5c-bdd4-ab769e27587e)]
|
||||
[scriptable, uuid(157a90f8-018e-4f6c-afed-4083f1062643)]
|
||||
interface nsIDOMSVGFEFuncBElement : nsIDOMSVGComponentTransferFunctionElement
|
||||
{
|
||||
};
|
||||
|
||||
[scriptable, uuid(30893867-f167-4238-bec2-fb0a65cdf779)]
|
||||
[scriptable, uuid(8b3f860a-3cdc-4495-87fe-99adb5845a91)]
|
||||
interface nsIDOMSVGFEFuncAElement : nsIDOMSVGComponentTransferFunctionElement
|
||||
{
|
||||
};
|
||||
|
||||
[scriptable, uuid(66a74ea4-5504-4a8b-9c3a-b0438615f15e)]
|
||||
[scriptable, uuid(c0dba6ef-014a-4b90-9f57-f6b52a624738)]
|
||||
interface nsIDOMSVGFEGaussianBlurElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
readonly attribute nsIDOMSVGAnimatedString in1;
|
||||
@ -165,35 +165,35 @@ interface nsIDOMSVGFEGaussianBlurElement : nsIDOMSVGFilterPrimitiveStandardAttri
|
||||
void setStdDeviation ( in float stdDeviationX, in float stdDeviationY );
|
||||
};
|
||||
|
||||
[scriptable, uuid(9932eb32-dee0-4848-b0a5-a6c0dfd21182)]
|
||||
[scriptable, uuid(147077be-9b75-487f-9c6a-b941d797dc6d)]
|
||||
interface nsIDOMSVGFEMergeElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
};
|
||||
|
||||
[scriptable, uuid(695a89c2-8eab-4ddd-94e7-509bf2a4f6e8)]
|
||||
[scriptable, uuid(ca45efa5-f3d5-4160-ae5e-8c6a6c80b308)]
|
||||
interface nsIDOMSVGFEMergeNodeElement : nsIDOMSVGElement {
|
||||
readonly attribute nsIDOMSVGAnimatedString in1;
|
||||
};
|
||||
|
||||
[scriptable, uuid(15acdbf5-6203-4167-b7c1-c746f5dd2478)]
|
||||
[scriptable, uuid(5ce4bdf0-6ef5-41b8-8be6-d936c88dfbb5)]
|
||||
interface nsIDOMSVGFEOffsetElement : nsIDOMSVGFilterPrimitiveStandardAttributes {
|
||||
readonly attribute nsIDOMSVGAnimatedString in1;
|
||||
readonly attribute nsIDOMSVGAnimatedNumber dx;
|
||||
readonly attribute nsIDOMSVGAnimatedNumber dy;
|
||||
};
|
||||
|
||||
[scriptable, uuid(cf267d0d-813a-4c67-be8e-e65937afba21)]
|
||||
[scriptable, uuid(74c74158-4feb-4a8a-8c6e-f986dd46ae97)]
|
||||
interface nsIDOMSVGFEFloodElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
};
|
||||
|
||||
[scriptable, uuid(380da0f2-f2f5-457e-a79d-7fab3da1eefb)]
|
||||
[scriptable, uuid(40b9b789-b852-4297-8fc7-f9e9f1be1cbc)]
|
||||
interface nsIDOMSVGFETileElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
readonly attribute nsIDOMSVGAnimatedString in1;
|
||||
};
|
||||
|
||||
[scriptable, uuid(20d41b65-e433-4742-b9e1-08238b139285)]
|
||||
[scriptable, uuid(6afc9962-fcba-4300-9dde-89faad74f2e9)]
|
||||
interface nsIDOMSVGFETurbulenceElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
// Turbulence Types
|
||||
@ -213,7 +213,7 @@ interface nsIDOMSVGFETurbulenceElement : nsIDOMSVGFilterPrimitiveStandardAttribu
|
||||
readonly attribute nsIDOMSVGAnimatedEnumeration type;
|
||||
};
|
||||
|
||||
[scriptable, uuid(83508db0-be38-4929-8e91-7cfddb921f4a)]
|
||||
[scriptable, uuid(1aa777de-4dbb-4cf7-820e-46b2bbadeaa2)]
|
||||
interface nsIDOMSVGFEMorphologyElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
// Operator Types
|
||||
@ -229,7 +229,7 @@ interface nsIDOMSVGFEMorphologyElement : nsIDOMSVGFilterPrimitiveStandardAttribu
|
||||
void setRadius ( in float rx, in float ry );
|
||||
};
|
||||
|
||||
[scriptable, uuid(5232e1f6-6845-4c29-9677-93852228ab2f)]
|
||||
[scriptable, uuid(db6b7ac9-1511-452c-8575-8d87b995c97f)]
|
||||
interface nsIDOMSVGFEConvolveMatrixElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
// Edge Mode Values
|
||||
@ -252,7 +252,7 @@ interface nsIDOMSVGFEConvolveMatrixElement : nsIDOMSVGFilterPrimitiveStandardAtt
|
||||
readonly attribute nsIDOMSVGAnimatedBoolean preserveAlpha;
|
||||
};
|
||||
|
||||
[scriptable, uuid(3834f5f7-bb9b-4ba4-9de5-6b12bca6fb46)]
|
||||
[scriptable, uuid(ab84cbd9-bb0f-447b-a3a5-0a149bed151d)]
|
||||
interface nsIDOMSVGFEDiffuseLightingElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
readonly attribute nsIDOMSVGAnimatedString in1;
|
||||
@ -262,7 +262,7 @@ interface nsIDOMSVGFEDiffuseLightingElement : nsIDOMSVGFilterPrimitiveStandardA
|
||||
readonly attribute nsIDOMSVGAnimatedNumber kernelUnitLengthY;
|
||||
};
|
||||
|
||||
[scriptable, uuid(3e60f5df-f77a-4fe2-bcad-881865cfc21f)]
|
||||
[scriptable, uuid(088715b7-7592-47d1-a838-d4b98d349554)]
|
||||
interface nsIDOMSVGFESpecularLightingElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
readonly attribute nsIDOMSVGAnimatedString in1;
|
||||
@ -273,20 +273,20 @@ interface nsIDOMSVGFESpecularLightingElement : nsIDOMSVGFilterPrimitiveStandardA
|
||||
readonly attribute nsIDOMSVGAnimatedNumber kernelUnitLengthY;
|
||||
};
|
||||
|
||||
[scriptable, uuid(02141672-7f2c-412a-a7d7-4caa194842e9)]
|
||||
[scriptable, uuid(2a3d954d-bc5a-4732-8f72-5030dae9de48)]
|
||||
interface nsIDOMSVGFEDistantLightElement : nsIDOMSVGElement {
|
||||
readonly attribute nsIDOMSVGAnimatedNumber azimuth;
|
||||
readonly attribute nsIDOMSVGAnimatedNumber elevation;
|
||||
};
|
||||
|
||||
[scriptable, uuid(557f128a-026b-4fa8-a44c-605df7bfd62e)]
|
||||
[scriptable, uuid(b225e777-d585-4a15-a40d-856d9d3afcfd)]
|
||||
interface nsIDOMSVGFEPointLightElement : nsIDOMSVGElement {
|
||||
readonly attribute nsIDOMSVGAnimatedNumber x;
|
||||
readonly attribute nsIDOMSVGAnimatedNumber y;
|
||||
readonly attribute nsIDOMSVGAnimatedNumber z;
|
||||
};
|
||||
|
||||
[scriptable, uuid(5515dd05-3d9d-4d6c-8460-a04aaf5afe15)]
|
||||
[scriptable, uuid(d7a342bf-ad29-46d0-bc50-43d4ee1202a9)]
|
||||
interface nsIDOMSVGFESpotLightElement : nsIDOMSVGElement {
|
||||
readonly attribute nsIDOMSVGAnimatedNumber x;
|
||||
readonly attribute nsIDOMSVGAnimatedNumber y;
|
||||
@ -298,7 +298,7 @@ interface nsIDOMSVGFESpotLightElement : nsIDOMSVGElement {
|
||||
readonly attribute nsIDOMSVGAnimatedNumber limitingConeAngle;
|
||||
};
|
||||
|
||||
[scriptable, uuid(d36089cf-ade0-48e8-9540-40ee35838f88)]
|
||||
[scriptable, uuid(4ffbfc41-92e8-467e-b63e-8a998f31a5e6)]
|
||||
interface nsIDOMSVGFEImageElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
/*
|
||||
nsIDOMSVGURIReference,
|
||||
@ -308,7 +308,7 @@ interface nsIDOMSVGFEImageElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
};
|
||||
|
||||
[scriptable, uuid(821533e9-9da9-4ea4-8d53-5fb9170fa952)]
|
||||
[scriptable, uuid(bdda2dda-14d1-4c97-a1d6-95558d50d902)]
|
||||
interface nsIDOMSVGFEDisplacementMapElement : nsIDOMSVGFilterPrimitiveStandardAttributes
|
||||
{
|
||||
// Channel Selectors
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
interface nsIDOMSVGAnimatedLength;
|
||||
|
||||
[scriptable, uuid(a093460b-e3d0-4914-aa60-a4b31aa53276)]
|
||||
[scriptable, uuid(e8560e00-3833-4afd-aee9-13dae48ccb25)]
|
||||
interface nsIDOMSVGForeignObjectElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -38,7 +38,7 @@
|
||||
|
||||
#include "nsIDOMSVGElement.idl"
|
||||
|
||||
[scriptable, uuid(86317234-cf55-4ff0-8fed-de48557ae82e)]
|
||||
[scriptable, uuid(3bc7b279-d21a-4d04-acb0-d68331924a8c)]
|
||||
interface nsIDOMSVGGElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -50,7 +50,7 @@
|
||||
interface nsIDOMSVGAnimatedEnumeration;
|
||||
interface nsIDOMSVGAnimatedTransformList;
|
||||
|
||||
[scriptable, uuid(8114186f-29ef-4642-b4e2-762f331661e5)]
|
||||
[scriptable, uuid(5b227fb5-1f03-4490-bafe-a3c3037e3165)]
|
||||
interface nsIDOMSVGGradientElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
@ -88,7 +88,7 @@ interface nsIDOMSVGGradientElement
|
||||
// Linear gradient
|
||||
interface nsIDOMSVGAnimatedLength;
|
||||
|
||||
[scriptable, uuid(44e59baf-4ca5-48af-9749-69b30be11917)]
|
||||
[scriptable, uuid(d6a1bf9f-80e8-4110-9dcd-50ecf0c3f120)]
|
||||
interface nsIDOMSVGLinearGradientElement
|
||||
: nsIDOMSVGGradientElement
|
||||
{
|
||||
@ -110,7 +110,7 @@ interface nsIDOMSVGLinearGradientElement
|
||||
// Radial gradient
|
||||
interface nsIDOMSVGAnimatedLength;
|
||||
|
||||
[scriptable, uuid(67d79c33-76b6-421a-a7ff-bb6793a4fd46)]
|
||||
[scriptable, uuid(e2bedf79-8eed-4884-9c16-c0efe03dc087)]
|
||||
interface nsIDOMSVGRadialGradientElement
|
||||
: nsIDOMSVGGradientElement
|
||||
{
|
||||
|
@ -41,7 +41,7 @@
|
||||
interface nsIDOMSVGAnimatedLength;
|
||||
interface nsIDOMSVGAnimatedPreserveAspectRatio;
|
||||
|
||||
[scriptable, uuid(aaf4a4a5-7016-47ca-b61d-47ec9152fc14)]
|
||||
[scriptable, uuid(5898ffca-d692-46ca-ae23-3c8bd2c86f89)]
|
||||
interface nsIDOMSVGImageElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
interface nsIDOMSVGAnimatedLength;
|
||||
|
||||
[scriptable, uuid(edee1921-78ca-49b7-94f8-261942bf320d)]
|
||||
[scriptable, uuid(c0642946-2144-4d4d-a0ff-07fffb4e69be)]
|
||||
interface nsIDOMSVGLineElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -51,7 +51,7 @@ interface nsIDOMSVGMatrix;
|
||||
*
|
||||
*/
|
||||
|
||||
[scriptable, uuid(12e79be1-eac1-49b8-b644-d617445ae2b1)]
|
||||
[scriptable, uuid(7e1bea71-de48-4cba-850f-9bfb13d9a5ed)]
|
||||
interface nsIDOMSVGMarkerElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -39,7 +39,7 @@
|
||||
interface nsIDOMSVGAnimatedLength;
|
||||
interface nsIDOMSVGAnimatedEnumeration;
|
||||
|
||||
[scriptable, uuid(9ec463fe-84d5-404b-9078-2e693e183b48)]
|
||||
[scriptable, uuid(00e0d565-8af2-4e68-a582-e71b5143b96f)]
|
||||
interface nsIDOMSVGMaskElement
|
||||
: nsIDOMSVGElement
|
||||
/*
|
||||
|
@ -38,7 +38,7 @@
|
||||
|
||||
#include "nsIDOMSVGElement.idl"
|
||||
|
||||
[scriptable, uuid(a772c8e6-2755-4864-b249-b4a03c7554b4)]
|
||||
[scriptable, uuid(f7db9b55-68f6-44c6-89f0-d1190117bf56)]
|
||||
interface nsIDOMSVGMetadataElement
|
||||
: nsIDOMSVGElement
|
||||
{
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user