зеркало из https://github.com/mozilla/gecko-dev.git
Remove @status FROZEN and @status UNDER_REVIEW. r=bsmedberg
--HG-- extra : rebase_source : 7fab31a6b7898e05ff828482390846cc9ce2854d
This commit is contained in:
Родитель
8f396f3fdf
Коммит
d0f35f6883
|
@ -39,8 +39,6 @@
|
|||
cpp_quote("///////////////////////////////////////////////////////////////////////////////////////////////////////")
|
||||
cpp_quote("//")
|
||||
cpp_quote("// ISimpleDOMDocument")
|
||||
cpp_quote("//")
|
||||
cpp_quote("// @STATUS UNDER_REVIEW")
|
||||
cpp_quote("// ---------------------------------------------------------------------------------------------------=")
|
||||
cpp_quote("//")
|
||||
cpp_quote("// get_URL(out] BSTR *url)")
|
||||
|
|
|
@ -42,8 +42,6 @@ cpp_quote("// ISimpleDOMNode")
|
|||
cpp_quote("// ---------------------------------------------------------------------------------------------------=")
|
||||
cpp_quote("// An interface that extends MSAA's IAccessible to provide readonly DOM node information via cross-process COM.")
|
||||
cpp_quote("//")
|
||||
cpp_quote("// @STATUS UNDER_REVIEW")
|
||||
cpp_quote("//")
|
||||
cpp_quote("// get_nodeInfo(")
|
||||
cpp_quote("// /* [out] */ BSTR *nodeName, // For elements, this is the tag name")
|
||||
cpp_quote("// /* [out] */ short *nameSpaceID,")
|
||||
|
|
|
@ -45,8 +45,6 @@ cpp_quote("// ISimpleDOMText")
|
|||
cpp_quote("// ---------------------------------------------------------------------------------------------------=")
|
||||
cpp_quote("// An interface that extends MSAA's IAccessible to provide important additional capabilities on text nodes")
|
||||
cpp_quote("//")
|
||||
cpp_quote("// @STATUS UNDER_REVIEW")
|
||||
cpp_quote("//")
|
||||
cpp_quote("// [propget] domText(/* out,retval */ BSTR *domText")
|
||||
cpp_quote("// ---------------------------------------------------------------------------------------------------=")
|
||||
cpp_quote("// Similar to IAccessible::get_accName, but does not strip out whitespace characters.")
|
||||
|
|
|
@ -53,8 +53,6 @@ interface nsIDOMCSSPrimitiveValue;
|
|||
* has a one to one relationship to the DOM tree.
|
||||
* If the DOM node for this access node is "accessible",
|
||||
* then a QueryInterface to nsIAccessible will succeed.
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
[scriptable, uuid(ef16ff42-0256-4b48-ae87-b18a95b7f7d6)]
|
||||
interface nsIAccessNode : nsISupports
|
||||
|
|
|
@ -55,8 +55,6 @@ interface nsIAccessibleRelation;
|
|||
* nodes in the DOM tree -- such as documents, focusable elements and text.
|
||||
* Mozilla creates the implementations of nsIAccessible on demand.
|
||||
* See http://www.mozilla.org/projects/ui/accessibility for more information.
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
[scriptable, uuid(c81d8f8c-8585-4094-bc7c-71dd01494906)]
|
||||
interface nsIAccessible : nsISupports
|
||||
|
|
|
@ -55,8 +55,6 @@ interface nsIDOMWindow;
|
|||
* of a document. You can also get one from
|
||||
* nsIAccessNode::GetAccessibleDocument() or
|
||||
* nsIAccessibleEvent::GetAccessibleDocument()
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
[scriptable, uuid(03c6ce8a-aa40-4484-9282-e6579c56e054)]
|
||||
interface nsIAccessibleDocument : nsISupports
|
||||
|
|
|
@ -58,8 +58,6 @@ interface nsIDOMNode;
|
|||
* do_GetService("@mozilla.org/observer-service;1", &rv);
|
||||
* if (NS_SUCCEEDED(rv))
|
||||
* rv = observerService->AddObserver(this, "accessible-event", PR_TRUE);
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
[scriptable, uuid(c68b4386-dca7-4b88-8988-7a95ce7be92f)]
|
||||
interface nsIAccessibleEvent : nsISupports
|
||||
|
|
|
@ -36,10 +36,6 @@
|
|||
|
||||
#include "nsISupports.idl"
|
||||
|
||||
/**
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
[scriptable, uuid(09086623-0f09-4310-ac56-c2cda7c29648)]
|
||||
interface nsIAccessibleImage : nsISupports
|
||||
{
|
||||
|
|
|
@ -53,8 +53,6 @@ interface nsIDOMDOMStringList;
|
|||
* a given DOM node.
|
||||
* More documentation at:
|
||||
* http://www.mozilla.org/projects/ui/accessibility
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
[scriptable, uuid(310ce77d-c92b-4761-82e8-77e1a728e8d4)]
|
||||
interface nsIAccessibleRetrieval : nsISupports
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
/**
|
||||
* An interface for the accessibility module and in-process accessibility clients
|
||||
* for dealing with getting and changing the selection of accessible nodes.
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
[scriptable, uuid(34d268d6-1dd2-11b2-9d63-83a5e0ada290)]
|
||||
interface nsIAccessibleSelectable : nsISupports
|
||||
|
|
|
@ -46,7 +46,6 @@ interface nsIDOMRange;
|
|||
* Interface for manipulating and querying the current selected range
|
||||
* of nodes within the document.
|
||||
*
|
||||
* @status FROZEN
|
||||
* @version 1.1
|
||||
*/
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
*
|
||||
* The interface to global history.
|
||||
*
|
||||
* @status FROZEN & DEPRECATED. This interface is still accepted, but new
|
||||
* @status DEPRECATED. This interface is still accepted, but new
|
||||
* implementations should use nsIGlobalHistory2.
|
||||
* @version 1.0
|
||||
*/
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
* Provides information about global history to gecko.
|
||||
*
|
||||
* @note This interface replaces and deprecates nsIGlobalHistory.
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
|
||||
#include "nsISupports.idl"
|
||||
|
|
|
@ -49,8 +49,6 @@ interface nsIURI;
|
|||
* It provides methods and attributes to direct an object to navigate to a new
|
||||
* location, stop or restart an in process load, or determine where the object
|
||||
* has previously gone.
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
[scriptable, uuid(F5D9E7B0-D930-11d3-B057-00A024FFC08C)]
|
||||
interface nsIWebNavigation : nsISupports
|
||||
|
|
|
@ -42,8 +42,6 @@ interface nsIWebNavigation;
|
|||
/**
|
||||
* The nsIWebNavigationInfo interface exposes a way to get information
|
||||
* on the capabilities of Gecko webnavigation objects.
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
[scriptable, uuid(62a93afb-93a1-465c-84c8-0432264229de)]
|
||||
interface nsIWebNavigationInfo : nsISupports
|
||||
|
|
|
@ -39,8 +39,6 @@
|
|||
* The nsIWebPageDescriptor interface allows content being displayed in one
|
||||
* window to be loaded into another window without refetching it from the
|
||||
* network.
|
||||
*
|
||||
* @status UNDER_REVIEW
|
||||
*/
|
||||
|
||||
[scriptable, uuid(6f30b676-3710-4c2c-80b1-0395fb26516e)]
|
||||
|
|
|
@ -42,8 +42,6 @@
|
|||
* it. nsIHistoryEntry provides access to information like URI,
|
||||
* title and frame traversal status for that document.
|
||||
* This interface is accessible from javascript.
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
#include "nsISupports.idl"
|
||||
|
||||
|
|
|
@ -49,9 +49,7 @@ interface nsISimpleEnumerator;
|
|||
* nsIWebNavigation. In a non-embedded situation, the owner of the
|
||||
* session history component must create a instance of it and set
|
||||
* it in the nsIWebNavigation object.
|
||||
* This interface is accessible from javascript.
|
||||
*
|
||||
* @status FROZEN
|
||||
* This interface is accessible from javascript.
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
@ -52,8 +52,6 @@ interface nsIURI;
|
|||
*
|
||||
* A session history listener can be registered on a particular nsISHistory
|
||||
* instance via the nsISHistory::addSHistoryListener() method.
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
[scriptable, uuid(3b07f591-e8e1-11d4-9882-00c04fa02f40)]
|
||||
interface nsISHistoryListener : nsISupports
|
||||
|
|
|
@ -43,8 +43,6 @@
|
|||
* The nsIDOMBarProp interface is the interface for controlling and
|
||||
* accessing the visibility of certain UI items (scrollbars, menubars,
|
||||
* toolbars, ...) through the DOM.
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(9eb2c150-1d56-11d3-8221-0060083a0bcf)]
|
||||
|
|
|
@ -49,8 +49,6 @@ interface nsISelection;
|
|||
*
|
||||
* This interface is not officially defined by any standard bodies, it
|
||||
* originates from the defacto DOM Level 0 standard.
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf906b-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -42,8 +42,6 @@
|
|||
/**
|
||||
* The nsIDOMWindowCollection interface is an interface for a
|
||||
* collection of DOM window objects.
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf906f-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9070-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -47,8 +47,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9071-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9072-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9073-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -49,8 +49,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-3-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf910a-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9074-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -50,8 +50,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9075-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9076-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -47,8 +47,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9077-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9078-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9079-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf907a-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf907b-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf907c-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -47,8 +47,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf907d-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf907e-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf907f-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9082-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -44,8 +44,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Style
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(e249031f-8df9-4e7a-b644-18946dce0019)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Style
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90c1-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Style
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90c0-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Style
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90be-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Style
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90c2-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -44,8 +44,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Style
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(009f7ea5-9e80-41be-b008-db62f10823f2)]
|
||||
|
|
|
@ -43,8 +43,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Style
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(8f09fa84-39b9-4dca-9b2f-db0eeb186286)]
|
||||
|
|
|
@ -44,8 +44,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Style
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(99715845-95fc-4a56-aa53-214b65c26e22)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Events/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(46b91d66-28e2-11d4-ab1e-0010830123b4)]
|
||||
|
|
|
@ -47,8 +47,6 @@ interface nsIDOMEventTarget;
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Events/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a66b7b80-ff46-bd97-0080-5f8ae38add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Events/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, function, uuid(df31c120-ded6-11d1-bd85-00805f8ae3f4)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Events/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(1c773b30-d1cf-11d2-bd95-00805f8ae3f4)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Events/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(ff751edc-8b02-aae7-0010-8301838a3123)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Events/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90c3-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90aa-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90ae-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90b0-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90a5-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf908b-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf908e-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9095-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9083-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf909b-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf909c-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90a0-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9084-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9085-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* Note that this is not a W3C standard interface, it is Mozilla
|
||||
* proprietary.
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(123f90ab-15b3-11d2-456e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9097-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90a7-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf908f-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90b9-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90b8-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90a8-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9087-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90a2-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9086-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90ba-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90ab-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9093-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf908c-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf909e-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9096-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9098-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9088-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90af-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf909d-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf908a-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90a9-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf909a-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90ac-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9091-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9092-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -44,8 +44,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
// Introduced in DOM Level 2:
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90a1-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90ad-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90a4-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90a3-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf90b1-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
|
@ -46,8 +46,6 @@
|
|||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
|
||||
[scriptable, uuid(a6cf9090-15b3-11d2-932e-00805f8add32)]
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче