Re: Image element will hang test execution

2011-03-03 Thread Alex D.
I guess this thread is closed. I couldn't find the error though :| -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: Image element will hang test execution

2011-02-25 Thread Alex D.
Greg, thanks for your reply. I've given a test example above that hangs... I don't understand what you mean by all those steps :). Just copy-paste the code above and run it as a gwt testcase. On Feb 24, 5:48 pm, Greg Dougherty dougherty.greg...@mayo.edu wrote: Right before this object's

Re: Image element will hang test execution

2011-02-24 Thread Alex D.
Still no idea guys? On Feb 23, 6:19 pm, Alex D. alex.dobjans...@gmail.com wrote: Hi, The code below will not finish (gets hanged in the Image constructor): public class ATest extends GWTTestCase {        // . init code //         public void testShouldNotHang () {                

Re: Image element will hang test execution

2011-02-24 Thread Greg Dougherty
Right before this object's constructor, try to create the image object on its own. If that doesn't work, try to create the image as the first think your app does. If that does work, you've got something in your app breaking the image. If that doesn't work, you have a bad image. If they both

Image element will hang test execution

2011-02-23 Thread Alex D.
Hi, The code below will not finish (gets hanged in the Image constructor): public class ATest extends GWTTestCase { // . init code // public void testShouldNotHang () { // Create an empty image final Image img = new Image(); } }