mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
76bac7d152
Change-Id: Id0a0bd5b4a91f702cad34e9f5e7f2121763abffd
20 lines
343 B
JavaScript
20 lines
343 B
JavaScript
/**
|
|
* VisualEditor LeafNode tests.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
module( 've.LeafNode' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.LeafNodeStub = function() {
|
|
// Inheritance
|
|
ve.LeafNode.call( this );
|
|
};
|
|
|
|
ve.extendClass( ve.LeafNodeStub, ve.LeafNode );
|
|
|
|
/* Tests */
|