[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / xmlhttprequest / xmlhttprequest-responsetype-before-open.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4     <script src="../js/resources/js-test-pre.js"></script>
5     <script>
6         description('This tests that the XMLHttpRequest responseType attribute is modifiable prior to being in the OPENED state.');
7         var xhr;
8
9         xhr = new XMLHttpRequest();
10         evalAndLog("xhr.responseType = 'document';");
11         evalAndLog("xhr.open('GET', 'http://mydomain');");
12         shouldBeEqualToString('xhr.responseType', 'document');
13     </script>
14     <script src="../js/resources/js-test-post.js"></script>
15 </head>
16 <body>
17     <div id="description"></div>
18     <div id="console"></div>
19 </body>
20 </html>