initial import
[vuplus_webkit] / Source / WebCore / manual-tests / inspector-wrappers / inspector-treeElementIdentifier.html
1 <html>
2 <head>
3 <script src="inspector-wrappers-test-utils.js"></script>
4 </head>
5 <body>
6 <script>
7   document.body.__defineGetter__("__treeElementIdentifier", function() {
8     try { doAttack(); } catch(ex) { }
9     return this.___treeElementIdentifier;
10   });
11   document.body.__defineSetter__("__treeElementIdentifier", function(val) {
12     this.___treeElementIdentifier = val;
13   });
14 </script>
15 <script>instructions({trigger: "Collapse and expand the &lt;body/&gt; tag"});</script>
16 </body>
17 </html>