fixed typo that broke fontColor rendering in VML.js. Thanks paco for spotting this. r=fredj (closes #2231)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@10011 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
ahocevar
2010-02-03 14:43:19 +00:00
parent f927d79977
commit ec455e81e1
2 changed files with 29 additions and 1 deletions

View File

@@ -807,7 +807,7 @@ OpenLayers.Renderer.VML = OpenLayers.Class(OpenLayers.Renderer.Elements, {
textbox.innerText = style.label; textbox.innerText = style.label;
if (style.fillColor) { if (style.fontColor) {
textbox.style.color = style.fontColor; textbox.style.color = style.fontColor;
} }
if (style.fontOpacity) { if (style.fontOpacity) {

View File

@@ -96,6 +96,34 @@
t.eq(r.root.style.width, "1px", "root width is correct"); t.eq(r.root.style.width, "1px", "root width is correct");
t.eq(r.root.style.height, "2px", "root height is correct"); t.eq(r.root.style.height, "2px", "root height is correct");
} }
function test_VML_drawText(t) {
if (!OpenLayers.Renderer.VML.prototype.supported()) {
t.plan(0);
return;
}
t.plan(2);
var r = new OpenLayers.Renderer.VML(document.body);
r.LABEL_ID_SUFFIX = "";
r.getResolution = function() {
return 1;
};
var style = {
label: "myText",
fontColor: "blue"
}
r.drawText("feature1", style, new OpenLayers.Geometry.Point(1,1));
var textbox = document.getElementById("feature1_textbox");
t.eq(textbox.innerText, style.label, "label set correctly");
t.eq(textbox.style.color, style.fontColor, "font color of label set correctly");
}
function test_VML_drawpoint(t) { function test_VML_drawpoint(t) {
if (!OpenLayers.Renderer.VML.prototype.supported()) { if (!OpenLayers.Renderer.VML.prototype.supported()) {