/*! * VisualEditor MediaWiki-specific ContentEditable Surface tests. * * @copyright 2011-2020 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( 'beforePaste/afterPaste', ( assert ) => { const cases = [ { documentHtml: '

', rangeOrSelection: new ve.Range( 1 ), pasteHtml: '--', fromVe: true, expectedRangeOrSelection: new ve.Range( 5 ), expectedHtml: '

--

', msg: 'RESTBase IDs stripped' }, { documentHtml: '

', rangeOrSelection: new ve.Range( 1 ), pasteHtml: '--', pasteTargetHtml: '--', fromVe: true, expectedRangeOrSelection: new ve.Range( 5 ), expectedHtml: '

--

', msg: 'RESTBase IDs still stripped if used when important attributes dropped' }, { documentHtml: '

', rangeOrSelection: new ve.Range( 1 ), pasteHtml: 'a[1]b', expectedRangeOrSelection: new ve.Range( 3 ), expectedHtml: '

ab

', msg: 'Read mode references stripped' }, { documentHtml: '

', rangeOrSelection: new ve.Range( 1 ), pasteHtml: 'a[1]b', expectedRangeOrSelection: new ve.Range( 5 ), expectedHtml: '

a[1]b

', msg: 'VE references not stripped' } ]; cases.forEach( ve.test.utils.runSurfacePasteTest.bind( this, assert ) ); } );