mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 02:23:58 +00:00
f5c6f61163
Change-Id: I846d36c15e1b1f810d2ef7fd422f8412790bcb0f
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor ContentEditable MediaWiki-specific Surface tests.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
QUnit.module( 've.ce.Surface (MW)', ve.test.utils.mwEnvironment );
|
|
|
|
/* Tests */
|
|
|
|
QUnit.test( 'handleLinearDelete', function ( assert ) {
|
|
var i,
|
|
cases = [
|
|
// This asserts that getRelativeRange (via getRelativeOffset) doesn't try to
|
|
// enter a handleOwnChildren node
|
|
{
|
|
html:
|
|
ve.dm.mwExample.MWBlockImage.html +
|
|
'<ul><li><p>Foo</p></li><li><p>Bar</p></li></ul>',
|
|
range: new ve.Range( 12 ),
|
|
operations: [ 'backspace' ],
|
|
// TODO: This action should probably unwrap the list item as
|
|
expectedData: function () {},
|
|
expectedSelection: {
|
|
type: 'linear',
|
|
range: new ve.Range( 12 )
|
|
},
|
|
msg: 'Backspace in a list next to a block image doesn\'t merge into the caption'
|
|
}
|
|
];
|
|
|
|
QUnit.expect( cases.length * 2 );
|
|
|
|
for ( i = 0; i < cases.length; i++ ) {
|
|
ve.test.utils.runSurfaceHandleSpecialKeyTest(
|
|
assert, cases[ i ].html, cases[ i ].range, cases[ i ].operations,
|
|
cases[ i ].expectedData, cases[ i ].expectedSelection, cases[ i ].msg
|
|
);
|
|
}
|
|
} );
|