mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 19:09:29 +00:00
86591e5325
Change-Id: I7023e1f334694d59767491f1010e7c4c59c0ce54
34 lines
790 B
JavaScript
34 lines
790 B
JavaScript
module( 've.ce.LeafNode' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.ce.LeafNodeStub = function( model ) {
|
|
// Inheritance
|
|
ve.ce.LeafNode.call( this, 'leaf-stub', model );
|
|
};
|
|
|
|
ve.ce.LeafNodeStub.rules = {
|
|
'canBeSplit': false
|
|
};
|
|
|
|
ve.extendClass( ve.ce.LeafNodeStub, ve.ce.LeafNode );
|
|
|
|
ve.ce.factory.register( 'leaf-stub', ve.ce.LeafNodeStub );
|
|
|
|
/* Tests */
|
|
|
|
test( 'canBeSplit', 1, function() {
|
|
var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() );
|
|
equal( node.canBeSplit(), false );
|
|
} );
|
|
|
|
test( 'canHaveChildren', 1, function() {
|
|
var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() );
|
|
equal( node.canHaveChildren(), false );
|
|
} );
|
|
|
|
test( 'canHaveGrandchildren', 1, function() {
|
|
var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() );
|
|
equal( node.canHaveGrandchildren(), false );
|
|
} );
|