This is the related section of wicket-ajax.js (~line 985 in 1.3.4) right
before that error message is logged.  I can't find much of anything on the
Internet about Chrome or WebKit supporting DOMParser, so that may be it...?
                                
// parse the response if the callback needs a DOM tree
if (this.parseResponse == true) {
   var xmldoc;                                  
   if (typeof(window.XMLHttpRequest) != "undefined" && typeof(DOMParser) !=
"undefined") {                                          
      var parser = new DOMParser();
      xmldoc = parser.parseFromString(responseAsText, "text/xml");              
                                
   } else if (window.ActiveXObject) {
      xmldoc = t.responseXML;
   }
   // invoke the loaded callback with an xml document
   this.loadedCallback(xmldoc); 
} else {
   // invoke the loaded callback with raw string
   this.loadedCallback(responseAsText);
}
-- 
View this message in context: 
http://www.nabble.com/Google-Chrome---Wicket-tp19277005p19312785.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to