mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 14:56:20 +00:00
7df0e7589e
New changes: e661245 Localisation updates from https://translatewiki.net. d0bac53 ElementLinearData: Add test for sanitize conversions 53988e4 ElementLinearData: Test blacklist unwrapping 8593098 ve.dm.Model: Remove unused, untested method 'hasAttributes' 6247dd2 ce.Surface: Add tests for table strip delete bee1851 ce.Surface: Add larger table strip-delete test 42d39e7 ce.Surface: Test table navigation with enter/escape/tab/shift-tab 5d248f9 Remove TableCaptionCommand a86ad04 PreviewElement: Check node is a GCN, and always return a boolean b518839 Localisation updates from https://translatewiki.net. 8834e9c ce.Surface: Allow any key code in the key handler tests 6b3ea6a ce.Surface: Linear arrow tests for block node 026999d Localisation updates from https://translatewiki.net. eb97c1f Localisation updates from https://translatewiki.net. Change-Id: Ic5853116d97623316d9a6bbacda2ecab9e4b49d5
65 lines
1.9 KiB
JavaScript
65 lines
1.9 KiB
JavaScript
/*!
|
|
* VisualEditor ContentEditable MediaWiki-specific Surface tests.
|
|
*
|
|
* @copyright 2011-2016 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,
|
|
blocklength = ve.dm.mwExample.MWBlockImage.data.length,
|
|
cases = [
|
|
// This asserts that getRelativeRange (via getRelativeOffset) doesn't try to
|
|
// enter a handleOwnChildren node
|
|
{
|
|
htmlOrDoc:
|
|
ve.dm.mwExample.MWBlockImage.html +
|
|
'<ul><li><p>Foo</p></li><li><p>Bar</p></li></ul>',
|
|
rangeOrSelection: new ve.Range( blocklength + 3 ),
|
|
keys: [ 'BACKSPACE' ],
|
|
expectedData: function ( data ) {
|
|
// remove the first list item, and replace its wrapped paragraph outside
|
|
// the start of the list
|
|
data.splice(
|
|
blocklength, 8,
|
|
{ type: 'paragraph' },
|
|
'F', 'o', 'o',
|
|
{ type: '/paragraph' },
|
|
{ type: 'list', attributes: { style: 'bullet' } }
|
|
);
|
|
},
|
|
expectedRangeOrSelection: new ve.Range( blocklength + 1 ),
|
|
msg: 'Backspace in a list next to a block image doesn\'t merge into the caption'
|
|
},
|
|
{
|
|
htmlOrDoc:
|
|
ve.dm.mwExample.MWBlockImage.html +
|
|
'<ul><li><p></p></li></ul>',
|
|
rangeOrSelection: new ve.Range( blocklength + 3 ),
|
|
keys: [ 'BACKSPACE' ],
|
|
expectedData: function ( data ) {
|
|
data.splice(
|
|
blocklength, 6,
|
|
{ type: 'paragraph' },
|
|
{ type: '/paragraph' }
|
|
);
|
|
},
|
|
expectedRangeOrSelection: new ve.Range( blocklength + 1 ),
|
|
msg: 'Backspace in an empty list next to a block image removes the list'
|
|
}
|
|
];
|
|
|
|
QUnit.expect( cases.length * 2 );
|
|
|
|
for ( i = 0; i < cases.length; i++ ) {
|
|
ve.test.utils.runSurfaceHandleSpecialKeyTest(
|
|
assert, cases[ i ].htmlOrDoc, cases[ i ].rangeOrSelection, cases[ i ].keys,
|
|
cases[ i ].expectedData, cases[ i ].expectedRangeOrSelection, cases[ i ].msg
|
|
);
|
|
}
|
|
} );
|