From 5f6cabf2ec8f5588d7adc655c9c367e4a0f30582 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Mon, 17 Dec 2007 04:47:30 +0000 Subject: [PATCH] opera drops the ';' on the assigned property when retrieving it. git-svn-id: http://svn.openlayers.org/trunk/openlayers@5454 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/Layer/test_Vector.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Layer/test_Vector.html b/tests/Layer/test_Vector.html index 83d9277684..58427a5b1f 100644 --- a/tests/Layer/test_Vector.html +++ b/tests/Layer/test_Vector.html @@ -260,7 +260,7 @@ feature.style = customStyle5; layer.drawFeature(feature); t.eq(root.firstChild.getAttributeNS(null, 'style'), - 'opacity: '+customStyle5.graphicOpacity.toString()+';', + 'opacity: '+customStyle5.graphicOpacity.toString()+(OpenLayers.Util.getBrowserName() == "opera" ? "" : ';'), "graphicOpacity correctly set"); feature.style = customStyle6; layer.drawFeature(feature);