diff --git a/examples/SVG Export/Text Testing.html b/examples/SVG Export/Text Testing.html
index 3210a37c..4a4de860 100644
--- a/examples/SVG Export/Text Testing.html
+++ b/examples/SVG Export/Text Testing.html
@@ -18,6 +18,15 @@
text.fillColor = 'red';
text.strokeWidth = '4';
text.content = 'This is also a test';
+ /*
+ text.scale(5);
+ text.translate(15, 15);
+ text.rotate(20);
+ text.shear(20, 5);
+ */
+ text.rotate(45);
+ text.shear(.85, .15);
+ text.scale(.85, .75);
var path2 = new Path.Circle(new Point(100, 100), 50);
path2.strokeColor = 'black';