Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review: https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html>
2 <head>
3 <script>
4 function loaded() {
5 var node = document;
6 var handler = function(operation, key, data, src, dst) { alert(data); };
7 node.setUserData("foo", "data", handler);
8 }
9 </script>
10 </head>
11 <body onload="loaded();">
12 <div id="elem"></div>
13 </body>
14 </html>