diff --git a/tests/manual/rendered-dimensions.html b/tests/manual/rendered-dimensions.html
index 72f0eecc1d..36ab370905 100644
--- a/tests/manual/rendered-dimensions.html
+++ b/tests/manual/rendered-dimensions.html
@@ -49,7 +49,7 @@ function run() {
out.innerHTML += "
Fail (" + a + " not eq " + b + "): " + msg + "";
}
}
- }
+ };
var text = (new Array(10)).join("foo foo foo
"),
content = "" + text + "
";
var testName,
@@ -59,7 +59,7 @@ function run() {
testName = "Absolute with w&h: ";
var optionAbsDiv ={
containerElement: document.getElementById("absoluteDiv")
- }
+ };
finalSize = OpenLayers.Util.getRenderedDimensions(content, null, optionAbsDiv);
t.eq(finalSize.w, initialSize.w,
testName + "initial width " + initialSize.w + "px is maintained");
@@ -77,7 +77,7 @@ function run() {
testName = "Absolute without w&h: ";
var optionAbsDiv00 ={
containerElement: document.getElementById("absoluteDiv00")
- }
+ };
finalSize = OpenLayers.Util.getRenderedDimensions(content, null, optionAbsDiv00);
t.eq(finalSize.w, initialSize.w,
testName + "initial width " + initialSize.w + "px is maintained");