[arquillian-issues] [JBoss JIRA] (ARQGRA-455) Guarded XHR2 request fails when its onload callback is JQuery proxy

Juraj Húska (JIRA) issues at jboss.org
Mon Jul 21 10:35:40 EDT 2014


    [ https://issues.jboss.org/browse/ARQGRA-455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12986692#comment-12986692 ] 

Juraj Húska edited comment on ARQGRA-455 at 7/21/14 10:34 AM:
--------------------------------------------------------------

Hey [~okiss] , you are JS ninja recently adding the XHR2 support. Any insight or hint please ?


was (Author: jhuska):
Hey [~okiss] , you are JS ninja, any insight or hint please ?

> Guarded XHR2 request fails when its onload callback is JQuery proxy
> -------------------------------------------------------------------
>
>                 Key: ARQGRA-455
>                 URL: https://issues.jboss.org/browse/ARQGRA-455
>             Project: Arquillian Graphene
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: core
>    Affects Versions: 2.0.3.Final
>            Reporter: Juraj Húska
>
> If Graphene is guarding an AJAX request, which {{onload}} callback is JQUery proxy, then it fails. There is a problem with arguments passing.
> *XHR2 request*:
> {code:javascript}
> function makeXHR2() {
>         	var xhr = new XMLHttpRequest();
>         	xhr.open("GET", "sample1.html", true);
>         	xhr.responseType = 'text';
>                 
>         	xhr.onload = $.proxy(function (e) {
>                     switch (e.target.status) {
>                         case 200:
>                             console.log('HTTP 200');
>                             break;
>                         default:
>                             console.log('HTTP 500');
>                     }
>                     
>                     var responseContext = {
>                     }
>                 }, this);
>                     
>         	xhr.send(null);
>         }
> {code}
> In browser console there is an error that states:
> {code}
> e.target is undefined
> {code}



--
This message was sent by Atlassian JIRA
(v6.2.6#6264)



More information about the arquillian-issues mailing list