From ff4899f520e01d33369316670721d9f6a84a85f9 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Tue, 21 Nov 2006 15:47:02 +0000 Subject: [PATCH] The popup test had a test in here which tested the size of the content div... however, for some reason, the test was testing the existing, broken behavior! Fix the test so that we make sure we don't regress in the future. (Thanks uz.) git-svn-id: http://svn.openlayers.org/trunk/openlayers@1949 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/test_Popup.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_Popup.html b/tests/test_Popup.html index 7ee292015f..95b7ce5279 100644 --- a/tests/test_Popup.html +++ b/tests/test_Popup.html @@ -83,8 +83,8 @@ t.eq(contentDiv.className, "olPopupContent", "correct content div className"); t.eq(contentDiv.id, "chicken_contentDiv", "correct content div id"); - t.eq(contentDiv.style.width, "200px", "correct content div width"); - t.eq(contentDiv.style.height, "200px", "correct content div height"); + t.eq(contentDiv.style.width, "500px", "correct content div width"); + t.eq(contentDiv.style.height, "400px", "correct content div height"); t.eq(contentDiv.style.position, "relative", "correct content div position"); t.eq(contentDiv.style.overflow, "hidden", "correct content div overflow"); t.eq(contentDiv.innerHTML, content, "correct content div content");