summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webkit/port/bindings/v8/v8_custom.cpp2
-rw-r--r--webkit/port/bindings/v8/v8_index.h2
-rw-r--r--webkit/port/bindings/v8/v8_proxy.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/webkit/port/bindings/v8/v8_custom.cpp b/webkit/port/bindings/v8/v8_custom.cpp
index 281ae7c..ced5794 100644
--- a/webkit/port/bindings/v8/v8_custom.cpp
+++ b/webkit/port/bindings/v8/v8_custom.cpp
@@ -1394,7 +1394,7 @@ NAMED_PROPERTY_GETTER(DOMWindow) {
if (items->length() == 1) {
return V8Proxy::NodeToV8Object(items->firstItem());
} else {
- return V8Proxy::ToV8Object(V8ClassIndex::HTMLCOLLECTION,items.get());
+ return V8Proxy::ToV8Object(V8ClassIndex::HTMLCOLLECTION, items.get());
}
}
}
diff --git a/webkit/port/bindings/v8/v8_index.h b/webkit/port/bindings/v8/v8_index.h
index 2334773..7122c56 100644
--- a/webkit/port/bindings/v8/v8_index.h
+++ b/webkit/port/bindings/v8/v8_index.h
@@ -377,7 +377,7 @@ typedef v8::Persistent<v8::FunctionTemplate> (*FunctionTemplateFactory)();
V(SVGUNITTYPES, SVGUnitTypes) \
V(SVGZOOMEVENT, SVGZoomEvent)
-// SVG POD types shoud list all types whose IDL has PODType declaration.
+// SVG POD types should list all types whose IDL has PODType declaration.
#define SVG_POD_TYPES(V) \
V(SVGLENGTH, SVGLength) \
V(SVGTRANSFORM, SVGTransform) \
diff --git a/webkit/port/bindings/v8/v8_proxy.cpp b/webkit/port/bindings/v8/v8_proxy.cpp
index 8b90f54..c785c6b 100644
--- a/webkit/port/bindings/v8/v8_proxy.cpp
+++ b/webkit/port/bindings/v8/v8_proxy.cpp
@@ -476,7 +476,7 @@ v8::Handle<v8::Value> V8Proxy::SVGObjectWithContextToV8Object(
SVG_OBJECT_TYPES(MAKE_CASE)
#undef MAKE_CASE
#define MAKE_CASE(TYPE, NAME) \
- case V8ClassIndex::TYPE: \
+ case V8ClassIndex::TYPE: \
static_cast<V8SVGPODTypeWrapper<NAME>*>(object)->ref(); break;
SVG_POD_NATIVE_TYPES(MAKE_CASE)
#undef MAKE_CASE