mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
b4478216be
Change-Id: If114e3fc962598f7ea8f7f8ec8975a3b0d2d83e6
26 lines
855 B
JavaScript
26 lines
855 B
JavaScript
module( 've.dm.DocumentSynchronizer' );
|
|
|
|
/* Tests */
|
|
|
|
test( 'getDocument', 1, function() {
|
|
var doc = new ve.dm.Document( ve.dm.example.data.slice( 0 ) ),
|
|
ds = new ve.dm.DocumentSynchronizer( doc );
|
|
strictEqual( ds.getDocument(), doc );
|
|
} );
|
|
|
|
test( 'synchronize', 2, function() {
|
|
var doc = new ve.dm.Document( ve.dm.example.data.slice( 0 ) ),
|
|
ds = new ve.dm.DocumentSynchronizer( doc );
|
|
|
|
// Annotate "a" with bold formatting
|
|
doc.data[1] = ['a', { '{"type":"bold"}': { 'type': 'bold' } }];
|
|
ds.pushAnnotation( new ve.Range( 1, 2 ) );
|
|
doc.getDocumentNode().getChildren()[0].getChildren()[0].on( 'update', function() {
|
|
ok( true, 'annotations trigger update events' );
|
|
} );
|
|
doc.getDocumentNode().getChildren()[0].getChildren()[0].on( 'annotation', function() {
|
|
ok( true, 'annotations trigger annotation events' );
|
|
} );
|
|
ds.synchronize();
|
|
} );
|