paper.js/test/tests/TextItem.js

30 lines
946 B
JavaScript
Raw Normal View History

/*
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
* http://paperjs.org/
*
* Copyright (c) 2011 - 2016, Juerg Lehni & Jonathan Puckey
2014-01-03 19:47:16 -05:00
* http://scratchdisk.com/ & http://jonathanpuckey.com/
*
* Distributed under the MIT license. See LICENSE file for details.
*
* All rights reserved.
*/
QUnit.module('TextItem');
test('PointText', function() {
2014-08-16 13:24:54 -04:00
var text = new PointText({
fontFamily: 'Helvetica, Arial',
2014-08-16 13:24:54 -04:00
fontSize: 14,
point: [100, 100],
content: 'Hello World!'
});
equals(text.fillColor, new Color(0, 0, 0), 'text.fillColor should be black by default');
equals(text.point, new Point(100, 100), 'text.point');
equals(text.bounds.point, new Point(100, 87.4), 'text.bounds.point');
equals(text.bounds.size, new Size(76, 16.8), 'text.bounds.size', { tolerance: 1.0 });
2014-08-16 13:24:54 -04:00
equals(function() {
return text.hitTest(text.bounds.center) != null;
}, true);
});