mediawiki-extensions-Visual.../modules/ve-mw/tests/dm/ve.dm.SurfaceFragment.test.js
Ed Sanders 26f567d84f Allow headings in table cells
We possibly want to discourage this somehow but our current
functionality achieves this by doing an isolateAndUnwrap
which for a table is catastrophic.

Bug: 72990
Change-Id: I79f1348da20385dfec014afcac0fb5464580cf2f
2014-11-05 22:34:13 +00:00

30 lines
1 KiB
JavaScript

/*!
* VisualEditor DataModel MediaWiki-specific SurfaceFragment tests.
*
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
QUnit.module( 've.dm.SurfaceFragment' );
/* Tests */
QUnit.test( 'isolateAndUnwrap (MWheading)', 2, function ( assert ) {
ve.test.utils.runIsolateTest( assert, 'mwHeading', new ve.Range( 12, 20 ), function ( data ) {
data.splice( 11, 0, { type: '/list' } );
data.splice( 12, 1 );
data.splice( 20, 1, { type: 'list', attributes: { style: 'bullet' } } );
}, 'isolating paragraph in list item "Item 2" for MWheading' );
ve.test.utils.runIsolateTest( assert, 'mwHeading', new ve.Range( 202, 212 ), function ( data ) {
data.splice( 201, 1,
{ type: '/list' }, { type: '/listItem' }, { type: '/list' }
);
data.splice( 214, 1,
{ type: 'list', attributes: { style: 'bullet' } },
{ type: 'listItem' },
{ type: 'list', attributes: { style: 'number' } }
);
}, 'isolating paragraph in list item "Nested 2" for MWheading' );
} );