goog.Disposable | |
goog.testing.editor.TestHelper | goog.Disposable |
root
: Element
The root editable element.
|
![]()
Assert that the html in 'root' is substantially similar to htmlPattern.
This method tests for the same set of styles, and for the same order of
nodes. Breaking whitespace nodes are ignored. Elements can be annotated
with classnames corresponding to keys in goog.userAgent and will be
expected to show up in that user agent and expected not to show up in
others.
Arguments:
|
code » | |||||
![]()
No description.
|
code » | |||||
Finds the first text node descendant of root with the given content.
|
code » | |||||
![]()
Select from the given from offset in the given from node to the given
to offset in the optionally given to node. If nodes are passed in, uses them,
otherwise uses findTextNode to find the nodes to select. Selects a caret
if opt_to and opt_toOffset are not given.
Arguments:
|
code » | |||||
![]()
Selects a new root element.
Arguments:
|
code » | |||||
![]()
Make the root element editable. Alse saves its HTML to be restored
in tearDown.
|
code » | |||||
![]()
Reset the element previously initialized, restoring its HTML and making it
non editable.
|
code » |
![]()
Invokes a callback function when this object is disposed. Callbacks are
invoked in the order in which they were added.
Arguments:
|
code » | |||
![]()
Disposes of the object. If the object hasn't already been disposed of, calls
#disposeInternal . Classes that extend goog.Disposable should
override #disposeInternal in order to delete references to COM
objects, DOM nodes, and other disposable objects. Reentrant.
Returns: void
Nothing.
|
code » | |||
![]()
Deletes or nulls out any references to COM objects, DOM nodes, or other
disposable objects. Classes that extend
goog.Disposable should
override this method.
Not reentrant. To avoid calling it twice, it must only be called from the
subclass' disposeInternal method. Everywhere else the public
dispose method must be used.
For example:
mypackage.MyClass = function() { mypackage.MyClass.base(this, 'constructor'); // Constructor logic specific to MyClass. ... }; goog.inherits(mypackage.MyClass, goog.Disposable); mypackage.MyClass.prototype.disposeInternal = function() { // Dispose logic specific to MyClass. ... // Call superclass's disposeInternal at the end of the subclass's, like // in C++, to avoid hard-to-catch issues. mypackage.MyClass.base(this, 'disposeInternal'); }; |
code » | |||
Use
#isDisposed instead.
No description.
Returns: boolean
Whether the object has been disposed of.
|
code » | |||
No description.
Returns: boolean
Whether the object has been disposed of.
|
code » | |||
![]()
Associates a disposable object with this object so that they will be disposed
together.
Arguments:
|
code » |
![]()
No description.
|
Code » |