diff options
Diffstat (limited to 'WebCore/bindings/v8/custom/V8DocumentCustom.cpp')
-rw-r--r-- | WebCore/bindings/v8/custom/V8DocumentCustom.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/WebCore/bindings/v8/custom/V8DocumentCustom.cpp b/WebCore/bindings/v8/custom/V8DocumentCustom.cpp index 8968707..9fa9f80 100644 --- a/WebCore/bindings/v8/custom/V8DocumentCustom.cpp +++ b/WebCore/bindings/v8/custom/V8DocumentCustom.cpp @@ -46,11 +46,16 @@ #include "V8IsolatedContext.h" #include "V8Node.h" #include "V8Proxy.h" -#include "V8SVGDocument.h" +#if ENABLE(3D_CANVAS) #include "V8WebGLRenderingContext.h" +#endif #include "V8XPathNSResolver.h" #include "V8XPathResult.h" +#if ENABLE(SVG) +#include "V8SVGDocument.h" +#endif + #include <wtf/RefPtr.h> namespace WebCore { @@ -67,7 +72,7 @@ v8::Handle<v8::Value> V8Document::evaluateCallback(const v8::Arguments& args) if (V8Node::HasInstance(args[1])) contextNode = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[1])); - RefPtr<XPathNSResolver> resolver = V8DOMWrapper::getXPathNSResolver(args[2], V8Proxy::retrieve(V8Proxy::retrieveFrameForCallingContext())); + RefPtr<XPathNSResolver> resolver = V8DOMWrapper::getXPathNSResolver(args[2]); if (!resolver && !args[2]->IsNull() && !args[2]->IsUndefined()) return throwError(TYPE_MISMATCH_ERR); |