mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-12 09:09:25 +00:00
a15b2f77f2
Add some missing constructor names and rename the ones with a lowercase 'v'. I previously changed Object.create and others to using hasOwn, but that turned out to be useless. The thought at the time was to only use the native one if it really is a native one (and not a polyfill from another script), however in then hasOwn is only relevant on prototypes and when negated. For static members it would be an own-property either way. Follows-up: * Id6783fcfc35a896db088ff424ff9faaabcaff716 (metanode) * Iab763954fb8cf375900d7a9a92dec1c755d5407e (object-management) Change-Id: Ia6ef597e5e5453277472dfc23f25d2878b68b7f6
26 lines
588 B
JavaScript
26 lines
588 B
JavaScript
/**
|
|
* VisualEditor Document tests.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
QUnit.module( 've.Document' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.DocumentStub = function VeDocumentStub( documentNode ) {
|
|
// Parent constructor
|
|
ve.Document.call( this, documentNode );
|
|
};
|
|
|
|
ve.inheritClass( ve.DocumentStub, ve.Document );
|
|
|
|
/* Tests */
|
|
|
|
QUnit.test( 'getDocumentNode', 1, function ( assert ) {
|
|
var node = new ve.NodeStub(),
|
|
doc = new ve.DocumentStub( node );
|
|
assert.strictEqual( doc.getDocumentNode( node ), node );
|
|
} );
|