Searched defs:htmlDocument (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8HTMLDocumentCustom.cpp56 HTMLDocument* htmlDocument = V8HTMLDocument::toImpl(info.Holder()); local
59 if (RefPtrWillBeRawPtr<LocalFrame> frame = htmlDocument->frame()) {
87 htmlDocument->open(callingDOMWindow(info.GetIsolate())->document(), exceptionState);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DWindowProxy.cpp417 static v8::Handle<v8::Value> getNamedProperty(HTMLDocument* htmlDocument, const AtomicString& key, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
419 if (!htmlDocument->hasNamedItem(key) && !htmlDocument->hasExtraNamedItem(key))
422 RefPtrWillBeRawPtr<DocumentNameCollection> items = htmlDocument->documentNamedItems(key);
441 HTMLDocument* htmlDocument = V8HTMLDocument::toImpl(info.Holder()); local
442 ASSERT(htmlDocument);
443 v8::Handle<v8::Value> result = getNamedProperty(htmlDocument, name, info.Holder(), info.GetIsolate());

Completed in 266 milliseconds