diff --git a/example/child.html b/example/child.html
index fcab9fb1..ad7fee2e 100644
--- a/example/child.html
+++ b/example/child.html
@@ -28,6 +28,15 @@
a.parseComplete();
});
+setTimeout(function(){
+ chan.bind("delayedReverse", function(trans, s) {
+ if (typeof s !== 'string') {
+ throw [ "invalid_arguments", 'argument to reverse function should be a string' ];
+ }
+ return s.split("").reverse().join("");
+ });
+}, 500)
+