diff --git a/content/base/public/nsContentUtils.h b/content/base/public/nsContentUtils.h index ef0f20a649a..a4516c08072 100644 --- a/content/base/public/nsContentUtils.h +++ b/content/base/public/nsContentUtils.h @@ -745,20 +745,6 @@ public: return *aResult ? NS_OK : NS_ERROR_OUT_OF_MEMORY; } - /** - * Convenience method to create a new nodeinfo that differs only by prefix - * from aNodeInfo. - */ - static nsresult PrefixChanged(nsINodeInfo *aNodeInfo, nsIAtom *aPrefix, - nsINodeInfo** aResult) - { - nsNodeInfoManager *niMgr = aNodeInfo->NodeInfoManager(); - - *aResult = niMgr->GetNodeInfo(aNodeInfo->NameAtom(), aPrefix, - aNodeInfo->NamespaceID()).get(); - return *aResult ? NS_OK : NS_ERROR_OUT_OF_MEMORY; - } - /** * Returns the appropriate event argument names for the specified * namespace and event name. Added because we need to switch between diff --git a/content/base/src/nsDOMAttribute.cpp b/content/base/src/nsDOMAttribute.cpp index 21358b51b8d..4b2ae2f4665 100644 --- a/content/base/src/nsDOMAttribute.cpp +++ b/content/base/src/nsDOMAttribute.cpp @@ -467,49 +467,6 @@ nsDOMAttribute::GetPrefix(nsAString& aPrefix) return NS_OK; } -NS_IMETHODIMP -nsDOMAttribute::SetPrefix(const nsAString& aPrefix) -{ - // XXX: Validate the prefix string! - - nsCOMPtr newNodeInfo; - nsCOMPtr prefix; - - if (!aPrefix.IsEmpty()) { - prefix = do_GetAtom(aPrefix); - if (!prefix) { - return NS_ERROR_OUT_OF_MEMORY; - } - } - - if (!nsContentUtils::IsValidNodeName(mNodeInfo->NameAtom(), prefix, - mNodeInfo->NamespaceID())) { - return NS_ERROR_DOM_NAMESPACE_ERR; - } - - nsresult rv = nsContentUtils::PrefixChanged(mNodeInfo, prefix, - getter_AddRefs(newNodeInfo)); - NS_ENSURE_SUCCESS(rv, rv); - - nsIContent* content = GetContentInternal(); - if (content) { - nsCOMPtr name = GetNameAtom(content); - PRInt32 nameSpaceID = mNodeInfo->NamespaceID(); - - nsAutoString tmpValue; - if (content->GetAttr(nameSpaceID, name, tmpValue)) { - content->UnsetAttr(nameSpaceID, name, PR_TRUE); - - content->SetAttr(newNodeInfo->NamespaceID(), name, - newNodeInfo->GetPrefixAtom(), tmpValue, PR_TRUE); - } - } - - newNodeInfo.swap(mNodeInfo); - - return NS_OK; -} - NS_IMETHODIMP nsDOMAttribute::GetLocalName(nsAString& aLocalName) { diff --git a/content/base/src/nsDocument.cpp b/content/base/src/nsDocument.cpp index dd2a8527e3d..f7c5811e33f 100644 --- a/content/base/src/nsDocument.cpp +++ b/content/base/src/nsDocument.cpp @@ -5771,12 +5771,6 @@ nsDocument::GetPrefix(nsAString& aPrefix) return NS_OK; } -NS_IMETHODIMP -nsDocument::SetPrefix(const nsAString& aPrefix) -{ - return NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR; -} - NS_IMETHODIMP nsDocument::GetLocalName(nsAString& aLocalName) { diff --git a/content/base/src/nsGenericDOMDataNode.cpp b/content/base/src/nsGenericDOMDataNode.cpp index ade08970c6d..f7b713c596a 100644 --- a/content/base/src/nsGenericDOMDataNode.cpp +++ b/content/base/src/nsGenericDOMDataNode.cpp @@ -172,12 +172,6 @@ nsGenericDOMDataNode::GetPrefix(nsAString& aPrefix) return NS_OK; } -nsresult -nsGenericDOMDataNode::SetPrefix(const nsAString& aPrefix) -{ - return NS_ERROR_DOM_NAMESPACE_ERR; -} - nsresult nsGenericDOMDataNode::GetLocalName(nsAString& aLocalName) { diff --git a/content/base/src/nsGenericDOMDataNode.h b/content/base/src/nsGenericDOMDataNode.h index 04a4fcea419..3557ac0511e 100644 --- a/content/base/src/nsGenericDOMDataNode.h +++ b/content/base/src/nsGenericDOMDataNode.h @@ -131,7 +131,6 @@ public: nsresult GetNamespaceURI(nsAString& aNamespaceURI); nsresult GetLocalName(nsAString& aLocalName); nsresult GetPrefix(nsAString& aPrefix); - nsresult SetPrefix(const nsAString& aPrefix); nsresult Normalize(); nsresult IsSupported(const nsAString& aFeature, const nsAString& aVersion, @@ -471,9 +470,6 @@ private: NS_IMETHOD GetPrefix(nsAString& aPrefix) { \ return nsGenericDOMDataNode::GetPrefix(aPrefix); \ } \ - NS_IMETHOD SetPrefix(const nsAString& aPrefix) { \ - return nsGenericDOMDataNode::SetPrefix(aPrefix); \ - } \ NS_IMETHOD Normalize() { \ return NS_OK; \ } \ diff --git a/content/base/src/nsGenericElement.cpp b/content/base/src/nsGenericElement.cpp index b92957e39f1..619f4d3fc51 100644 --- a/content/base/src/nsGenericElement.cpp +++ b/content/base/src/nsGenericElement.cpp @@ -2218,40 +2218,6 @@ nsGenericElement::GetPrefix(nsAString& aPrefix) return NS_OK; } -NS_IMETHODIMP -nsGenericElement::SetPrefix(const nsAString& aPrefix) -{ - // XXX: Validate the prefix string! - - nsCOMPtr prefix; - - if (!aPrefix.IsEmpty()) { - prefix = do_GetAtom(aPrefix); - NS_ENSURE_TRUE(prefix, NS_ERROR_OUT_OF_MEMORY); - } - - if (!nsContentUtils::IsValidNodeName(mNodeInfo->NameAtom(), prefix, - mNodeInfo->NamespaceID())) { - return NS_ERROR_DOM_NAMESPACE_ERR; - } - - nsAutoScriptBlocker scriptBlocker; - - nsCOMPtr newNodeInfo; - nsresult rv = nsContentUtils::PrefixChanged(mNodeInfo, prefix, - getter_AddRefs(newNodeInfo)); - NS_ENSURE_SUCCESS(rv, rv); - - mNodeInfo.swap(newNodeInfo); - NodeInfoChanged(newNodeInfo); - - // The id-handling code need to react to unexpected changes to an elements - // nodeinfo as that can change the elements id-attribute. - nsMutationGuard::DidMutate(); - - return NS_OK; -} - static already_AddRefed GetDOMFeatureFactory(const nsAString& aFeature, const nsAString& aVersion) { diff --git a/content/base/src/nsGenericElement.h b/content/base/src/nsGenericElement.h index e30cb1ebeff..2bba248153b 100644 --- a/content/base/src/nsGenericElement.h +++ b/content/base/src/nsGenericElement.h @@ -506,7 +506,6 @@ public: NS_IMETHOD GetAttributes(nsIDOMNamedNodeMap** aAttributes); NS_IMETHOD GetNamespaceURI(nsAString& aNamespaceURI); NS_IMETHOD GetPrefix(nsAString& aPrefix); - NS_IMETHOD SetPrefix(const nsAString& aPrefix); NS_IMETHOD Normalize(); NS_IMETHOD IsSupported(const nsAString& aFeature, const nsAString& aVersion, PRBool* aReturn); diff --git a/content/base/test/Makefile.in b/content/base/test/Makefile.in index 3c5492b35c4..25eace64c0d 100644 --- a/content/base/test/Makefile.in +++ b/content/base/test/Makefile.in @@ -472,6 +472,7 @@ _TEST_FILES2 = \ test_bug558431.html \ file_bug558431.html \ file_bug558431.html^headers^ \ + test_bug604592.html \ test_bug628938.html \ test_bug626262.html \ $(NULL) diff --git a/content/base/test/test_bug564863.xhtml b/content/base/test/test_bug564863.xhtml index 919452e0ee8..a65783d77da 100644 --- a/content/base/test/test_bug564863.xhtml +++ b/content/base/test/test_bug564863.xhtml @@ -287,70 +287,6 @@ nsx.removeAttribute("id"); ok(mutateFired, "mutation event fired"); -// Check that modifying the id-name of an XML element works -ok($("ns-holder"), "ns-holder exists"); -ok($("ns2-holder"), "ns2-holder exists"); -root.appendChild(nsx); -nsx.setAttribute("id", "ns_id"); -is(nsx_cs.color, "rgb(50, 50, 50)", "nsx has initial id"); -is($("ns_id"), nsx, "gEBI works on old id"); -nsx.setAttribute("id_2", "ns2_id"); -nsx.prefix = "ns2"; -is($("ns2_id"), nsx, "gEBI works on new id"); -is($("ns_id"), null, "gEBI does't work on old id"); -removeNode(nsx); -root.appendChild(nsx); -is(nsx_cs.color, "rgb(60, 60, 60)", "nsx has new id"); -is($("ns2_id"), nsx, "gEBI still works on new id"); - -// Need to change id and then CC to ensure that we don't end up with dangling pointers -function gc() { - netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); - window.QueryInterface(Components.interfaces.nsIInterfaceRequestor) - .getInterface(Components.interfaces.nsIDOMWindowUtils) - .garbageCollect(); -} -ok($("ns-holder"), "ns-holder exists"); -ok($("ns2-holder"), "ns2-holder exists"); -tempNode = document.createElementNS("urn:namespace", "ns:x"); -tempNode.setAttribute("id", "tempNode_id"); -document.body.appendChild(tempNode); -is($("tempNode_id"), tempNode, "tempNode in gEBI table"); -tempNode.prefix = "ns2"; -removeNode(tempNode); -tempNode = null; -gc(); -$("tempNode_id"); -ok(true, "Didn't crash when accessing old id"); - - -// Update the id-name inside a mutation event -removeNode(nsx); -nsx = document.createElementNS("urn:namespace", "ns:x"); -nsx.setAttribute("id", "ns_id"); -nsx.setAttribute("id_2", "ns2_id"); -root.appendChild(nsx); -is($("ns_id"), nsx, "new nsx is set up"); -is($("ns2_id"), null, "ns2_id doesn't exist"); -mutateFired = false; -nsx.addEventListener("DOMAttrModified", function(e) { - nsx.removeEventListener("DOMAttrModified", arguments.callee, false); - is(e.target, nsx, "target is nsx"); - is(nsx.getAttribute("id"), null, "nsx no longer has id attr"); - nsx.prefix = "ns2"; - mutateFired = true; -}, false); -nsx.removeAttribute("id"); -ok(mutateFired, "mutation event fired"); -is($("ns_id"), null, "ns_id was removed from table"); -is($("ns2_id"), nsx, "ns2_id was added"); -removeNode(nsx); -is($("ns2_id"), null, "ns2_id was removed"); -nsx = null; -gc(); -$("ns2_id"); -ok(true, "we didn't crash"); - // Re-add the id inside a mutation event on a XML element is($("ns_id"), null, "no nsx"); is($("ns2_id"), null, "no nsx"); diff --git a/content/base/test/test_bug604592.html b/content/base/test/test_bug604592.html new file mode 100644 index 00000000000..9184e6ba32c --- /dev/null +++ b/content/base/test/test_bug604592.html @@ -0,0 +1,38 @@ + + + + + Test for Bug 604592 + + + + + +Mozilla Bug 604592 +

+ +
+
+
+ + diff --git a/dom/interfaces/core/nsIDOMAttr.idl b/dom/interfaces/core/nsIDOMAttr.idl index 30cd0f5ddb1..5525721281b 100644 --- a/dom/interfaces/core/nsIDOMAttr.idl +++ b/dom/interfaces/core/nsIDOMAttr.idl @@ -48,7 +48,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf9070-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(669a0f55-1e5d-4471-8de9-a6c6774354dd)] interface nsIDOMAttr : nsIDOMNode { readonly attribute DOMString name; diff --git a/dom/interfaces/core/nsIDOMCDATASection.idl b/dom/interfaces/core/nsIDOMCDATASection.idl index e0a1d629d3b..510810840cd 100644 --- a/dom/interfaces/core/nsIDOMCDATASection.idl +++ b/dom/interfaces/core/nsIDOMCDATASection.idl @@ -49,7 +49,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf9071-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(f8da723d-0d32-4bbc-a11e-898e506cd908)] interface nsIDOMCDATASection : nsIDOMText { }; diff --git a/dom/interfaces/core/nsIDOMCharacterData.idl b/dom/interfaces/core/nsIDOMCharacterData.idl index f7b7e544430..1e0f253d6ed 100644 --- a/dom/interfaces/core/nsIDOMCharacterData.idl +++ b/dom/interfaces/core/nsIDOMCharacterData.idl @@ -47,7 +47,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf9072-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(6ce64178-d600-4e5e-a33a-5bde69f05bd5)] interface nsIDOMCharacterData : nsIDOMNode { attribute DOMString data; diff --git a/dom/interfaces/core/nsIDOMComment.idl b/dom/interfaces/core/nsIDOMComment.idl index f9f932217f5..b07dc510fd2 100644 --- a/dom/interfaces/core/nsIDOMComment.idl +++ b/dom/interfaces/core/nsIDOMComment.idl @@ -48,7 +48,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf9073-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(eaf04950-d409-41a0-a99d-2e4e43c1e33d)] interface nsIDOMComment : nsIDOMCharacterData { }; diff --git a/dom/interfaces/core/nsIDOMDocument.idl b/dom/interfaces/core/nsIDOMDocument.idl index aade6619b46..bf11e4dee8b 100644 --- a/dom/interfaces/core/nsIDOMDocument.idl +++ b/dom/interfaces/core/nsIDOMDocument.idl @@ -54,7 +54,7 @@ interface nsIDOMDOMConfiguration; * http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html */ -[scriptable, uuid(fde1a53b-cf60-4997-a0b2-1aa1dc55492e)] +[scriptable, uuid(3e7421c4-9964-4184-8c75-d291eecdba35)] interface nsIDOMDocument : nsIDOMNode { readonly attribute nsIDOMDocumentType doctype; diff --git a/dom/interfaces/core/nsIDOMDocumentFragment.idl b/dom/interfaces/core/nsIDOMDocumentFragment.idl index af8c5ce50f9..e97d4f3e137 100644 --- a/dom/interfaces/core/nsIDOMDocumentFragment.idl +++ b/dom/interfaces/core/nsIDOMDocumentFragment.idl @@ -48,7 +48,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf9076-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(06376ec5-7c91-45ad-a346-30a06a125935)] interface nsIDOMDocumentFragment : nsIDOMNode { }; diff --git a/dom/interfaces/core/nsIDOMDocumentType.idl b/dom/interfaces/core/nsIDOMDocumentType.idl index 1016e781a4c..689c66947f9 100644 --- a/dom/interfaces/core/nsIDOMDocumentType.idl +++ b/dom/interfaces/core/nsIDOMDocumentType.idl @@ -49,7 +49,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf9077-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(5725a7de-2883-45a5-878e-30773cd82478)] interface nsIDOMDocumentType : nsIDOMNode { readonly attribute DOMString name; diff --git a/dom/interfaces/core/nsIDOMElement.idl b/dom/interfaces/core/nsIDOMElement.idl index 05b0969e531..0e2148ae6f2 100644 --- a/dom/interfaces/core/nsIDOMElement.idl +++ b/dom/interfaces/core/nsIDOMElement.idl @@ -47,7 +47,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf9078-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(f220e259-5c41-4cca-a38b-7267ffa874aa)] interface nsIDOMElement : nsIDOMNode { readonly attribute DOMString tagName; diff --git a/dom/interfaces/core/nsIDOMEntity.idl b/dom/interfaces/core/nsIDOMEntity.idl index 4f3a0d58b43..28f9a80125f 100644 --- a/dom/interfaces/core/nsIDOMEntity.idl +++ b/dom/interfaces/core/nsIDOMEntity.idl @@ -47,7 +47,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf9079-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(944d8c6a-631d-408d-846f-d4ff5fa93ae6)] interface nsIDOMEntity : nsIDOMNode { readonly attribute DOMString publicId; diff --git a/dom/interfaces/core/nsIDOMEntityReference.idl b/dom/interfaces/core/nsIDOMEntityReference.idl index abd7413b0d7..180872b256b 100644 --- a/dom/interfaces/core/nsIDOMEntityReference.idl +++ b/dom/interfaces/core/nsIDOMEntityReference.idl @@ -47,7 +47,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf907a-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(ab7e88aa-7c95-4d0a-94de-c632ca0c25cc)] interface nsIDOMEntityReference : nsIDOMNode { }; diff --git a/dom/interfaces/core/nsIDOMNode.idl b/dom/interfaces/core/nsIDOMNode.idl index 0464a0e135a..1f312dad672 100644 --- a/dom/interfaces/core/nsIDOMNode.idl +++ b/dom/interfaces/core/nsIDOMNode.idl @@ -22,6 +22,7 @@ * Contributor(s): * Vidur Apparao (original author) * Johnny Stenback + * Ms2ger * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), @@ -45,10 +46,10 @@ * It represents a single node in the document tree. * * For more information on this interface please see - * http://www.w3.org/TR/DOM-Level-2-Core/ + * http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html */ -[scriptable, uuid(a6cf907c-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(817dc774-2ad2-4111-9042-1787df86c015)] interface nsIDOMNode : nsISupports { const unsigned short ELEMENT_NODE = 1; @@ -97,9 +98,8 @@ interface nsIDOMNode : nsISupports in DOMString version); // Introduced in DOM Level 2: readonly attribute DOMString namespaceURI; - // Introduced in DOM Level 2: - attribute DOMString prefix; - // raises(DOMException) on setting + // Modified in DOM Core + readonly attribute DOMString prefix; // Introduced in DOM Level 2: readonly attribute DOMString localName; diff --git a/dom/interfaces/core/nsIDOMNotation.idl b/dom/interfaces/core/nsIDOMNotation.idl index 4bafcae11c7..87a5312f5ce 100644 --- a/dom/interfaces/core/nsIDOMNotation.idl +++ b/dom/interfaces/core/nsIDOMNotation.idl @@ -48,7 +48,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf907e-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(43658ade-a157-447a-8dcd-aa7fc824ef0a)] interface nsIDOMNotation : nsIDOMNode { readonly attribute DOMString publicId; diff --git a/dom/interfaces/core/nsIDOMProcessingInstruction.idl b/dom/interfaces/core/nsIDOMProcessingInstruction.idl index bd24bf69953..9d8a27d9879 100644 --- a/dom/interfaces/core/nsIDOMProcessingInstruction.idl +++ b/dom/interfaces/core/nsIDOMProcessingInstruction.idl @@ -48,7 +48,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf907f-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(1c3118cc-4d21-40cc-96c4-9d46facee5d1)] interface nsIDOMProcessingInstruction : nsIDOMNode { readonly attribute DOMString target; diff --git a/dom/interfaces/core/nsIDOMText.idl b/dom/interfaces/core/nsIDOMText.idl index 66930f0d6cd..2aa2fd8c524 100644 --- a/dom/interfaces/core/nsIDOMText.idl +++ b/dom/interfaces/core/nsIDOMText.idl @@ -47,7 +47,7 @@ * http://www.w3.org/TR/DOM-Level-2-Core/ */ -[scriptable, uuid(a6cf9082-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(48642156-d686-46b7-8e96-35edd5b2afa8)] interface nsIDOMText : nsIDOMCharacterData { nsIDOMText splitText(in unsigned long offset) diff --git a/dom/interfaces/core/nsIDOMXMLDocument.idl b/dom/interfaces/core/nsIDOMXMLDocument.idl index 027d94a1f42..0ab98a37ad9 100644 --- a/dom/interfaces/core/nsIDOMXMLDocument.idl +++ b/dom/interfaces/core/nsIDOMXMLDocument.idl @@ -38,7 +38,7 @@ #include "nsIDOMDocument.idl" -[scriptable, uuid(5eb33612-2f3c-424d-acd8-3ff9cc358ad1)] +[scriptable, uuid(9f07f216-b3a3-4a08-81f1-a48075b91d1c)] interface nsIDOMXMLDocument : nsIDOMDocument { // DOM Level 3 Load & Save, DocumentLS diff --git a/dom/interfaces/html/nsIDOMHTMLAnchorElement.idl b/dom/interfaces/html/nsIDOMHTMLAnchorElement.idl index c35941107e4..f454fb94b4c 100644 --- a/dom/interfaces/html/nsIDOMHTMLAnchorElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLAnchorElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(4e237175-3628-4dc8-892f-5270edc3c71a)] +[scriptable, uuid(99419cf8-5835-4c2a-b013-189b17f0423f)] interface nsIDOMHTMLAnchorElement : nsIDOMHTMLElement { attribute DOMString href; diff --git a/dom/interfaces/html/nsIDOMHTMLAppletElement.idl b/dom/interfaces/html/nsIDOMHTMLAppletElement.idl index 685305eae81..f88f8195c8d 100644 --- a/dom/interfaces/html/nsIDOMHTMLAppletElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLAppletElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90ae-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(a70cc757-4640-4c73-b73b-eb07cf43d90b)] interface nsIDOMHTMLAppletElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLAreaElement.idl b/dom/interfaces/html/nsIDOMHTMLAreaElement.idl index 393f8655441..a1e74b61e50 100644 --- a/dom/interfaces/html/nsIDOMHTMLAreaElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLAreaElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(fca7d30d-c834-470d-9bb2-25eddfedd86b)] +[scriptable, uuid(89547ef1-f349-4c4f-ada7-5d51234de0c0)] interface nsIDOMHTMLAreaElement : nsIDOMHTMLElement { attribute DOMString alt; diff --git a/dom/interfaces/html/nsIDOMHTMLAudioElement.idl b/dom/interfaces/html/nsIDOMHTMLAudioElement.idl index 886a49b7d92..d35538093c7 100644 --- a/dom/interfaces/html/nsIDOMHTMLAudioElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLAudioElement.idl @@ -52,7 +52,7 @@ * @status UNDER_DEVELOPMENT */ -[scriptable, uuid(cd1a6a6b-bc4c-4e5a-b7da-53dccc878ab8)] +[scriptable, uuid(8cb32fc5-d302-46ab-ac91-5bcb21d05023)] interface nsIDOMHTMLAudioElement : nsIDOMHTMLMediaElement { // Setup the audio stream for writing diff --git a/dom/interfaces/html/nsIDOMHTMLBRElement.idl b/dom/interfaces/html/nsIDOMHTMLBRElement.idl index 625b749e241..d957b5d464b 100644 --- a/dom/interfaces/html/nsIDOMHTMLBRElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLBRElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90a5-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(e7ecc247-4f30-4de2-835f-642ad76af28f)] interface nsIDOMHTMLBRElement : nsIDOMHTMLElement { attribute DOMString clear; diff --git a/dom/interfaces/html/nsIDOMHTMLBaseElement.idl b/dom/interfaces/html/nsIDOMHTMLBaseElement.idl index 559826ca747..5ab8a31b545 100644 --- a/dom/interfaces/html/nsIDOMHTMLBaseElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLBaseElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf908b-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(43fc71aa-f089-4056-b3a6-2259d13fb11a)] interface nsIDOMHTMLBaseElement : nsIDOMHTMLElement { attribute DOMString href; diff --git a/dom/interfaces/html/nsIDOMHTMLBodyElement.idl b/dom/interfaces/html/nsIDOMHTMLBodyElement.idl index 6547fdf17dc..a870dabaa0f 100644 --- a/dom/interfaces/html/nsIDOMHTMLBodyElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLBodyElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf908e-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(22c641f6-f39b-4f6b-b1f5-8271a200bf01)] interface nsIDOMHTMLBodyElement : nsIDOMHTMLElement { attribute DOMString aLink; diff --git a/dom/interfaces/html/nsIDOMHTMLButtonElement.idl b/dom/interfaces/html/nsIDOMHTMLButtonElement.idl index 34faf2047c7..212f2b6958e 100644 --- a/dom/interfaces/html/nsIDOMHTMLButtonElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLButtonElement.idl @@ -52,7 +52,7 @@ interface nsIDOMValidityState; -[scriptable, uuid(bcae78a1-9f9b-46bf-abb5-a3fe410d97ae)] +[scriptable, uuid(e158abd8-2521-4ce9-af68-26b70ada7614)] interface nsIDOMHTMLButtonElement : nsIDOMHTMLElement { attribute boolean autofocus; diff --git a/dom/interfaces/html/nsIDOMHTMLCanvasElement.idl b/dom/interfaces/html/nsIDOMHTMLCanvasElement.idl index 809e7bb94da..b68161f2ac7 100644 --- a/dom/interfaces/html/nsIDOMHTMLCanvasElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLCanvasElement.idl @@ -54,7 +54,7 @@ interface nsIDOMFile; -[scriptable, uuid(6b44a95a-c0ad-41f9-beb5-579bdb8698f2)] +[scriptable, uuid(f11cc1ae-3c8d-46b9-90cd-7b3f3395b2dd)] interface nsIDOMHTMLCanvasElement : nsIDOMHTMLElement { attribute unsigned long width; diff --git a/dom/interfaces/html/nsIDOMHTMLDListElement.idl b/dom/interfaces/html/nsIDOMHTMLDListElement.idl index 5767ac3a3c6..9e139e81c0d 100644 --- a/dom/interfaces/html/nsIDOMHTMLDListElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLDListElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf909b-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(a291df4d-ee6f-46f7-b1d8-9680a387c23e)] interface nsIDOMHTMLDListElement : nsIDOMHTMLElement { attribute boolean compact; diff --git a/dom/interfaces/html/nsIDOMHTMLDataListElement.idl b/dom/interfaces/html/nsIDOMHTMLDataListElement.idl index 33895fd9adc..6a9988b9156 100644 --- a/dom/interfaces/html/nsIDOMHTMLDataListElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLDataListElement.idl @@ -49,7 +49,7 @@ interface nsIDOMHTMLCollection; -[scriptable, uuid(ec66a63e-8a23-4a85-bd53-050b49a2b048)] +[scriptable, uuid(cbea212b-8dda-42a5-b2c4-5942f55e1dfe)] interface nsIDOMHTMLDataListElement : nsIDOMHTMLElement { readonly attribute nsIDOMHTMLCollection options; diff --git a/dom/interfaces/html/nsIDOMHTMLDirectoryElement.idl b/dom/interfaces/html/nsIDOMHTMLDirectoryElement.idl index 19312bff1b9..684bdb15078 100644 --- a/dom/interfaces/html/nsIDOMHTMLDirectoryElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLDirectoryElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf909c-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(65f89019-bcf9-4661-8211-f52dbb9a7fe5)] interface nsIDOMHTMLDirectoryElement : nsIDOMHTMLElement { attribute boolean compact; diff --git a/dom/interfaces/html/nsIDOMHTMLDivElement.idl b/dom/interfaces/html/nsIDOMHTMLDivElement.idl index f076d52ec4b..967d387a48f 100644 --- a/dom/interfaces/html/nsIDOMHTMLDivElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLDivElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90a0-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(06b50d6a-611e-4f3c-baa6-3af81155f0bb)] interface nsIDOMHTMLDivElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLDocument.idl b/dom/interfaces/html/nsIDOMHTMLDocument.idl index 226f9e02919..fc447fea36a 100644 --- a/dom/interfaces/html/nsIDOMHTMLDocument.idl +++ b/dom/interfaces/html/nsIDOMHTMLDocument.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(fdab9ba2-c6ff-42c1-83ad-dea0b22af986)] +[scriptable, uuid(0d3bef04-a890-4dbc-8571-b8e96ff5426b)] interface nsIDOMHTMLDocument : nsIDOMDocument { attribute DOMString title; diff --git a/dom/interfaces/html/nsIDOMHTMLElement.idl b/dom/interfaces/html/nsIDOMHTMLElement.idl index ff2c0b24d26..32589ad9a08 100644 --- a/dom/interfaces/html/nsIDOMHTMLElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLElement.idl @@ -51,7 +51,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf9085-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(092ef5f6-3f54-468a-a1a5-ca922f8ef547)] interface nsIDOMHTMLElement : nsIDOMElement { attribute DOMString id; diff --git a/dom/interfaces/html/nsIDOMHTMLEmbedElement.idl b/dom/interfaces/html/nsIDOMHTMLEmbedElement.idl index f3de3799a80..4a7f72f7986 100644 --- a/dom/interfaces/html/nsIDOMHTMLEmbedElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLEmbedElement.idl @@ -47,7 +47,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/#the-embed-element */ -[scriptable, uuid(123f90ab-15b3-11d2-456e-00805f8add32)] +[scriptable, uuid(6eebf0ac-b388-4942-ad83-3e43b327c360)] interface nsIDOMHTMLEmbedElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLFieldSetElement.idl b/dom/interfaces/html/nsIDOMHTMLFieldSetElement.idl index 8465dc2913a..672d3ba12ab 100644 --- a/dom/interfaces/html/nsIDOMHTMLFieldSetElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLFieldSetElement.idl @@ -52,7 +52,7 @@ interface nsIDOMValidityState; -[scriptable, uuid(58db2166-36fc-482c-a9f8-84ad262537b2)] +[scriptable, uuid(1bcb97d2-47f6-403f-ae10-65e00ad728f5)] interface nsIDOMHTMLFieldSetElement : nsIDOMHTMLElement { attribute boolean disabled; diff --git a/dom/interfaces/html/nsIDOMHTMLFontElement.idl b/dom/interfaces/html/nsIDOMHTMLFontElement.idl index 0d6878a0b53..ee54830b42a 100644 --- a/dom/interfaces/html/nsIDOMHTMLFontElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLFontElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90a7-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(a2e78525-ade0-41bb-8bf0-041a32dc467e)] interface nsIDOMHTMLFontElement : nsIDOMHTMLElement { attribute DOMString color; diff --git a/dom/interfaces/html/nsIDOMHTMLFormElement.idl b/dom/interfaces/html/nsIDOMHTMLFormElement.idl index 7dad1dc7398..e4f43ce1c69 100644 --- a/dom/interfaces/html/nsIDOMHTMLFormElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLFormElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(0884ce23-e069-499e-a13c-a91c8ae0fc98)] +[scriptable, uuid(746363ef-0164-4868-8cf4-e6a695bd4cc7)] interface nsIDOMHTMLFormElement : nsIDOMHTMLElement { attribute DOMString name; diff --git a/dom/interfaces/html/nsIDOMHTMLFrameElement.idl b/dom/interfaces/html/nsIDOMHTMLFrameElement.idl index 3d86d92333f..9bd3f0e1564 100644 --- a/dom/interfaces/html/nsIDOMHTMLFrameElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLFrameElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90b9-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(74a61421-d692-4f51-aee8-2409daebde0d)] interface nsIDOMHTMLFrameElement : nsIDOMHTMLElement { attribute DOMString frameBorder; diff --git a/dom/interfaces/html/nsIDOMHTMLFrameSetElement.idl b/dom/interfaces/html/nsIDOMHTMLFrameSetElement.idl index b15cfd5b83d..86f244378a6 100644 --- a/dom/interfaces/html/nsIDOMHTMLFrameSetElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLFrameSetElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90b8-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(dd600777-2812-4986-859a-8e9090aee1da)] interface nsIDOMHTMLFrameSetElement : nsIDOMHTMLElement { attribute DOMString cols; diff --git a/dom/interfaces/html/nsIDOMHTMLHRElement.idl b/dom/interfaces/html/nsIDOMHTMLHRElement.idl index 46cade332e1..c9a6b7cd5e3 100644 --- a/dom/interfaces/html/nsIDOMHTMLHRElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLHRElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90a8-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(95573fb0-58eb-4740-ab11-a0e84ab67d3a)] interface nsIDOMHTMLHRElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLHeadElement.idl b/dom/interfaces/html/nsIDOMHTMLHeadElement.idl index ab6b77b7476..5758cb4b8a9 100644 --- a/dom/interfaces/html/nsIDOMHTMLHeadElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLHeadElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf9087-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(97c0fbe3-f79c-4fe3-b891-dfabcf74a614)] interface nsIDOMHTMLHeadElement : nsIDOMHTMLElement { [noscript] attribute DOMString profile; diff --git a/dom/interfaces/html/nsIDOMHTMLHeadingElement.idl b/dom/interfaces/html/nsIDOMHTMLHeadingElement.idl index 0dca71ecf55..b2349a6698c 100644 --- a/dom/interfaces/html/nsIDOMHTMLHeadingElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLHeadingElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90a2-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(2f103fa6-27ae-409a-95a9-a842dd2feeba)] interface nsIDOMHTMLHeadingElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLHtmlElement.idl b/dom/interfaces/html/nsIDOMHTMLHtmlElement.idl index 394faef2076..ebfbee86df0 100644 --- a/dom/interfaces/html/nsIDOMHTMLHtmlElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLHtmlElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf9086-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(3947d0f1-6b16-4bf7-a7e5-e042c5ce5975)] interface nsIDOMHTMLHtmlElement : nsIDOMHTMLElement { attribute DOMString version; diff --git a/dom/interfaces/html/nsIDOMHTMLIFrameElement.idl b/dom/interfaces/html/nsIDOMHTMLIFrameElement.idl index c46c676498e..fa8b8b8a845 100644 --- a/dom/interfaces/html/nsIDOMHTMLIFrameElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLIFrameElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90ba-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(9cad6a82-1ffe-4990-9f32-37634e2873ff)] interface nsIDOMHTMLIFrameElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLImageElement.idl b/dom/interfaces/html/nsIDOMHTMLImageElement.idl index 9a58810f911..ee505369089 100644 --- a/dom/interfaces/html/nsIDOMHTMLImageElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLImageElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(3fc9c313-49b9-4315-b39f-7166cf362e10)] +[scriptable, uuid(e5747c9e-c805-4dfd-ae15-827a331533ba)] interface nsIDOMHTMLImageElement : nsIDOMHTMLElement { attribute DOMString alt; diff --git a/dom/interfaces/html/nsIDOMHTMLInputElement.idl b/dom/interfaces/html/nsIDOMHTMLInputElement.idl index dac8f4c2ce0..ada7b7670a7 100644 --- a/dom/interfaces/html/nsIDOMHTMLInputElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLInputElement.idl @@ -54,7 +54,7 @@ interface nsIDOMValidityState; * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(0805059d-f18f-4095-ae6b-0bf6df80b7b8)] +[scriptable, uuid(bcf00efc-5217-4350-9fbc-e3059190830a)] interface nsIDOMHTMLInputElement : nsIDOMHTMLElement { attribute DOMString accept; diff --git a/dom/interfaces/html/nsIDOMHTMLIsIndexElement.idl b/dom/interfaces/html/nsIDOMHTMLIsIndexElement.idl index 795204a2157..e641021d1b3 100644 --- a/dom/interfaces/html/nsIDOMHTMLIsIndexElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLIsIndexElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf908c-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(9d1384b5-d70c-455d-929c-f422f89fcb7e)] interface nsIDOMHTMLIsIndexElement : nsIDOMHTMLElement { readonly attribute nsIDOMHTMLFormElement form; diff --git a/dom/interfaces/html/nsIDOMHTMLLIElement.idl b/dom/interfaces/html/nsIDOMHTMLLIElement.idl index c8479b2071a..aa4e3a21de6 100644 --- a/dom/interfaces/html/nsIDOMHTMLLIElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLLIElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf909e-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(e48b4094-9858-4aff-8e83-901fae94cd60)] interface nsIDOMHTMLLIElement : nsIDOMHTMLElement { attribute DOMString type; diff --git a/dom/interfaces/html/nsIDOMHTMLLabelElement.idl b/dom/interfaces/html/nsIDOMHTMLLabelElement.idl index fde1539b27b..c2f5a5b837d 100644 --- a/dom/interfaces/html/nsIDOMHTMLLabelElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLLabelElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(8a207452-e725-4a9e-beb6-9e0c0a65012c)] +[scriptable, uuid(1a36591e-2538-4685-bb23-cb80300539db)] interface nsIDOMHTMLLabelElement : nsIDOMHTMLElement { readonly attribute nsIDOMHTMLFormElement form; diff --git a/dom/interfaces/html/nsIDOMHTMLLegendElement.idl b/dom/interfaces/html/nsIDOMHTMLLegendElement.idl index bd38283cdee..607b3465e06 100644 --- a/dom/interfaces/html/nsIDOMHTMLLegendElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLLegendElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf9098-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(e68756ab-a35b-41b8-b9e7-bf0c0c1fa953)] interface nsIDOMHTMLLegendElement : nsIDOMHTMLElement { readonly attribute nsIDOMHTMLFormElement form; diff --git a/dom/interfaces/html/nsIDOMHTMLLinkElement.idl b/dom/interfaces/html/nsIDOMHTMLLinkElement.idl index fb3a4fb2cbc..cb8da366391 100644 --- a/dom/interfaces/html/nsIDOMHTMLLinkElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLLinkElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf9088-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(efceac0d-dc51-4c03-8658-7225c8cba4d3)] interface nsIDOMHTMLLinkElement : nsIDOMHTMLElement { attribute boolean disabled; diff --git a/dom/interfaces/html/nsIDOMHTMLMapElement.idl b/dom/interfaces/html/nsIDOMHTMLMapElement.idl index ebac76ec842..af93fa6ca88 100644 --- a/dom/interfaces/html/nsIDOMHTMLMapElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLMapElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90af-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(dcf3850e-700e-4ef0-a67f-1e3dd9cdce9a)] interface nsIDOMHTMLMapElement : nsIDOMHTMLElement { readonly attribute nsIDOMHTMLCollection areas; diff --git a/dom/interfaces/html/nsIDOMHTMLMediaElement.idl b/dom/interfaces/html/nsIDOMHTMLMediaElement.idl index 6fd49aad4eb..68e6eb6a1a2 100644 --- a/dom/interfaces/html/nsIDOMHTMLMediaElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLMediaElement.idl @@ -57,7 +57,7 @@ #endif %} -[scriptable, uuid(91f65f50-74ea-40ea-8e26-652290738730)] +[scriptable, uuid(b1a6e147-6934-43dc-b07e-8d1b40980b90)] interface nsIDOMHTMLMediaElement : nsIDOMHTMLElement { // error state diff --git a/dom/interfaces/html/nsIDOMHTMLMenuElement.idl b/dom/interfaces/html/nsIDOMHTMLMenuElement.idl index e59503bfd72..1755a4f495e 100644 --- a/dom/interfaces/html/nsIDOMHTMLMenuElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLMenuElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf909d-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(df6c8120-e52e-4ea9-b49e-b83928487e75)] interface nsIDOMHTMLMenuElement : nsIDOMHTMLElement { attribute boolean compact; diff --git a/dom/interfaces/html/nsIDOMHTMLMetaElement.idl b/dom/interfaces/html/nsIDOMHTMLMetaElement.idl index 739598f764a..4b0ed84764e 100644 --- a/dom/interfaces/html/nsIDOMHTMLMetaElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLMetaElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf908a-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(2cde45b3-1cc8-4a91-af52-a05ff8e78e3e)] interface nsIDOMHTMLMetaElement : nsIDOMHTMLElement { attribute DOMString content; diff --git a/dom/interfaces/html/nsIDOMHTMLModElement.idl b/dom/interfaces/html/nsIDOMHTMLModElement.idl index fa218d59cea..2b9edfae1ea 100644 --- a/dom/interfaces/html/nsIDOMHTMLModElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLModElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90a9-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(9164daf4-974e-4862-b913-e0e73372df86)] interface nsIDOMHTMLModElement : nsIDOMHTMLElement { attribute DOMString cite; diff --git a/dom/interfaces/html/nsIDOMHTMLOListElement.idl b/dom/interfaces/html/nsIDOMHTMLOListElement.idl index ece5f3a032c..cbdf8473df8 100644 --- a/dom/interfaces/html/nsIDOMHTMLOListElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLOListElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf909a-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(5efcd7a0-8ca1-4efa-83fa-ea8f5fd29e76)] interface nsIDOMHTMLOListElement : nsIDOMHTMLElement { attribute boolean compact; diff --git a/dom/interfaces/html/nsIDOMHTMLObjectElement.idl b/dom/interfaces/html/nsIDOMHTMLObjectElement.idl index 4357a2dd4db..ec7968e06be 100644 --- a/dom/interfaces/html/nsIDOMHTMLObjectElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLObjectElement.idl @@ -52,7 +52,7 @@ interface nsIDOMValidityState; -[scriptable, uuid(9b93aab4-7fe8-4f79-9ad2-0623178a0c46)] +[scriptable, uuid(b11e44f3-c15c-494a-a89f-879fe9814cda)] interface nsIDOMHTMLObjectElement : nsIDOMHTMLElement { readonly attribute nsIDOMHTMLFormElement form; diff --git a/dom/interfaces/html/nsIDOMHTMLOptGroupElement.idl b/dom/interfaces/html/nsIDOMHTMLOptGroupElement.idl index 2dc9146219a..11d499b9275 100644 --- a/dom/interfaces/html/nsIDOMHTMLOptGroupElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLOptGroupElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf9091-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(a47a2815-3115-46fb-915a-1ce3eea13a1a)] interface nsIDOMHTMLOptGroupElement : nsIDOMHTMLElement { attribute boolean disabled; diff --git a/dom/interfaces/html/nsIDOMHTMLOptionElement.idl b/dom/interfaces/html/nsIDOMHTMLOptionElement.idl index b1287bc0352..56130e1a9a9 100644 --- a/dom/interfaces/html/nsIDOMHTMLOptionElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLOptionElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(611d00f5-1eb8-4571-b995-2a2019d2d11c)] +[scriptable, uuid(40465e21-dd35-4d8b-8d07-70a51b4fb9d1)] interface nsIDOMHTMLOptionElement : nsIDOMHTMLElement { attribute boolean disabled; diff --git a/dom/interfaces/html/nsIDOMHTMLOutputElement.idl b/dom/interfaces/html/nsIDOMHTMLOutputElement.idl index bf1e45e18ea..062858464fe 100644 --- a/dom/interfaces/html/nsIDOMHTMLOutputElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLOutputElement.idl @@ -50,7 +50,7 @@ interface nsIDOMDOMSettableTokenList; interface nsIDOMValidityState; -[scriptable, uuid(0f7f15a9-ea72-4feb-b2b5-2fcbc9c10ab8)] +[scriptable, uuid(8c46bfd3-c4cb-4b97-b011-2c8fd2811aca)] interface nsIDOMHTMLOutputElement : nsIDOMHTMLElement { readonly attribute nsIDOMDOMSettableTokenList htmlFor; diff --git a/dom/interfaces/html/nsIDOMHTMLParagraphElement.idl b/dom/interfaces/html/nsIDOMHTMLParagraphElement.idl index 43044cc24eb..8a1b2d51af7 100644 --- a/dom/interfaces/html/nsIDOMHTMLParagraphElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLParagraphElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90a1-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(4e83739e-1756-40dd-9bdf-eab1bf515239)] interface nsIDOMHTMLParagraphElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLParamElement.idl b/dom/interfaces/html/nsIDOMHTMLParamElement.idl index 46f6fc369af..e88f988828f 100644 --- a/dom/interfaces/html/nsIDOMHTMLParamElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLParamElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90ad-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(3d42b355-2e24-4b2f-8221-69e7a9fe373e)] interface nsIDOMHTMLParamElement : nsIDOMHTMLElement { attribute DOMString name; diff --git a/dom/interfaces/html/nsIDOMHTMLPreElement.idl b/dom/interfaces/html/nsIDOMHTMLPreElement.idl index b52cb02589a..31370ba6434 100644 --- a/dom/interfaces/html/nsIDOMHTMLPreElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLPreElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90a4-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(b069f384-b2bf-4b8f-887d-427389c02e53)] interface nsIDOMHTMLPreElement : nsIDOMHTMLElement { attribute long width; diff --git a/dom/interfaces/html/nsIDOMHTMLQuoteElement.idl b/dom/interfaces/html/nsIDOMHTMLQuoteElement.idl index d3fd2e24e46..234d700e844 100644 --- a/dom/interfaces/html/nsIDOMHTMLQuoteElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLQuoteElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90a3-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(b09051e3-a24c-4912-b6f3-a53d050e4439)] interface nsIDOMHTMLQuoteElement : nsIDOMHTMLElement { attribute DOMString cite; diff --git a/dom/interfaces/html/nsIDOMHTMLScriptElement.idl b/dom/interfaces/html/nsIDOMHTMLScriptElement.idl index 7137e64aa3e..5591cde09ce 100644 --- a/dom/interfaces/html/nsIDOMHTMLScriptElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLScriptElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(4af8568c-375c-42fd-a82f-b25a7c03fc3e)] +[scriptable, uuid(8143a6fa-58f0-43fa-a300-e590fcf5f2f1)] interface nsIDOMHTMLScriptElement : nsIDOMHTMLElement { attribute DOMString src; diff --git a/dom/interfaces/html/nsIDOMHTMLSelectElement.idl b/dom/interfaces/html/nsIDOMHTMLSelectElement.idl index 50949a4347f..0f4a23745e6 100644 --- a/dom/interfaces/html/nsIDOMHTMLSelectElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLSelectElement.idl @@ -53,7 +53,7 @@ interface nsIDOMValidityState; -[scriptable, uuid(da2be32d-63de-47ae-8c81-7ab8ac6b5aae)] +[scriptable, uuid(438a6680-f9e2-4f98-875e-b6083cbe3e77)] interface nsIDOMHTMLSelectElement : nsIDOMHTMLElement { attribute boolean autofocus; diff --git a/dom/interfaces/html/nsIDOMHTMLSourceElement.idl b/dom/interfaces/html/nsIDOMHTMLSourceElement.idl index bf9c249e472..7f150c71d5b 100644 --- a/dom/interfaces/html/nsIDOMHTMLSourceElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLSourceElement.idl @@ -48,7 +48,7 @@ * @status UNDER_DEVELOPMENT */ -[scriptable, uuid(be281029-7dd9-4268-963e-96f5196acc19)] +[scriptable, uuid(23ab8a3e-d6e5-4ed3-8c89-7a1ac31c67f2)] interface nsIDOMHTMLSourceElement : nsIDOMHTMLElement { attribute DOMString src; diff --git a/dom/interfaces/html/nsIDOMHTMLStyleElement.idl b/dom/interfaces/html/nsIDOMHTMLStyleElement.idl index f0d409d9682..fd0ee1cb30e 100644 --- a/dom/interfaces/html/nsIDOMHTMLStyleElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLStyleElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf908d-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(7cfe7566-5b1b-4931-9969-3d64c4a8cee1)] interface nsIDOMHTMLStyleElement : nsIDOMHTMLElement { attribute boolean disabled; diff --git a/dom/interfaces/html/nsIDOMHTMLTableCaptionElem.idl b/dom/interfaces/html/nsIDOMHTMLTableCaptionElem.idl index 920ea8a407b..d20b47078d8 100644 --- a/dom/interfaces/html/nsIDOMHTMLTableCaptionElem.idl +++ b/dom/interfaces/html/nsIDOMHTMLTableCaptionElem.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90b3-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(d8d86ab3-6bc2-4615-a7ee-24be42a44a46)] interface nsIDOMHTMLTableCaptionElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLTableCellElement.idl b/dom/interfaces/html/nsIDOMHTMLTableCellElement.idl index 347ed28f7b1..ce0efcaf06d 100644 --- a/dom/interfaces/html/nsIDOMHTMLTableCellElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLTableCellElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90b7-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(8b44d956-4da8-4b61-a0ee-2ae6773bd2ce)] interface nsIDOMHTMLTableCellElement : nsIDOMHTMLElement { readonly attribute long cellIndex; diff --git a/dom/interfaces/html/nsIDOMHTMLTableColElement.idl b/dom/interfaces/html/nsIDOMHTMLTableColElement.idl index 9ff47cd8e33..dc806dfb858 100644 --- a/dom/interfaces/html/nsIDOMHTMLTableColElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLTableColElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90b4-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(3ce8cdfa-9bb0-4a42-a483-c3cb978f7864)] interface nsIDOMHTMLTableColElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLTableElement.idl b/dom/interfaces/html/nsIDOMHTMLTableElement.idl index 0525a8db308..9284708a096 100644 --- a/dom/interfaces/html/nsIDOMHTMLTableElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLTableElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90b2-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(5287af67-bcac-4db7-8dd7-6a60cde335b0)] interface nsIDOMHTMLTableElement : nsIDOMHTMLElement { // Modified in DOM Level 2: diff --git a/dom/interfaces/html/nsIDOMHTMLTableRowElement.idl b/dom/interfaces/html/nsIDOMHTMLTableRowElement.idl index 707e636f400..8456aaca39b 100644 --- a/dom/interfaces/html/nsIDOMHTMLTableRowElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLTableRowElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90b6-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(32cba7ef-5cda-49a3-b1a8-f6defb13aa4e)] interface nsIDOMHTMLTableRowElement : nsIDOMHTMLElement { // Modified in DOM Level 2: diff --git a/dom/interfaces/html/nsIDOMHTMLTableSectionElem.idl b/dom/interfaces/html/nsIDOMHTMLTableSectionElem.idl index 7a8d402622c..e2383b5870f 100644 --- a/dom/interfaces/html/nsIDOMHTMLTableSectionElem.idl +++ b/dom/interfaces/html/nsIDOMHTMLTableSectionElem.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf90b5-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(669bdaf8-f3c5-4925-a054-fbd11d63de59)] interface nsIDOMHTMLTableSectionElement : nsIDOMHTMLElement { attribute DOMString align; diff --git a/dom/interfaces/html/nsIDOMHTMLTextAreaElement.idl b/dom/interfaces/html/nsIDOMHTMLTextAreaElement.idl index 11a48cd0aff..d326f9e663c 100644 --- a/dom/interfaces/html/nsIDOMHTMLTextAreaElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLTextAreaElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(7a403df9-8911-499b-afbf-98a1bbc20dd1)] +[scriptable, uuid(cbc46753-1e54-43cd-afc9-068501abffb9)] interface nsIDOMHTMLTextAreaElement : nsIDOMHTMLElement { // Modified in DOM Level 2: diff --git a/dom/interfaces/html/nsIDOMHTMLTitleElement.idl b/dom/interfaces/html/nsIDOMHTMLTitleElement.idl index 61a3e6550cd..79878437338 100644 --- a/dom/interfaces/html/nsIDOMHTMLTitleElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLTitleElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf9089-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(df203632-8ff0-4435-966f-449b11ce4d48)] interface nsIDOMHTMLTitleElement : nsIDOMHTMLElement { attribute DOMString text; diff --git a/dom/interfaces/html/nsIDOMHTMLUListElement.idl b/dom/interfaces/html/nsIDOMHTMLUListElement.idl index 64e42ea2f49..8b17fd00e33 100644 --- a/dom/interfaces/html/nsIDOMHTMLUListElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLUListElement.idl @@ -50,7 +50,7 @@ * http://www.whatwg.org/specs/web-apps/current-work/ */ -[scriptable, uuid(a6cf9099-15b3-11d2-932e-00805f8add32)] +[scriptable, uuid(ee2d4c7c-6f45-4746-8f07-67012dd41b9e)] interface nsIDOMHTMLUListElement : nsIDOMHTMLElement { attribute boolean compact; diff --git a/dom/interfaces/html/nsIDOMHTMLUnknownElement.idl b/dom/interfaces/html/nsIDOMHTMLUnknownElement.idl index 364b5bb281b..67377041257 100644 --- a/dom/interfaces/html/nsIDOMHTMLUnknownElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLUnknownElement.idl @@ -43,7 +43,7 @@ * * @see */ -[scriptable, uuid(13d29c53-a9a6-45b8-bb69-e5294bb6e09e)] +[scriptable, uuid(3ed18057-6dc0-43f4-834e-25118c840482)] interface nsIDOMHTMLUnknownElement : nsIDOMHTMLElement { }; diff --git a/dom/interfaces/html/nsIDOMHTMLVideoElement.idl b/dom/interfaces/html/nsIDOMHTMLVideoElement.idl index b6d653dbaee..4123209cc84 100644 --- a/dom/interfaces/html/nsIDOMHTMLVideoElement.idl +++ b/dom/interfaces/html/nsIDOMHTMLVideoElement.idl @@ -48,7 +48,7 @@ * @status UNDER_DEVELOPMENT */ -[scriptable, uuid(e1f52aa5-9962-4019-b7b3-af3aee6e4d48)] +[scriptable, uuid(59b7aa25-7857-4f2c-a11e-ab921a76e6c7)] interface nsIDOMHTMLVideoElement : nsIDOMHTMLMediaElement { attribute long width; diff --git a/dom/interfaces/svg/nsIDOMSVGAElement.idl b/dom/interfaces/svg/nsIDOMSVGAElement.idl index ef97f1e0773..8a7e9c5dab7 100644 --- a/dom/interfaces/svg/nsIDOMSVGAElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGAElement.idl @@ -44,7 +44,7 @@ interface nsIDOMSVGAnimatedString; -[scriptable, uuid(35d3365a-3e6f-4cdf-983d-fdaed1564478)] +[scriptable, uuid(4b1c2d6b-71c2-4dd0-96fc-84c1872786ce)] interface nsIDOMSVGAElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGAltGlyphElement.idl b/dom/interfaces/svg/nsIDOMSVGAltGlyphElement.idl index 1839ae17576..50d0446fabd 100644 --- a/dom/interfaces/svg/nsIDOMSVGAltGlyphElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGAltGlyphElement.idl @@ -35,7 +35,7 @@ #include "nsIDOMSVGTextPositionElem.idl" -[scriptable, uuid(b688b5fd-48b6-447c-bb20-766a9392d0d0)] +[scriptable, uuid(f624c6ea-ced6-404a-b8a0-5f67a4d86bce)] interface nsIDOMSVGAltGlyphElement : nsIDOMSVGTextPositioningElement /* The SVG DOM makes use of multiple interface inheritance. diff --git a/dom/interfaces/svg/nsIDOMSVGAnimationElement.idl b/dom/interfaces/svg/nsIDOMSVGAnimationElement.idl index 1c823081abc..e35d3d75e0f 100644 --- a/dom/interfaces/svg/nsIDOMSVGAnimationElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGAnimationElement.idl @@ -37,7 +37,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(8f2ccf31-5544-4a9d-8927-ef35d242039e)] +[scriptable, uuid(4e04c285-80c2-42a2-979f-3786ba42acf5)] interface nsIDOMSVGAnimationElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGCircleElement.idl b/dom/interfaces/svg/nsIDOMSVGCircleElement.idl index cb01db2ff5a..1b6ba6fed6b 100644 --- a/dom/interfaces/svg/nsIDOMSVGCircleElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGCircleElement.idl @@ -40,7 +40,7 @@ interface nsIDOMSVGAnimatedLength; -[scriptable, uuid(0f89f2a4-b168-4602-90f5-1874418c0a6a)] +[scriptable, uuid(db2ba352-d0b2-49fd-859e-64624ad557bc)] interface nsIDOMSVGCircleElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGClipPathElement.idl b/dom/interfaces/svg/nsIDOMSVGClipPathElement.idl index 07282001eab..1be13735326 100644 --- a/dom/interfaces/svg/nsIDOMSVGClipPathElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGClipPathElement.idl @@ -47,7 +47,7 @@ interface nsIDOMSVGAnimatedEnumeration; -[scriptable, uuid(0c3f45a4-e6d0-44e7-a2f8-d128ecf1db9b)] +[scriptable, uuid(3dd19de9-deee-4105-9c5c-c51c68b31326)] interface nsIDOMSVGClipPathElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGDefsElement.idl b/dom/interfaces/svg/nsIDOMSVGDefsElement.idl index feb288949bb..1934be2257f 100644 --- a/dom/interfaces/svg/nsIDOMSVGDefsElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGDefsElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(a2e86036-f04c-4013-9f74-e7090a0aac0a)] +[scriptable, uuid(649d4045-57d0-4937-a19b-e9d52e306a2b)] interface nsIDOMSVGDefsElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGDescElement.idl b/dom/interfaces/svg/nsIDOMSVGDescElement.idl index 6aa4b1c8498..e7748520689 100644 --- a/dom/interfaces/svg/nsIDOMSVGDescElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGDescElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(56f539b7-0b3d-4bac-b60d-9efe220216ea)] +[scriptable, uuid(6c867f82-13b5-4237-a653-d4a21d5d3d0b)] interface nsIDOMSVGDescElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGDocument.idl b/dom/interfaces/svg/nsIDOMSVGDocument.idl index ce63716b28a..90dae80b08d 100644 --- a/dom/interfaces/svg/nsIDOMSVGDocument.idl +++ b/dom/interfaces/svg/nsIDOMSVGDocument.idl @@ -39,7 +39,7 @@ interface nsIDOMSVGSVGElement; -[scriptable, uuid(f9aa3be8-ab84-4e92-a50b-a7481171407a)] +[scriptable, uuid(fc52bd3f-850c-4d80-819f-5bd8321b4b59)] interface nsIDOMSVGDocument : nsIDOMDocument /* , nsIDOMDocumentEvent */ { diff --git a/dom/interfaces/svg/nsIDOMSVGElement.idl b/dom/interfaces/svg/nsIDOMSVGElement.idl index 97a1c9c856d..7b77ebfe05d 100644 --- a/dom/interfaces/svg/nsIDOMSVGElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGElement.idl @@ -40,7 +40,7 @@ interface nsIDOMSVGSVGElement; -[scriptable, uuid(e0be7cbb-81c1-4663-8f95-109d96a60b6b)] +[scriptable, uuid(c358d048-be72-4d39-93dc-0e85b8c9f07b)] interface nsIDOMSVGElement : nsIDOMElement { attribute DOMString id; diff --git a/dom/interfaces/svg/nsIDOMSVGEllipseElement.idl b/dom/interfaces/svg/nsIDOMSVGEllipseElement.idl index 1a269d559d1..2c557eecebe 100644 --- a/dom/interfaces/svg/nsIDOMSVGEllipseElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGEllipseElement.idl @@ -40,7 +40,7 @@ interface nsIDOMSVGAnimatedLength; -[scriptable, uuid(5D1CD1E6-4A14-4056-ACC0-2F78C1672898)] +[scriptable, uuid(2e1af4ae-5d46-4b0c-8d69-624eca05c831)] interface nsIDOMSVGEllipseElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGFilterElement.idl b/dom/interfaces/svg/nsIDOMSVGFilterElement.idl index 7b40c94bd81..8939941e64e 100644 --- a/dom/interfaces/svg/nsIDOMSVGFilterElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGFilterElement.idl @@ -40,7 +40,7 @@ interface nsIDOMSVGAnimatedLength; interface nsIDOMSVGAnimatedEnumeration; interface nsIDOMSVGAnimatedInteger; -[scriptable, uuid(9e81d4ae-190c-4b9d-a076-ebc52a7bf231)] +[scriptable, uuid(56606fdd-9b9e-4b91-a34a-9504af3139dd)] interface nsIDOMSVGFilterElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGFilters.idl b/dom/interfaces/svg/nsIDOMSVGFilters.idl index af929e567f8..d5089ffe053 100644 --- a/dom/interfaces/svg/nsIDOMSVGFilters.idl +++ b/dom/interfaces/svg/nsIDOMSVGFilters.idl @@ -45,7 +45,7 @@ interface nsIDOMSVGAnimatedNumberList; interface nsIDOMSVGAnimatedInteger; interface nsIDOMSVGAnimatedBoolean; -[scriptable, uuid(ab68567a-b830-4c46-9f2f-a28513a9e980)] +[scriptable, uuid(8ec9c323-10dd-45ef-a301-4ecb9ec414dd)] interface nsIDOMSVGFilterPrimitiveStandardAttributes : nsIDOMSVGElement { readonly attribute nsIDOMSVGAnimatedLength x; @@ -55,7 +55,7 @@ interface nsIDOMSVGFilterPrimitiveStandardAttributes : nsIDOMSVGElement readonly attribute nsIDOMSVGAnimatedString result; }; -[scriptable, uuid(8F4DAF4C-DE2D-450f-A373-449AD62E3800)] +[scriptable, uuid(1644ea2b-8fdb-492d-a858-850b7bb570ed)] interface nsIDOMSVGFEBlendElement : nsIDOMSVGFilterPrimitiveStandardAttributes { const unsigned short SVG_MODE_UNKNOWN = 0; @@ -70,7 +70,7 @@ interface nsIDOMSVGFEBlendElement : nsIDOMSVGFilterPrimitiveStandardAttributes readonly attribute nsIDOMSVGAnimatedEnumeration mode; }; -[scriptable, uuid(0E966878-EBF1-4455-86FD-F4C7B1F24777)] +[scriptable, uuid(94d552df-87ea-4eaf-8618-5de29a7a9dbe)] interface nsIDOMSVGFEColorMatrixElement : nsIDOMSVGFilterPrimitiveStandardAttributes { // Color Matrix Types @@ -85,13 +85,13 @@ interface nsIDOMSVGFEColorMatrixElement : nsIDOMSVGFilterPrimitiveStandardAttrib readonly attribute nsIDOMSVGAnimatedNumberList values; }; -[scriptable, uuid(4de6b44a-f909-4948-bc43-5ee2ca6de55b)] +[scriptable, uuid(2871a5c9-d4e5-420c-910c-c98fc2e8cad1)] interface nsIDOMSVGFEComponentTransferElement : nsIDOMSVGFilterPrimitiveStandardAttributes { readonly attribute nsIDOMSVGAnimatedString in1; }; -[scriptable, uuid(cb615c0f-8d4a-4e30-9695-a3dd6f4216ee)] +[scriptable, uuid(1620e78a-cb9d-44ad-99f3-732168a403e6)] interface nsIDOMSVGComponentTransferFunctionElement : nsIDOMSVGElement { // Component Transfer Types @@ -111,7 +111,7 @@ interface nsIDOMSVGComponentTransferFunctionElement : nsIDOMSVGElement readonly attribute nsIDOMSVGAnimatedNumber offset; }; -[scriptable, uuid(6FF3C539-1A3B-4a3f-8ACD-354D349EB7FC)] +[scriptable, uuid(12c63fba-b0f9-41ee-ad57-573650ebde89)] interface nsIDOMSVGFECompositeElement : nsIDOMSVGFilterPrimitiveStandardAttributes { // Operator Types @@ -135,27 +135,27 @@ interface nsIDOMSVGFECompositeElement : nsIDOMSVGFilterPrimitiveStandardAttribut }; -[scriptable, uuid(85719a5d-9688-4c5f-bad5-c21847515200)] +[scriptable, uuid(f13456d1-04b9-45cb-9fbf-fc733d6a0279)] interface nsIDOMSVGFEFuncRElement : nsIDOMSVGComponentTransferFunctionElement { }; -[scriptable, uuid(28555e78-c6c2-4a98-af53-bfc2c6944295)] +[scriptable, uuid(05709de9-e3a9-43c1-a820-585c3f4694be)] interface nsIDOMSVGFEFuncGElement : nsIDOMSVGComponentTransferFunctionElement { }; -[scriptable, uuid(8b139fe7-5d21-4af3-beda-414aa089b3fb)] +[scriptable, uuid(7ed53e92-f831-4e5c-bdd4-ab769e27587e)] interface nsIDOMSVGFEFuncBElement : nsIDOMSVGComponentTransferFunctionElement { }; -[scriptable, uuid(fa48511c-283a-437f-9507-c309ac6f0f57)] +[scriptable, uuid(30893867-f167-4238-bec2-fb0a65cdf779)] interface nsIDOMSVGFEFuncAElement : nsIDOMSVGComponentTransferFunctionElement { }; -[scriptable, uuid(43ff8d42-3380-4dbd-a916-7c2daa3ed7f4)] +[scriptable, uuid(66a74ea4-5504-4a8b-9c3a-b0438615f15e)] interface nsIDOMSVGFEGaussianBlurElement : nsIDOMSVGFilterPrimitiveStandardAttributes { readonly attribute nsIDOMSVGAnimatedString in1; @@ -165,35 +165,35 @@ interface nsIDOMSVGFEGaussianBlurElement : nsIDOMSVGFilterPrimitiveStandardAttri void setStdDeviation ( in float stdDeviationX, in float stdDeviationY ); }; -[scriptable, uuid(b860512c-2547-4d1f-bb43-b57b54d39014)] +[scriptable, uuid(9932eb32-dee0-4848-b0a5-a6c0dfd21182)] interface nsIDOMSVGFEMergeElement : nsIDOMSVGFilterPrimitiveStandardAttributes { }; -[scriptable, uuid(540c3447-4b07-4bd3-84df-30f66b68df14)] +[scriptable, uuid(695a89c2-8eab-4ddd-94e7-509bf2a4f6e8)] interface nsIDOMSVGFEMergeNodeElement : nsIDOMSVGElement { readonly attribute nsIDOMSVGAnimatedString in1; }; -[scriptable, uuid(c080f191-b22c-4fc0-85d5-a79dc3fa7ec8)] +[scriptable, uuid(15acdbf5-6203-4167-b7c1-c746f5dd2478)] interface nsIDOMSVGFEOffsetElement : nsIDOMSVGFilterPrimitiveStandardAttributes { readonly attribute nsIDOMSVGAnimatedString in1; readonly attribute nsIDOMSVGAnimatedNumber dx; readonly attribute nsIDOMSVGAnimatedNumber dy; }; -[scriptable, uuid(2743af95-28c5-429d-9812-12b7b017887e)] +[scriptable, uuid(cf267d0d-813a-4c67-be8e-e65937afba21)] interface nsIDOMSVGFEFloodElement : nsIDOMSVGFilterPrimitiveStandardAttributes { }; -[scriptable, uuid(ed042a81-39fc-4c89-9385-75758a2434b5)] +[scriptable, uuid(380da0f2-f2f5-457e-a79d-7fab3da1eefb)] interface nsIDOMSVGFETileElement : nsIDOMSVGFilterPrimitiveStandardAttributes { readonly attribute nsIDOMSVGAnimatedString in1; }; -[scriptable, uuid(77bc4d70-0d49-4c81-b7a7-7432f0fe3e04)] +[scriptable, uuid(20d41b65-e433-4742-b9e1-08238b139285)] interface nsIDOMSVGFETurbulenceElement : nsIDOMSVGFilterPrimitiveStandardAttributes { // Turbulence Types @@ -213,7 +213,7 @@ interface nsIDOMSVGFETurbulenceElement : nsIDOMSVGFilterPrimitiveStandardAttribu readonly attribute nsIDOMSVGAnimatedEnumeration type; }; -[scriptable, uuid(16154319-FB5F-4473-B360-5065B6096D33)] +[scriptable, uuid(83508db0-be38-4929-8e91-7cfddb921f4a)] interface nsIDOMSVGFEMorphologyElement : nsIDOMSVGFilterPrimitiveStandardAttributes { // Operator Types @@ -229,7 +229,7 @@ interface nsIDOMSVGFEMorphologyElement : nsIDOMSVGFilterPrimitiveStandardAttribu void setRadius ( in float rx, in float ry ); }; -[scriptable, uuid(42109b58-a8c1-4078-b44c-ec1d5d6b9574)] +[scriptable, uuid(5232e1f6-6845-4c29-9677-93852228ab2f)] interface nsIDOMSVGFEConvolveMatrixElement : nsIDOMSVGFilterPrimitiveStandardAttributes { // Edge Mode Values @@ -252,7 +252,7 @@ interface nsIDOMSVGFEConvolveMatrixElement : nsIDOMSVGFilterPrimitiveStandardAtt readonly attribute nsIDOMSVGAnimatedBoolean preserveAlpha; }; -[scriptable, uuid(2e9eb422-2398-4be9-a9b8-b1cc7aa9dd6f)] +[scriptable, uuid(3834f5f7-bb9b-4ba4-9de5-6b12bca6fb46)] interface nsIDOMSVGFEDiffuseLightingElement : nsIDOMSVGFilterPrimitiveStandardAttributes { readonly attribute nsIDOMSVGAnimatedString in1; @@ -262,7 +262,7 @@ interface nsIDOMSVGFEDiffuseLightingElement : nsIDOMSVGFilterPrimitiveStandardA readonly attribute nsIDOMSVGAnimatedNumber kernelUnitLengthY; }; -[scriptable, uuid(49c38287-a7c2-4895-a630-86d2b45df23c)] +[scriptable, uuid(3e60f5df-f77a-4fe2-bcad-881865cfc21f)] interface nsIDOMSVGFESpecularLightingElement : nsIDOMSVGFilterPrimitiveStandardAttributes { readonly attribute nsIDOMSVGAnimatedString in1; @@ -298,7 +298,7 @@ interface nsIDOMSVGFESpotLightElement : nsIDOMSVGElement { readonly attribute nsIDOMSVGAnimatedNumber limitingConeAngle; }; -[scriptable, uuid(3250f5c9-9c76-4e77-96d8-5f0cc85f41c4)] +[scriptable, uuid(d36089cf-ade0-48e8-9540-40ee35838f88)] interface nsIDOMSVGFEImageElement : nsIDOMSVGFilterPrimitiveStandardAttributes /* nsIDOMSVGURIReference, @@ -308,7 +308,7 @@ interface nsIDOMSVGFEImageElement : nsIDOMSVGFilterPrimitiveStandardAttributes { }; -[scriptable, uuid(80e1ea9c-eff3-490a-8c98-918963d2e7e9)] +[scriptable, uuid(821533e9-9da9-4ea4-8d53-5fb9170fa952)] interface nsIDOMSVGFEDisplacementMapElement : nsIDOMSVGFilterPrimitiveStandardAttributes { // Channel Selectors diff --git a/dom/interfaces/svg/nsIDOMSVGForeignObjectElem.idl b/dom/interfaces/svg/nsIDOMSVGForeignObjectElem.idl index 8534f92e67e..f6b415df8f9 100644 --- a/dom/interfaces/svg/nsIDOMSVGForeignObjectElem.idl +++ b/dom/interfaces/svg/nsIDOMSVGForeignObjectElem.idl @@ -40,7 +40,7 @@ interface nsIDOMSVGAnimatedLength; -[scriptable, uuid(fd9c9871-23fd-48eb-a65b-3842e9b0acbd)] +[scriptable, uuid(a093460b-e3d0-4914-aa60-a4b31aa53276)] interface nsIDOMSVGForeignObjectElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGGElement.idl b/dom/interfaces/svg/nsIDOMSVGGElement.idl index 069f92fdd57..831d957a9b1 100644 --- a/dom/interfaces/svg/nsIDOMSVGGElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGGElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(0bd57cbd-a090-44aa-a61b-2fb876841194)] +[scriptable, uuid(86317234-cf55-4ff0-8fed-de48557ae82e)] interface nsIDOMSVGGElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGGradientElement.idl b/dom/interfaces/svg/nsIDOMSVGGradientElement.idl index 0bd5e0361ec..bf584cb10ca 100644 --- a/dom/interfaces/svg/nsIDOMSVGGradientElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGGradientElement.idl @@ -50,7 +50,7 @@ interface nsIDOMSVGAnimatedEnumeration; interface nsIDOMSVGAnimatedTransformList; -[scriptable, uuid(988b2de4-137b-4bb8-a15e-fe94038e9cf3)] +[scriptable, uuid(8114186f-29ef-4642-b4e2-762f331661e5)] interface nsIDOMSVGGradientElement : nsIDOMSVGElement /* @@ -88,7 +88,7 @@ interface nsIDOMSVGGradientElement // Linear gradient interface nsIDOMSVGAnimatedLength; -[scriptable, uuid(7e15fce5-b208-43e1-952a-c570ebad0619)] +[scriptable, uuid(44e59baf-4ca5-48af-9749-69b30be11917)] interface nsIDOMSVGLinearGradientElement : nsIDOMSVGGradientElement { @@ -110,7 +110,7 @@ interface nsIDOMSVGLinearGradientElement // Radial gradient interface nsIDOMSVGAnimatedLength; -[scriptable, uuid(d0262ae1-31a4-44be-b82e-85e4cfe280fd)] +[scriptable, uuid(67d79c33-76b6-421a-a7ff-bb6793a4fd46)] interface nsIDOMSVGRadialGradientElement : nsIDOMSVGGradientElement { diff --git a/dom/interfaces/svg/nsIDOMSVGImageElement.idl b/dom/interfaces/svg/nsIDOMSVGImageElement.idl index c468572261b..12293bf8b27 100644 --- a/dom/interfaces/svg/nsIDOMSVGImageElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGImageElement.idl @@ -41,7 +41,7 @@ interface nsIDOMSVGAnimatedLength; interface nsIDOMSVGAnimatedPreserveAspectRatio; -[scriptable, uuid(43ae4efe-2610-4cce-8242-279e556a78fa)] +[scriptable, uuid(aaf4a4a5-7016-47ca-b61d-47ec9152fc14)] interface nsIDOMSVGImageElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGLineElement.idl b/dom/interfaces/svg/nsIDOMSVGLineElement.idl index cf17a2a886f..acc1727b45b 100644 --- a/dom/interfaces/svg/nsIDOMSVGLineElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGLineElement.idl @@ -40,7 +40,7 @@ interface nsIDOMSVGAnimatedLength; -[scriptable, uuid(4ea07ef3-ed66-4b41-8119-4afc6d0ed5af)] +[scriptable, uuid(edee1921-78ca-49b7-94f8-261942bf320d)] interface nsIDOMSVGLineElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGMarkerElement.idl b/dom/interfaces/svg/nsIDOMSVGMarkerElement.idl index 8e5f47b60e3..1fbbf3bc8fc 100644 --- a/dom/interfaces/svg/nsIDOMSVGMarkerElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGMarkerElement.idl @@ -51,7 +51,7 @@ interface nsIDOMSVGMatrix; * */ -[scriptable, uuid(6a3b7b40-e65a-4e9c-9ee7-ca03ed0a18c7)] +[scriptable, uuid(12e79be1-eac1-49b8-b644-d617445ae2b1)] interface nsIDOMSVGMarkerElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGMaskElement.idl b/dom/interfaces/svg/nsIDOMSVGMaskElement.idl index 49f1c6c5555..cce1a452047 100644 --- a/dom/interfaces/svg/nsIDOMSVGMaskElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGMaskElement.idl @@ -39,7 +39,7 @@ interface nsIDOMSVGAnimatedLength; interface nsIDOMSVGAnimatedEnumeration; -[scriptable, uuid(fdd7039c-35b6-465a-b7a3-c98a815b583e)] +[scriptable, uuid(9ec463fe-84d5-404b-9078-2e693e183b48)] interface nsIDOMSVGMaskElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGMetadataElement.idl b/dom/interfaces/svg/nsIDOMSVGMetadataElement.idl index d741e82b6a0..91edbe9e582 100644 --- a/dom/interfaces/svg/nsIDOMSVGMetadataElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGMetadataElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(94558064-140c-41a1-9cc9-4e9cdbf5c124)] +[scriptable, uuid(a772c8e6-2755-4864-b249-b4a03c7554b4)] interface nsIDOMSVGMetadataElement : nsIDOMSVGElement { diff --git a/dom/interfaces/svg/nsIDOMSVGMpathElement.idl b/dom/interfaces/svg/nsIDOMSVGMpathElement.idl index e9fb55a354d..16b5cce6306 100644 --- a/dom/interfaces/svg/nsIDOMSVGMpathElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGMpathElement.idl @@ -43,7 +43,7 @@ * http://www.w3.org/TR/SVG/animate.html#mpathElement */ -[scriptable, uuid(752f5ec1-eaf6-4cfa-887b-96bc69ec36b8)] +[scriptable, uuid(39b7550c-26f7-475b-9ac5-a013935d0e60)] interface nsIDOMSVGMpathElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGPathElement.idl b/dom/interfaces/svg/nsIDOMSVGPathElement.idl index f63a425fee0..a736e1ff805 100644 --- a/dom/interfaces/svg/nsIDOMSVGPathElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGPathElement.idl @@ -60,7 +60,7 @@ interface nsIDOMSVGPathSegCurvetoCubicSmoothRel; interface nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs; interface nsIDOMSVGPathSegCurvetoQuadraticSmoothRel; -[scriptable, uuid(2b19e692-3338-440f-a998-3cb1e8474999)] +[scriptable, uuid(d1a8894f-9fb1-43e8-b0a0-f8e4a416a505)] interface nsIDOMSVGPathElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGPatternElement.idl b/dom/interfaces/svg/nsIDOMSVGPatternElement.idl index c5f3dda0c63..d9061bb6489 100644 --- a/dom/interfaces/svg/nsIDOMSVGPatternElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGPatternElement.idl @@ -51,7 +51,7 @@ interface nsIDOMSVGAnimatedEnumeration; interface nsIDOMSVGAnimatedTransformList; interface nsIDOMSVGAnimatedLength; -[scriptable, uuid(bc435244-b748-4e14-9e4c-219d5d3cb218)] +[scriptable, uuid(962bbf20-7925-4e24-9ae5-ce3a5a39a191)] interface nsIDOMSVGPatternElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGPolygonElement.idl b/dom/interfaces/svg/nsIDOMSVGPolygonElement.idl index dbb99b05464..36552e3d314 100644 --- a/dom/interfaces/svg/nsIDOMSVGPolygonElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGPolygonElement.idl @@ -39,7 +39,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(9de04775-77c5-48b5-9f4a-8996a936bfb2)] +[scriptable, uuid(4d43668c-de35-4da7-a565-a5f929ae30af)] interface nsIDOMSVGPolygonElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGPolylineElement.idl b/dom/interfaces/svg/nsIDOMSVGPolylineElement.idl index 99e612d815d..d21f788885b 100644 --- a/dom/interfaces/svg/nsIDOMSVGPolylineElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGPolylineElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(7b6e15cf-9793-41ee-adcc-cc1c206c80e6)] +[scriptable, uuid(3f1c450e-3125-4098-9b4c-69d6befd8abf)] interface nsIDOMSVGPolylineElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGRectElement.idl b/dom/interfaces/svg/nsIDOMSVGRectElement.idl index d92733baf44..4e1ee29666d 100644 --- a/dom/interfaces/svg/nsIDOMSVGRectElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGRectElement.idl @@ -40,7 +40,7 @@ interface nsIDOMSVGAnimatedLength; -[scriptable, uuid(1695ca39-e40d-44dc-81db-a51b6fd234fa)] +[scriptable, uuid(6b4696b6-dd54-4a13-9291-f58f1f1d5567)] interface nsIDOMSVGRectElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGSVGElement.idl b/dom/interfaces/svg/nsIDOMSVGSVGElement.idl index c44fe63ad65..34c52fe0c4f 100644 --- a/dom/interfaces/svg/nsIDOMSVGSVGElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGSVGElement.idl @@ -55,7 +55,7 @@ interface nsIDOMSVGTransform; #endif %} -[scriptable, uuid(5255148c-425a-4de5-aefb-4f41d996d3ca)] +[scriptable, uuid(aecf2c1a-065e-432f-9aeb-c3715246281e)] interface nsIDOMSVGSVGElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGScriptElement.idl b/dom/interfaces/svg/nsIDOMSVGScriptElement.idl index 381fd2380f9..b50c020dca2 100644 --- a/dom/interfaces/svg/nsIDOMSVGScriptElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGScriptElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(bbe0d0ee-e9ed-4f84-a6e4-e58f66530caa)] +[scriptable, uuid(26525c48-f1fa-453b-b19a-6586b2d88e1d)] interface nsIDOMSVGScriptElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGStopElement.idl b/dom/interfaces/svg/nsIDOMSVGStopElement.idl index 1faae9e2283..1accc69186a 100644 --- a/dom/interfaces/svg/nsIDOMSVGStopElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGStopElement.idl @@ -49,7 +49,7 @@ interface nsIDOMSVGAnimatedNumber; -[scriptable, uuid(93169940-7663-4eab-af23-94a8a08c2654)] +[scriptable, uuid(5e345b97-b718-4deb-a879-bbeb27ba7497)] interface nsIDOMSVGStopElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGStyleElement.idl b/dom/interfaces/svg/nsIDOMSVGStyleElement.idl index ce46818b8ed..0b1b99dd0d3 100644 --- a/dom/interfaces/svg/nsIDOMSVGStyleElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGStyleElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(9af0d129-b366-4aa8-b7d8-8dce93148d91)] +[scriptable, uuid(2ce28aa9-3b6c-4eb6-a42a-4c00dd7406f3)] interface nsIDOMSVGStyleElement : nsIDOMSVGElement { diff --git a/dom/interfaces/svg/nsIDOMSVGSwitchElement.idl b/dom/interfaces/svg/nsIDOMSVGSwitchElement.idl index 69601c34df2..48030d93c7c 100644 --- a/dom/interfaces/svg/nsIDOMSVGSwitchElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGSwitchElement.idl @@ -36,7 +36,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(7676f306-22c9-427e-bd71-2b1315851c93)] +[scriptable, uuid(fb52b73c-3908-44c7-a390-2d40f8e8499c)] interface nsIDOMSVGSwitchElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGSymbolElement.idl b/dom/interfaces/svg/nsIDOMSVGSymbolElement.idl index 97d88cb8eae..3a790211dfc 100644 --- a/dom/interfaces/svg/nsIDOMSVGSymbolElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGSymbolElement.idl @@ -36,7 +36,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(86092181-a5db-4a89-be03-07dcc14d426e)] +[scriptable, uuid(0e272bde-2660-49c9-a2d3-4652346e0ff6)] interface nsIDOMSVGSymbolElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGTSpanElement.idl b/dom/interfaces/svg/nsIDOMSVGTSpanElement.idl index 15a1dbab3ba..1df7066de47 100644 --- a/dom/interfaces/svg/nsIDOMSVGTSpanElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGTSpanElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGTextPositionElem.idl" -[scriptable, uuid(4a23cb1f-cf1e-437e-9524-8756f7928b2e)] +[scriptable, uuid(99131b84-1858-4fbf-826e-35d5135ce6c3)] interface nsIDOMSVGTSpanElement : nsIDOMSVGTextPositioningElement { }; diff --git a/dom/interfaces/svg/nsIDOMSVGTextContentElement.idl b/dom/interfaces/svg/nsIDOMSVGTextContentElement.idl index 7e592355d40..1f2c06960d7 100644 --- a/dom/interfaces/svg/nsIDOMSVGTextContentElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGTextContentElement.idl @@ -44,7 +44,7 @@ interface nsIDOMSVGPoint; interface nsIDOMSVGRect; -[scriptable, uuid(87ad94bc-07c9-412b-b2d8-de245a2e84a5)] +[scriptable, uuid(2dc007ee-b5f4-44e7-a516-9512d88f6347)] interface nsIDOMSVGTextContentElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGTextElement.idl b/dom/interfaces/svg/nsIDOMSVGTextElement.idl index daa540da813..d4d884c1901 100644 --- a/dom/interfaces/svg/nsIDOMSVGTextElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGTextElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGTextPositionElem.idl" -[scriptable, uuid(6d43b1b4-efb6-426d-9e65-4420c3e24688)] +[scriptable, uuid(774d0445-e3c9-46c4-a1ac-347a6d34a308)] interface nsIDOMSVGTextElement : nsIDOMSVGTextPositioningElement /* The SVG DOM makes use of multiple interface inheritance. diff --git a/dom/interfaces/svg/nsIDOMSVGTextPathElement.idl b/dom/interfaces/svg/nsIDOMSVGTextPathElement.idl index 5d546957e2c..cb44279c6c1 100644 --- a/dom/interfaces/svg/nsIDOMSVGTextPathElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGTextPathElement.idl @@ -39,7 +39,7 @@ interface nsIDOMSVGAnimatedLength; interface nsIDOMSVGAnimatedEnumeration; -[scriptable, uuid(5c29a76c-3489-48fe-b9ea-ea0f5b196dff)] +[scriptable, uuid(55c2dbe7-c3e2-4e45-aeb1-b81802ceec48)] interface nsIDOMSVGTextPathElement : nsIDOMSVGTextContentElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGTextPositionElem.idl b/dom/interfaces/svg/nsIDOMSVGTextPositionElem.idl index 7553da15d50..d5b316ee8f1 100644 --- a/dom/interfaces/svg/nsIDOMSVGTextPositionElem.idl +++ b/dom/interfaces/svg/nsIDOMSVGTextPositionElem.idl @@ -41,7 +41,7 @@ interface nsIDOMSVGAnimatedLengthList; interface nsIDOMSVGAnimatedNumberList; -[scriptable, uuid(5d052835-8cb0-442c-9754-a8e616db1f89)] +[scriptable, uuid(92b911b3-d822-4805-b6a3-7a698f88e720)] interface nsIDOMSVGTextPositioningElement : nsIDOMSVGTextContentElement { readonly attribute nsIDOMSVGAnimatedLengthList x; diff --git a/dom/interfaces/svg/nsIDOMSVGTitleElement.idl b/dom/interfaces/svg/nsIDOMSVGTitleElement.idl index a320ca32aeb..3a006330e4b 100644 --- a/dom/interfaces/svg/nsIDOMSVGTitleElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGTitleElement.idl @@ -38,7 +38,7 @@ #include "nsIDOMSVGElement.idl" -[scriptable, uuid(524564b0-13a3-459b-bbec-ad66aea9f789)] +[scriptable, uuid(ade32154-08ad-4575-9f15-47840700af90)] interface nsIDOMSVGTitleElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/svg/nsIDOMSVGUseElement.idl b/dom/interfaces/svg/nsIDOMSVGUseElement.idl index 66f47444150..caef1638827 100644 --- a/dom/interfaces/svg/nsIDOMSVGUseElement.idl +++ b/dom/interfaces/svg/nsIDOMSVGUseElement.idl @@ -38,7 +38,7 @@ interface nsIDOMSVGAnimatedLength; -[scriptable, uuid(d49a3ac7-e779-46c8-ae92-214420aa1b71)] +[scriptable, uuid(686a8d0b-e0d7-4443-970e-22e22018f4f1)] interface nsIDOMSVGUseElement : nsIDOMSVGElement /* diff --git a/dom/interfaces/xpath/nsIDOMXPathNamespace.idl b/dom/interfaces/xpath/nsIDOMXPathNamespace.idl index 1397a9d3ae2..9c559ec9cc2 100644 --- a/dom/interfaces/xpath/nsIDOMXPathNamespace.idl +++ b/dom/interfaces/xpath/nsIDOMXPathNamespace.idl @@ -42,7 +42,7 @@ #include "nsIDOMNode.idl" -[scriptable, uuid(75506f87-b504-11d5-a7f2-ca108ab8b6fc)] +[scriptable, uuid(978f4c11-3b29-40af-8c29-a4e0689f2776)] interface nsIDOMXPathNamespace : nsIDOMNode { // XPathNodeType diff --git a/dom/interfaces/xul/nsIDOMXULContainerElement.idl b/dom/interfaces/xul/nsIDOMXULContainerElement.idl index 6c9656e16fc..d4cacee3520 100644 --- a/dom/interfaces/xul/nsIDOMXULContainerElement.idl +++ b/dom/interfaces/xul/nsIDOMXULContainerElement.idl @@ -39,7 +39,7 @@ #include "nsIDOMXULElement.idl" interface nsIDOMXULContainerElement; -[scriptable, uuid(4650e55f-4777-4271-8b62-9603a7dd4614)] +[scriptable, uuid(608d604f-79b4-4fe0-8a2c-49a007496642)] interface nsIDOMXULContainerItemElement : nsIDOMXULElement { /** @@ -48,7 +48,7 @@ interface nsIDOMXULContainerItemElement : nsIDOMXULElement readonly attribute nsIDOMXULContainerElement parentContainer; }; -[scriptable, uuid(bc07c626-4294-43ae-9b0a-e726de0adcad)] +[scriptable, uuid(73acdda3-c6a5-4a89-a01a-0f776eba870d)] interface nsIDOMXULContainerElement : nsIDOMXULContainerItemElement { /** diff --git a/dom/interfaces/xul/nsIDOMXULElement.idl b/dom/interfaces/xul/nsIDOMXULElement.idl index 8162895d0c9..9f4dde971b3 100644 --- a/dom/interfaces/xul/nsIDOMXULElement.idl +++ b/dom/interfaces/xul/nsIDOMXULElement.idl @@ -46,7 +46,7 @@ interface nsIControllers; interface nsIBoxObject; -[scriptable, uuid(30a4a815-b42a-4f0b-9c10-1e7f727cd135)] +[scriptable, uuid(f096a67f-a541-47f4-bc6a-2c87353a016c)] interface nsIDOMXULElement : nsIDOMElement { attribute DOMString id; diff --git a/dom/interfaces/xul/nsIDOMXULTreeElement.idl b/dom/interfaces/xul/nsIDOMXULTreeElement.idl index 0a627e7b1c3..b82c88418f1 100644 --- a/dom/interfaces/xul/nsIDOMXULTreeElement.idl +++ b/dom/interfaces/xul/nsIDOMXULTreeElement.idl @@ -45,7 +45,7 @@ interface nsIDOMXULTextBoxElement; * @status UNDER_DEVELOPMENT */ -[scriptable, uuid(2f7d124f-eb51-4baa-baba-eeed051b4da0)] +[scriptable, uuid(a0b49228-588e-47ac-b9d0-afa2876e7b0d)] interface nsIDOMXULTreeElement : nsIDOMXULElement { diff --git a/dom/tests/mochitest/dom-level2-core/Makefile.in b/dom/tests/mochitest/dom-level2-core/Makefile.in index 66f835738ac..306efaf1ce8 100644 --- a/dom/tests/mochitest/dom-level2-core/Makefile.in +++ b/dom/tests/mochitest/dom-level2-core/Makefile.in @@ -292,15 +292,6 @@ _TEST_FILES_E = \ _TEST_FILES_F = \ test_nodenormalize01.html \ - test_nodesetprefix01.html \ - test_nodesetprefix02.html \ - test_nodesetprefix03.html \ - test_nodesetprefix04.html \ - test_nodesetprefix05.html \ - test_nodesetprefix06.html \ - test_nodesetprefix07.html \ - test_nodesetprefix08.html \ - test_nodesetprefix09.html \ test_normalize01.html \ test_ownerDocument01.html \ test_ownerElement01.html \ @@ -309,13 +300,6 @@ _TEST_FILES_F = \ test_prefix02.html \ test_prefix03.html \ test_prefix04.html \ - test_prefix05.html \ - test_prefix06.html \ - test_prefix07.html \ - test_prefix08.html \ - test_prefix09.html \ - test_prefix10.html \ - test_prefix11.html \ test_publicId01.html \ test_removeAttributeNS01.html \ test_removeAttributeNS02.html \ diff --git a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix01.html b/dom/tests/mochitest/dom-level2-core/test_nodesetprefix01.html deleted file mode 100644 index dba16e20504..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix01.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix01 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix01

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix02.html b/dom/tests/mochitest/dom-level2-core/test_nodesetprefix02.html deleted file mode 100644 index 9fcabeefcd1..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix02.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix02 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix02

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix03.html b/dom/tests/mochitest/dom-level2-core/test_nodesetprefix03.html deleted file mode 100644 index 92ad840fcef..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix03.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix03 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix03

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix04.html b/dom/tests/mochitest/dom-level2-core/test_nodesetprefix04.html deleted file mode 100644 index 0747446e244..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix04.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix04 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix04

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix05.html b/dom/tests/mochitest/dom-level2-core/test_nodesetprefix05.html deleted file mode 100644 index 7e0a651eaa8..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix05.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix05 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix05

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix06.html b/dom/tests/mochitest/dom-level2-core/test_nodesetprefix06.html deleted file mode 100644 index 9db33d21373..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix06.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix06 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix06

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix07.html b/dom/tests/mochitest/dom-level2-core/test_nodesetprefix07.html deleted file mode 100644 index 400d92fe6f5..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix07.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix07 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix07

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix08.html b/dom/tests/mochitest/dom-level2-core/test_nodesetprefix08.html deleted file mode 100644 index b16a370fcdd..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix08.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix08 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix08

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix09.html b/dom/tests/mochitest/dom-level2-core/test_nodesetprefix09.html deleted file mode 100644 index 3e28fc73084..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_nodesetprefix09.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix09 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix09

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_prefix05.html b/dom/tests/mochitest/dom-level2-core/test_prefix05.html deleted file mode 100644 index b0efbda4309..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_prefix05.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix05 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix05

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_prefix06.html b/dom/tests/mochitest/dom-level2-core/test_prefix06.html deleted file mode 100644 index cb1c66631e8..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_prefix06.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix06 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix06

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_prefix07.html b/dom/tests/mochitest/dom-level2-core/test_prefix07.html deleted file mode 100644 index b2acf3c8e5a..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_prefix07.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix07 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix07

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_prefix08.html b/dom/tests/mochitest/dom-level2-core/test_prefix08.html deleted file mode 100644 index e57979150a0..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_prefix08.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix08 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix08

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_prefix09.html b/dom/tests/mochitest/dom-level2-core/test_prefix09.html deleted file mode 100644 index cfb37c34921..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_prefix09.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix09 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix09

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_prefix10.html b/dom/tests/mochitest/dom-level2-core/test_prefix10.html deleted file mode 100644 index c1723d64e0b..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_prefix10.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix10 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix10

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- - diff --git a/dom/tests/mochitest/dom-level2-core/test_prefix11.html b/dom/tests/mochitest/dom-level2-core/test_prefix11.html deleted file mode 100644 index e0b4c2557dc..00000000000 --- a/dom/tests/mochitest/dom-level2-core/test_prefix11.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - -http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix11 - - - - -

Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/prefix11

-

-

-Copyright (c) 2001-2004 World Wide Web Consortium, -(Massachusetts Institute of Technology, European Research Consortium -for Informatics and Mathematics, Keio University). All -Rights Reserved. This work is distributed under the W3C(r) Software License in the -hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -

- -