diff --git a/examples/vector-features.html b/examples/vector-features.html
index c133d51dd1..8ae5539d42 100644
--- a/examples/vector-features.html
+++ b/examples/vector-features.html
@@ -1,3 +1,4 @@
+
OpenLayers: Vector Features
diff --git a/lib/OpenLayers/Layer/Google/v3.js b/lib/OpenLayers/Layer/Google/v3.js
index 38a86c65d2..f3e6ab3bf4 100644
--- a/lib/OpenLayers/Layer/Google/v3.js
+++ b/lib/OpenLayers/Layer/Google/v3.js
@@ -90,7 +90,8 @@ OpenLayers.Layer.Google.v3 = {
keyboardShortcuts: false,
draggable: false,
disableDoubleClickZoom: true,
- scrollwheel: false
+ scrollwheel: false,
+ streetViewControl: false
});
// cache elements for use by any other google layers added to
diff --git a/tests/Control/Panel.html b/tests/Control/Panel.html
index 2c3dd672d3..044f8de477 100644
--- a/tests/Control/Panel.html
+++ b/tests/Control/Panel.html
@@ -243,7 +243,7 @@
panel.activate();
var div = panel.div;
panel.destroy();
- t.ok(panel.div.innerHTML == "",
+ t.eq(panel.div, null,
"Panel is not displayed after destroy without any active control");
map.destroy();
}