[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / js / cross-frame-prototype.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="resources/js-test-pre.js"></script>
5 </head>
6 <body>
7 <iframe></iframe>
8 <script>
9
10     var arrayConstructor = frames[0].Array;
11     arrayConstructor.prototype.foo = "bar";
12     var x = new arrayConstructor();
13
14     shouldBe("x.foo", '"bar"');
15
16 </script><script src="resources/js-test-post.js"></script>
17 </body>
18 </html>