From a35715fda1f17d8e2fe1ff38060a0006a287e462 Mon Sep 17 00:00:00 2001 From: Timothy Nikkel Date: Sat, 21 Aug 2010 21:29:08 -0500 Subject: [PATCH] Fix message in test. r=philor a=tests-only --- content/base/test/test_bug421602.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/base/test/test_bug421602.html b/content/base/test/test_bug421602.html index 9b7a9f67378..e1c87e26752 100644 --- a/content/base/test/test_bug421602.html +++ b/content/base/test/test_bug421602.html @@ -38,7 +38,7 @@ function loadTestImage() { var img1 = new Image(); img1.onload = function() { img1loaded = true; } img1.onerror = function() { - is(img2errored, false, "Image 3 should not error before image 2"); + is(img2errored, false, "Image 2 should not error before image 1"); img1errored = true; } img1.src = window.location.href + "?image1=true";