mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-03-16 22:10:32 +00:00
added a visual test
This commit is contained in:
parent
0a83d45b70
commit
fe4f988da0
3 changed files with 70 additions and 2 deletions
|
|
@ -607,7 +607,7 @@
|
|||
'top left width height scaleX scaleY flipX flipY originX originY transformMatrix ' +
|
||||
'stroke strokeWidth strokeDashArray strokeLineCap strokeDashOffset strokeLineJoin strokeMiterLimit ' +
|
||||
'angle opacity fill globalCompositeOperation shadow clipTo visible backgroundColor ' +
|
||||
'skewX skewY fillRule paintFirst clipPath'
|
||||
'skewX skewY fillRule paintFirst clipPath strokeUniform'
|
||||
).split(' '),
|
||||
|
||||
/**
|
||||
|
|
@ -618,7 +618,7 @@
|
|||
* @type Array
|
||||
*/
|
||||
cacheProperties: (
|
||||
'fill stroke strokeWidth strokeDashArray width height paintFirst' +
|
||||
'fill stroke strokeWidth strokeDashArray width height paintFirst strokeUniform' +
|
||||
' strokeLineCap strokeDashOffset strokeLineJoin strokeMiterLimit backgroundColor clipPath'
|
||||
).split(' '),
|
||||
|
||||
|
|
|
|||
68
test/visual/generic_rendering.js
Normal file
68
test/visual/generic_rendering.js
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
(function() {
|
||||
if (fabric.isLikelyNode) {
|
||||
if (process.env.launcher === 'Firefox') {
|
||||
fabric.browserShadowBlurConstant = 0.9;
|
||||
}
|
||||
if (process.env.launcher === 'Node') {
|
||||
fabric.browserShadowBlurConstant = 1;
|
||||
}
|
||||
if (process.env.launcher === 'Chrome') {
|
||||
fabric.browserShadowBlurConstant = 1.5;
|
||||
}
|
||||
if (process.env.launcher === 'Edge') {
|
||||
fabric.browserShadowBlurConstant = 1.75;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (navigator.userAgent.indexOf('Firefox') !== -1) {
|
||||
fabric.browserShadowBlurConstant = 0.9;
|
||||
}
|
||||
if (navigator.userAgent.indexOf('Chrome') !== -1) {
|
||||
fabric.browserShadowBlurConstant = 1.5;
|
||||
}
|
||||
if (navigator.userAgent.indexOf('Edge') !== -1) {
|
||||
fabric.browserShadowBlurConstant = 1.75;
|
||||
}
|
||||
}
|
||||
fabric.enableGLFiltering = false;
|
||||
fabric.isWebglSupported = false;
|
||||
fabric.Object.prototype.objectCaching = true;
|
||||
var visualTestLoop;
|
||||
if (fabric.isLikelyNode) {
|
||||
visualTestLoop = global.visualTestLoop;
|
||||
}
|
||||
else {
|
||||
visualTestLoop = window.visualTestLoop;
|
||||
}
|
||||
var fabricCanvas = this.canvas = new fabric.Canvas(null, {
|
||||
enableRetinaScaling: false, renderOnAddRemove: false, width: 200, height: 200,
|
||||
});
|
||||
|
||||
var tests = [];
|
||||
|
||||
function generic1(canvas, callback) {
|
||||
canvas.setDimensions({ width: 150, height: 60 });
|
||||
var rect = new fabric.Rect({
|
||||
width: 20, height: 40, strokeWidth: 2, scaleX: 6, scaleY: 0.5, strokeUniform: true,
|
||||
fill: '', stroke: 'red'
|
||||
});
|
||||
var rect2 = new fabric.Rect({
|
||||
width: 60, height: 60, top: 4, left: 4, strokeWidth: 2, scaleX: 2,
|
||||
scaleY: 0.5, strokeUniform: false, fill: '', stroke: 'blue',
|
||||
});
|
||||
canvas.add(rect);
|
||||
canvas.add(rect2);
|
||||
canvas.renderAll();
|
||||
callback(canvas.lowerCanvasEl);
|
||||
}
|
||||
|
||||
tests.push({
|
||||
test: 'Rect with strokeUniform: true',
|
||||
code: generic1,
|
||||
golden: 'generic1.png',
|
||||
newModule: 'DataURL exports',
|
||||
percentage: 0.09,
|
||||
});
|
||||
|
||||
tests.forEach(visualTestLoop(fabricCanvas, QUnit));
|
||||
})();
|
||||
BIN
test/visual/golden/generic1.png
Normal file
BIN
test/visual/golden/generic1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 377 B |
Loading…
Reference in a new issue