Changeset 7703

Show
Ignore:
Timestamp:
03/20/07 05:32:43 (22 months ago)
Author:
alex
Message:

get debugging output working correctly on the webkit nightlies. Refs #2550

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dojo/trunk/tests/_browserRunner.js

    r7655 r7703  
    9292                        }else{ 
    9393                                tests.debug = function(){ 
    94                                         sendToLogPane.apply(window, arguments); 
    9594                                        var msg = ""; 
    9695                                        for(var x=0; x<arguments.length; x++){ 
    9796                                                msg += " "+arguments[x]; 
    9897                                        } 
     98                                        sendToLogPane(msg); 
    9999                                        console.log("DEBUG:"+msg); 
    100100                                }