diff --git a/examples/SVG Export/Rotated Primitives.html b/examples/SVG Export/Rotated Primitives.html
index c6bd39ca..e03c6cf4 100644
--- a/examples/SVG Export/Rotated Primitives.html
+++ b/examples/SVG Export/Rotated Primitives.html
@@ -29,7 +29,21 @@
var rect = new Path.RoundRectangle(250, 20, 200, 300, 40, 20);
rect.fillColor = 'yellow';
rect.rotate(-20);
-
+ rect.data = {
+ string: '----',
+ number: 1234,
+ array: ['a ray', 'some rays'],
+ bool: true,
+ nil: null,
+ point: new Point(12, 34),
+ size: new Size(12, 34),
+ rectangle: new Rectangle([12, 34], [56, 78]),
+ deep: {
+ deeper: {
+ deepest: true
+ }
+ }
+ };
document.getElementById('svg').appendChild(project.exportSvg());
diff --git a/examples/SVG Import/Rect Testing.html b/examples/SVG Import/Rect Testing.html
index 969f6c36..bcfe5197 100644
--- a/examples/SVG Import/Rect Testing.html
+++ b/examples/SVG Import/Rect Testing.html
@@ -6,12 +6,13 @@