mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.TableCaptionNode.js
Roan Kattouw c68765639a Add TableCaptionNode
Because we have a node for <table>, we also need one for <caption>,
otherwise we'll try to alienate it and fail.

Added the test case as a separate example document so Ed can use it
for his tests.

Removed test case asserting <caption> is alienated.

Change-Id: I3a917db58e6c0eb97899b214b07d01fc8d86b56d
2013-04-26 14:09:54 -07:00

32 lines
736 B
JavaScript

/*!
* VisualEditor ContentEditable TableCaptionNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable table caption node.
*
* @class
* @extends ve.ce.BranchNode
* @constructor
* @param {ve.dm.TableCaptionNode} model Model to observe
*/
ve.ce.TableCaptionNode = function VeCeTableCaptionNode( model ) {
// Parent constructor
ve.ce.BranchNode.call( this, model, $( '<caption>' ) );
};
/* Inheritance */
ve.inheritClass( ve.ce.TableCaptionNode, ve.ce.BranchNode );
/* Static Properties */
ve.ce.TableCaptionNode.static.name = 'tableCaption';
/* Registration */
ve.ce.nodeFactory.register( ve.ce.TableCaptionNode );