| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import TableEditing from '../../src/tableediting';
- import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import { getData as getViewData } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
- import { setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
- import { defaultConversion, defaultSchema, modelTable, viewTable } from '../_utils/utils';
- function paragraphInTableCell() {
- return dispatcher => dispatcher.on( 'insert:paragraph', ( evt, data, conversionApi ) => {
- const tableCell = data.item.parent;
- if ( tableCell.is( 'tableCell' ) && tableCell.childCount > 1 ) {
- for ( const child of tableCell.getChildren() ) {
- if ( child.name != 'paragraph' ) {
- continue;
- }
- const viewElement = conversionApi.mapper.toViewElement( child );
- if ( viewElement && viewElement.name === 'span' ) {
- conversionApi.mapper.unbindModelElement( tableCell );
- conversionApi.writer.removeStyle( 'display', viewElement );
- conversionApi.writer.rename( 'p', viewElement );
- conversionApi.mapper.bindElements( child, viewElement );
- }
- }
- }
- }, { converterPriority: 'highest' } );
- }
- describe( 'downcast converters', () => {
- let editor, model, doc, root, view;
- testUtils.createSinonSandbox();
- describe( 'downcastInsertTable()', () => {
- beforeEach( () => {
- return VirtualTestEditor.create( { plugins: [ Paragraph, TableEditing ] } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- doc = model.document;
- root = doc.getRoot( 'main' );
- view = editor.editing.view;
- } );
- } );
- describe( 'editing pipeline', () => {
- it( 'should create table as a widget', () => {
- setModelData( model, modelTable( [ [ '' ] ] ) );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block"></span>' +
- '</td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- } );
- describe( 'data pipeline', () => {
- it( 'should create table with tbody and thead', () => {
- setModelData( model, modelTable( [
- [ '00' ],
- [ '10' ]
- ], { headingRows: 1 } ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<thead>' +
- '<tr><th>00</th></tr>' +
- '</thead>' +
- '<tbody>' +
- '<tr><td>10</td></tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should create table with thead', () => {
- setModelData( model, modelTable( [
- [ '00' ],
- [ '10' ]
- ], { headingRows: 2 } ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<thead>' +
- '<tr><th>00</th></tr>' +
- '<tr><th>10</th></tr>' +
- '</thead>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should create table with heading columns and rows', () => {
- setModelData( model, modelTable( [
- [ '00', '01', '02', '03' ],
- [ '10', '11', '12', '13' ]
- ], { headingColumns: 3, headingRows: 1 } ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<thead>' +
- '<tr><th>00</th><th>01</th><th>02</th><th>03</th></tr>' +
- '</thead>' +
- '<tbody>' +
- '<tr><th>10</th><th>11</th><th>12</th><td>13</td></tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should create table with block content', () => {
- setModelData( model, modelTable( [
- [ '<paragraph>00</paragraph><paragraph>foo</paragraph>', '01' ]
- ] ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td><p>00</p><p>foo</p></td>' +
- '<td>01</td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should create table with block content (attribute on paragraph)', () => {
- editor.conversion.attributeToAttribute(
- {
- model: { key: 'alignment', values: [ 'right', 'center', 'justify' ] },
- view: {
- right: { key: 'style', value: { 'text-align': 'right' } },
- center: { key: 'style', value: { 'text-align': 'center' } },
- justify: { key: 'style', value: { 'text-align': 'justify' } }
- }
- }
- );
- setModelData( model, modelTable( [
- [ '<paragraph alignment="right">00</paragraph>' ]
- ] ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td><p style="text-align:right;">00</p></td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should be possible to overwrite', () => {
- editor.conversion.elementToElement( { model: 'tableRow', view: 'tr', converterPriority: 'high' } );
- editor.conversion.elementToElement( { model: 'tableCell', view: 'td', converterPriority: 'high' } );
- editor.conversion.for( 'downcast' ).add( dispatcher => {
- dispatcher.on( 'insert:table', ( evt, data, conversionApi ) => {
- conversionApi.consumable.consume( data.item, 'insert' );
- const tableElement = conversionApi.writer.createContainerElement( 'table', { foo: 'bar' } );
- const viewPosition = conversionApi.mapper.toViewPosition( data.range.start );
- conversionApi.mapper.bindElements( data.item, tableElement );
- conversionApi.writer.insert( viewPosition, tableElement );
- }, { priority: 'high' } );
- } );
- setModelData( model, modelTable( [ [ '' ] ] ) );
- assertEqualMarkup( editor.getData(),
- '<table foo="bar">' +
- '<tr><td><p> </p></td></tr>' +
- '</table>'
- );
- } );
- it( 'should re-create table on reinsert', () => {
- model.schema.register( 'wrapper', {
- allowWhere: '$block',
- allowContentOf: '$root'
- } );
- editor.conversion.elementToElement( { model: 'wrapper', view: 'div' } );
- setModelData( model, modelTable( [ [ '[]' ] ] ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<tbody>' +
- '<tr><td> </td></tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- model.change( writer => {
- const table = model.document.getRoot().getChild( 0 );
- const range = writer.createRange( writer.createPositionBefore( table ), writer.createPositionAfter( table ) );
- const wrapper = writer.createElement( 'wrapper' );
- writer.wrap( range, wrapper );
- } );
- assertEqualMarkup( editor.getData(),
- '<div>' +
- '<figure class="table">' +
- '<table>' +
- '<tbody>' +
- '<tr><td> </td></tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>' +
- '</div>'
- );
- } );
- describe( 'headingColumns attribute', () => {
- it( 'should mark heading columns table cells', () => {
- setModelData( model, modelTable( [
- [ '00', '01', '02' ],
- [ '10', '11', '12' ]
- ], { headingColumns: 2 } ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<tbody>' +
- '<tr><th>00</th><th>01</th><td>02</td></tr>' +
- '<tr><th>10</th><th>11</th><td>12</td></tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should mark heading columns table cells when one has colspan attribute', () => {
- setModelData( model, modelTable( [
- [ '00', '01', '02', '03' ],
- [ { colspan: 2, contents: '10' }, '12', '13' ]
- ], { headingColumns: 3 } ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<tbody>' +
- '<tr><th>00</th><th>01</th><th>02</th><td>03</td></tr>' +
- '<tr><th colspan="2">10</th><th>12</th><td>13</td></tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should work with colspan and rowspan attributes on table cells', () => {
- // The table in this test looks like a table below:
- //
- // Row headings | Normal cells
- // |
- // +----+----+----+----+
- // | 00 | 01 | 02 | 03 |
- // | +----+ +----+
- // | | 11 | | 13 |
- // |----+----+ +----+
- // | 20 | | 23 |
- // | +----+----+
- // | | 32 | 33 |
- // +----+----+----+----+
- setModelData( model, modelTable( [
- [ { rowspan: 2, contents: '00' }, '01', { rowspan: 3, contents: '02' }, '03' ],
- [ '11', '13' ],
- [ { colspan: 2, rowspan: 2, contents: '20' }, '23' ],
- [ '32', '33' ]
- ], { headingColumns: 3 } ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<tbody>' +
- '<tr><th rowspan="2">00</th><th>01</th><th rowspan="3">02</th><td>03</td></tr>' +
- '<tr><th>11</th><td>13</td></tr>' +
- '<tr><th rowspan="2" colspan="2">20</th><td>23</td></tr>' +
- '<tr><th>32</th><td>33</td></tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- } );
- it( 'should create table with tbody', () => {
- setModelData( model, modelTable( [ [ '' ] ] ) );
- assertEqualMarkup( editor.getData(),
- '<figure class="table">' +
- '<table>' +
- '<tbody>' +
- '<tr><td> </td></tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- } );
- } );
- describe( 'downcastInsertRow()', () => {
- // The beforeEach is duplicated due to ckeditor/ckeditor5#6574. New test are written using TableEditing.
- beforeEach( () => {
- return VirtualTestEditor.create( { plugins: [ Paragraph, TableEditing ] } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- doc = model.document;
- root = doc.getRoot( 'main' );
- view = editor.editing.view;
- } );
- } );
- // The insert row downcast conversion is not executed in data pipeline.
- describe( 'editing pipeline', () => {
- it( 'should react to changed rows', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const row = writer.createElement( 'tableRow' );
- writer.insert( row, table, 1 );
- writer.insertElement( 'tableCell', row, 'end' );
- writer.insertElement( 'tableCell', row, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '', '' ]
- ], { asWidget: true } ) );
- } );
- it( 'should properly consume already added rows', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const row = writer.createElement( 'tableRow' );
- writer.insert( row, table, 1 );
- writer.insertElement( 'tableCell', row, 'end' );
- writer.insertElement( 'tableCell', row, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '', '' ]
- ], { asWidget: true } ) );
- model.change( writer => {
- const row = writer.createElement( 'tableRow' );
- writer.insert( row, table, 2 );
- writer.insertElement( 'tableCell', row, 'end' );
- writer.insertElement( 'tableCell', row, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '', '' ],
- [ '', '' ]
- ], { asWidget: true } ) );
- } );
- it( 'should insert row on proper index', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '21', '22' ],
- [ '31', '32' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const row = writer.createElement( 'tableRow' );
- writer.insert( row, table, 1 );
- writer.insertElement( 'tableCell', row, 'end' );
- writer.insertElement( 'tableCell', row, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '', '' ],
- [ '21', '22' ],
- [ '31', '32' ]
- ], { asWidget: true } ) );
- } );
- it( 'should insert row on proper index when table has heading rows defined - insert in body', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '21', '22' ],
- [ '31', '32' ]
- ], { headingRows: 1, asWidget: true } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const row = writer.createElement( 'tableRow' );
- writer.insert( row, table, 1 );
- writer.insertElement( 'tableCell', row, 'end' );
- writer.insertElement( 'tableCell', row, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '', '' ],
- [ '21', '22' ],
- [ '31', '32' ]
- ], { headingRows: 1, asWidget: true } ) );
- } );
- it( 'should insert row on proper index when table has heading rows defined - insert in heading', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '21', '22' ],
- [ '31', '32' ]
- ], { headingRows: 2 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const row = writer.createElement( 'tableRow' );
- writer.insert( row, table, 1 );
- writer.insertElement( 'tableCell', row, 'end' );
- writer.insertElement( 'tableCell', row, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '', '' ],
- [ '21', '22' ],
- [ '31', '32' ]
- ], { headingRows: 3, asWidget: true } ) );
- } );
- it( 'should react to changed rows when previous rows\' cells has rowspans', () => {
- setModelData( model, modelTable( [
- [ { rowspan: 2, contents: '00' }, '01' ],
- [ '22' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const row = writer.createElement( 'tableRow' );
- writer.insert( row, table, 2 );
- writer.insertElement( 'tableCell', row, 'end' );
- writer.insertElement( 'tableCell', row, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ { rowspan: 2, contents: '00' }, '01' ],
- [ '22' ],
- [ '', '' ]
- ], { asWidget: true } ) );
- } );
- it( 'should properly create row headings', () => {
- setModelData( model, modelTable( [
- [ { rowspan: 2, contents: '00' }, '01' ],
- [ '22' ]
- ], { headingColumns: 1 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const firstRow = writer.createElement( 'tableRow' );
- writer.insert( firstRow, table, 2 );
- writer.insert( writer.createElement( 'tableCell' ), firstRow, 'end' );
- const secondRow = writer.createElement( 'tableRow' );
- writer.insert( secondRow, table, 3 );
- writer.insert( writer.createElement( 'tableCell' ), secondRow, 'end' );
- writer.insert( writer.createElement( 'tableCell' ), secondRow, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ { rowspan: 2, contents: '00', isHeading: true }, '01' ],
- [ '22' ],
- [ { contents: '', isHeading: true }, '' ],
- [ { contents: '', isHeading: true }, '' ]
- ], { asWidget: true } ) );
- } );
- it( 'should create table cell inside inserted row as a widget', () => {
- setModelData( model, modelTable( [ [ '00' ] ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const firstRow = writer.createElement( 'tableRow' );
- writer.insert( firstRow, table, 1 );
- writer.insert( writer.createElement( 'tableCell' ), firstRow, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">00</span>' +
- '</td>' +
- '</tr>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block"></span>' +
- '</td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- } );
- } );
- describe( 'downcastInsertCell()', () => {
- // The beforeEach is duplicated due to ckeditor/ckeditor5#6574. New test are written using TableEditing.
- beforeEach( () => {
- return VirtualTestEditor.create()
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- doc = model.document;
- root = doc.getRoot( 'main' );
- view = editor.editing.view;
- defaultSchema( model.schema );
- defaultConversion( editor.conversion );
- } );
- } );
- it( 'should add tableCell on proper index in tr', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const row = table.getChild( 0 );
- writer.insertElement( 'tableCell', row, 1 );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '', '01' ]
- ] ) );
- } );
- it( 'should add tableCell on proper index in tr when previous have colspans', () => {
- setModelData( model, modelTable( [
- [ { colspan: 2, contents: '00' }, '13' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const row = table.getChild( 0 );
- writer.insertElement( 'tableCell', row, 1 );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ { colspan: 2, contents: '00' }, '', '13' ]
- ] ) );
- } );
- it( 'should add tableCell on proper index in tr when previous row have rowspans', () => {
- setModelData( model, modelTable( [
- [ { rowspan: 2, contents: '00' }, '13' ],
- [ '11', '12' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.insertElement( 'tableCell', table.getChild( 0 ), 1 );
- writer.insertElement( 'tableCell', table.getChild( 1 ), 0 );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ { rowspan: 2, contents: '00' }, '', '13' ],
- [ '', '11', '12' ]
- ] ) );
- } );
- it( 'split cell simulation - simple', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const firstRow = table.getChild( 0 );
- const secondRow = table.getChild( 1 );
- writer.insertElement( 'tableCell', firstRow, 1 );
- writer.setAttribute( 'colspan', 2, secondRow.getChild( 0 ) );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '', '01' ],
- [ { colspan: 2, contents: '10' }, '11' ]
- ] ) );
- } );
- it( 'merge simulation - simple', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const firstRow = table.getChild( 0 );
- writer.setAttribute( 'colspan', 2, firstRow.getChild( 0 ) );
- writer.remove( firstRow.getChild( 1 ) );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ { colspan: 2, contents: '00' } ],
- [ '10', '11' ]
- ] ) );
- } );
- describe( 'options.asWidget=true', () => {
- beforeEach( () => {
- return VirtualTestEditor.create()
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- doc = model.document;
- root = doc.getRoot( 'main' );
- view = editor.editing.view;
- defaultSchema( model.schema );
- defaultConversion( editor.conversion, true );
- } );
- } );
- it( 'should create inserted table cell as a widget', () => {
- setModelData( model, modelTable( [ [ '00' ] ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const row = table.getChild( 0 );
- writer.insert( writer.createElement( 'tableCell' ), row, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">00</span>' +
- '</td>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true"></td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- } );
- } );
- describe( 'downcastTableHeadingColumnsChange()', () => {
- beforeEach( () => {
- return VirtualTestEditor.create( { plugins: [ Paragraph, TableEditing ] } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- doc = model.document;
- root = doc.getRoot( 'main' );
- view = editor.editing.view;
- } );
- } );
- // The heading columns change downcast conversion is not executed in data pipeline.
- describe( 'editing pipeline', () => {
- it( 'should work for adding heading columns', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingColumns', 1, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ { isHeading: true, contents: '00' }, '01' ],
- [ { isHeading: true, contents: '10' }, '11' ]
- ], { headingColumns: 1, asWidget: true } ) );
- } );
- it( 'should work for changing heading columns to a bigger number', () => {
- setModelData( model, modelTable( [
- [ '00', '01', '02', '03' ],
- [ '10', '11', '12', '13' ]
- ], { headingColumns: 1 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingColumns', 3, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ { isHeading: true, contents: '00' }, { isHeading: true, contents: '01' }, { isHeading: true, contents: '02' }, '03' ],
- [ { isHeading: true, contents: '10' }, { isHeading: true, contents: '11' }, { isHeading: true, contents: '12' }, '13' ]
- ], { asWidget: true } ) );
- } );
- it( 'should work for changing heading columns to a smaller number', () => {
- setModelData( model, modelTable( [
- [ { isHeading: true, contents: '00' }, { isHeading: true, contents: '01' }, { isHeading: true, contents: '02' }, '03' ],
- [ { isHeading: true, contents: '10' }, { isHeading: true, contents: '11' }, { isHeading: true, contents: '12' }, '13' ]
- ], { headingColumns: 3 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingColumns', 1, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ { isHeading: true, contents: '00' }, '01', '02', '03' ],
- [ { isHeading: true, contents: '10' }, '11', '12', '13' ]
- ], { headingColumns: 3, asWidget: true } ) );
- } );
- it( 'should work for removing heading columns', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ], { headingColumns: 1 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.removeAttribute( 'headingColumns', table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ], { asWidget: true } ) );
- } );
- it( 'should be possible to overwrite', () => {
- editor.conversion.attributeToAttribute( { model: 'headingColumns', view: 'headingColumns', converterPriority: 'high' } );
- setModelData( model, modelTable( [ [ '00[] ' ] ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingColumns', 1, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false" headingColumns="1">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">00</span>' +
- '</td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should work with adding table cells', () => {
- setModelData( model, modelTable( [
- [ { rowspan: 2, contents: '00' }, '01', '13', '14' ],
- [ '11', '12', '13' ],
- [ { colspan: 2, contents: '20' }, '22', '23' ]
- ], { headingColumns: 2 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- // Inserting column in heading columns so update table's attribute also
- writer.setAttribute( 'headingColumns', 3, table );
- writer.insertElement( 'tableCell', table.getChild( 0 ), 2 );
- writer.insertElement( 'tableCell', table.getChild( 1 ), 1 );
- writer.insertElement( 'tableCell', table.getChild( 2 ), 1 );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [
- { isHeading: true, rowspan: 2, contents: '00' },
- { isHeading: true, contents: '01' },
- { isHeading: true, contents: '' },
- '13',
- '14'
- ],
- [
- { isHeading: true, contents: '11' },
- { isHeading: true, contents: '' },
- '12',
- '13'
- ],
- [
- { isHeading: true, colspan: 2, contents: '20' },
- { isHeading: true, contents: '' },
- '22',
- '23'
- ]
- ], { asWidget: true } ) );
- } );
- it( 'should create renamed cell as a widget', () => {
- setModelData( model, modelTable( [ [ '00' ] ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingRows', 1, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<thead>' +
- '<tr>' +
- '<th class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">00</span>' +
- '</th>' +
- '</tr>' +
- '</thead>' +
- '</table>' +
- '</figure>'
- );
- } );
- } );
- } );
- describe( 'downcastTableHeadingRowsChange()', () => {
- // The beforeEach is duplicated due to ckeditor/ckeditor5#6574. New test are written using TableEditing.
- beforeEach( () => {
- return VirtualTestEditor.create( { plugins: [ Paragraph, TableEditing ] } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- doc = model.document;
- root = doc.getRoot( 'main' );
- view = editor.editing.view;
- } );
- } );
- // The heading rows change downcast conversion is not executed in data pipeline.
- describe( 'editing pipeline', () => {
- it( 'should work for adding heading rows', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ],
- [ '20', '21' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingRows', 2, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '10', '11' ],
- [ '20', '21' ]
- ], { headingRows: 2, asWidget: true } ) );
- } );
- it( 'should work for changing number of heading rows to a bigger number', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ],
- [ '20', '21' ]
- ], { headingRows: 1 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingRows', 2, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '10', '11' ],
- [ '20', '21' ]
- ], { headingRows: 2, asWidget: true } ) );
- } );
- it( 'should work for changing number of heading rows to a smaller number', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ],
- [ '20', '21' ],
- [ '30', '31' ]
- ], { headingRows: 3 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingRows', 2, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '10', '11' ],
- [ '20', '21' ],
- [ '30', '31' ]
- ], { headingRows: 2, asWidget: true } ) );
- } );
- it( 'should work for removing heading rows', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ], { headingRows: 2 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.removeAttribute( 'headingRows', table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ], { asWidget: true } ) );
- } );
- it( 'should work for making heading rows without tbody', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingRows', 2, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ], { headingRows: 2, asWidget: true } ) );
- } );
- it( 'should be possible to overwrite', () => {
- editor.conversion.attributeToAttribute( {
- model: 'headingRows',
- view: 'headingRows',
- converterPriority: 'high'
- } );
- setModelData( model, modelTable( [ [ '00' ] ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingRows', 1, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false" headingRows="1">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">00</span>' +
- '</td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should work with adding table rows at the beginning of a table', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ]
- ], { headingRows: 1 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingRows', 2, table );
- const tableRow = writer.createElement( 'tableRow' );
- writer.insert( tableRow, table, 0 );
- writer.insertElement( 'tableCell', tableRow, 'end' );
- writer.insertElement( 'tableCell', tableRow, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '', '' ],
- [ '00', '01' ],
- [ '10', '11' ]
- ], { headingRows: 2, asWidget: true } ) );
- } );
- it( 'should work with adding a table row and expanding heading', () => {
- setModelData( model, modelTable( [
- [ '00', '01' ],
- [ '10', '11' ],
- [ '20', '21' ]
- ], { headingRows: 1 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingRows', 2, table );
- const tableRow = writer.createElement( 'tableRow' );
- writer.insert( tableRow, table, 1 );
- writer.insertElement( 'tableCell', tableRow, 'end' );
- writer.insertElement( 'tableCell', tableRow, 'end' );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00', '01' ],
- [ '', '' ],
- [ '10', '11' ],
- [ '20', '21' ]
- ], { headingRows: 2, asWidget: true } ) );
- } );
- it( 'should create renamed cell as a widget', () => {
- setModelData( model, modelTable( [ [ '00' ] ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.setAttribute( 'headingColumns', 1, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<th class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">00</span>' +
- '</th>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- } );
- } );
- describe( 'downcastRemoveRow()', () => {
- // The beforeEach is duplicated due to ckeditor/ckeditor5#6574. New test are written using TableEditing.
- beforeEach( async () => {
- editor = await VirtualTestEditor.create( { plugins: [ Paragraph, TableEditing ] } );
- model = editor.model;
- root = model.document.getRoot( 'main' );
- view = editor.editing.view;
- } );
- // The remove row downcast conversion is not executed in data pipeline.
- describe( 'editing pipeline', () => {
- it( 'should react to removed row from the beginning of a body rows (no heading rows)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01' ],
- [ '10', '11' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.remove( table.getChild( 1 ) );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">00</span>' +
- '</td>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">01</span>' +
- '</td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should react to removed row form the end of a body rows (no heading rows)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01' ],
- [ '10', '11' ]
- ] ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.remove( table.getChild( 0 ) );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">10</span>' +
- '</td>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">11</span>' +
- '</td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should react to removed row from the beginning of a heading rows (no body rows)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01' ],
- [ '10', '11' ]
- ], { headingRows: 2 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- // Removing row from a heading section changes requires changing heading rows attribute.
- writer.setAttribute( 'headingRows', 1, table );
- writer.remove( table.getChild( 0 ) );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<thead>' +
- '<tr>' +
- '<th class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">10</span>' +
- '</th>' +
- '<th class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">11</span>' +
- '</th>' +
- '</tr>' +
- '</thead>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should react to removed row form the end of a heading rows (no body rows)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01' ],
- [ '10', '11' ]
- ], { headingRows: 2 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- // Removing row from a heading section changes requires changing heading rows attribute.
- writer.setAttribute( 'headingRows', 1, table );
- writer.remove( table.getChild( 1 ) );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<thead>' +
- '<tr>' +
- '<th class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">00</span>' +
- '</th>' +
- '<th class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">01</span>' +
- '</th>' +
- '</tr>' +
- '</thead>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should react to removed row form the end of a heading rows (first cell in body has colspan)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01', '02', '03' ],
- [ { rowspan: 2, colspan: 2, contents: '10' }, '12', '13' ],
- [ '22', '23' ]
- ], { headingRows: 1 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- // Removing row from a heading section changes requires changing heading rows attribute.
- writer.remove( table.getChild( 0 ) );
- writer.setAttribute( 'headingRows', 0, table );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" ' +
- 'colspan="2" contenteditable="true" rowspan="2">' +
- '<span style="display:inline-block">10</span>' +
- '</td>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">12</span>' +
- '</td>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">13</span>' +
- '</td>' +
- '</tr>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">22</span>' +
- '</td>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">23</span>' +
- '</td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should remove empty thead if a last row was removed from a heading rows (has heading and body)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01' ],
- [ '10', '11' ]
- ], { headingRows: 1 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- // Removing row from a heading section changes requires changing heading rows attribute.
- writer.removeAttribute( 'headingRows', table );
- writer.remove( table.getChild( 0 ) );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<tbody>' +
- '<tr>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">10</span>' +
- '</td>' +
- '<td class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">11</span>' +
- '</td>' +
- '</tr>' +
- '</tbody>' +
- '</table>' +
- '</figure>'
- );
- } );
- it( 'should remove empty tbody if a last row was removed a body rows (has heading and body)', () => {
- setModelData( model, modelTable( [
- [ '00[]', '01' ],
- [ '10', '11' ]
- ], { headingRows: 1 } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- writer.remove( table.getChild( 1 ) );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ),
- '<figure class="ck-widget ck-widget_with-selection-handle table" contenteditable="false">' +
- '<div class="ck ck-widget__selection-handle"></div>' +
- '<table>' +
- '<thead>' +
- '<tr>' +
- '<th class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">00</span>' +
- '</th>' +
- '<th class="ck-editor__editable ck-editor__nested-editable" contenteditable="true">' +
- '<span style="display:inline-block">01</span>' +
- '</th>' +
- '</tr>' +
- '</thead>' +
- '</table>' +
- '</figure>'
- );
- } );
- } );
- } );
- describe( 'options.asWidget=true', () => {
- beforeEach( () => {
- return VirtualTestEditor.create()
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- doc = model.document;
- root = doc.getRoot( 'main' );
- view = editor.editing.view;
- defaultSchema( model.schema );
- defaultConversion( editor.conversion, true );
- editor.conversion.for( 'downcast' ).add( paragraphInTableCell() );
- } );
- } );
- it( 'should rename <span> to <p> when more then one block content inside table cell', () => {
- setModelData( model, modelTable( [
- [ '00[]' ]
- ] ) );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '00' ]
- ], { asWidget: true } ) );
- const table = root.getChild( 0 );
- model.change( writer => {
- const nodeByPath = table.getNodeByPath( [ 0, 0, 0 ] );
- const paragraph = writer.createElement( 'paragraph' );
- writer.insert( paragraph, nodeByPath, 'after' );
- writer.setSelection( nodeByPath.nextSibling, 0 );
- } );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '<p>00</p><p></p>' ]
- ], { asWidget: true } ) );
- } );
- it( 'should rename <span> to <p> for single paragraph with attribute', () => {
- model.schema.extend( '$block', { allowAttributes: 'foo' } );
- editor.conversion.attributeToAttribute( { model: 'foo', view: 'foo' } );
- setModelData( model, modelTable( [
- [ '<paragraph foo="bar">00[]</paragraph>' ]
- ] ) );
- assertEqualMarkup( getViewData( view, { withoutSelection: true } ), viewTable( [
- [ '<p foo="bar">00</p>' ]
- ], { asWidget: true } ) );
- } );
- } );
- } );
|