/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8DocumentLocationCustom.cpp | 37 Document* document = V8Document::toNative(info.Holder()); local 38 if (!document->frame()) 41 DOMWindow* window = document->frame()->domWindow(); 47 Document* document = V8Document::toNative(info.Holder()); local 48 if (!document->frame()) 51 DOMWindow* window = document->frame()->domWindow();
|
/external/webkit/Source/WebCore/dom/ |
DocumentFragment.cpp | 26 #include "Document.h" 34 DocumentFragment::DocumentFragment(Document* document) 35 : ContainerNode(document) 37 ASSERT(document); 40 PassRefPtr<DocumentFragment> DocumentFragment::create(Document* document) 42 return adoptRef(new DocumentFragment(document)); 47 return "#document-fragment"; 72 RefPtr<DocumentFragment> clone = create(document()); [all...] |
DocumentType.cpp | 26 #include "Document.h" 31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const String& systemId) 32 : Node(document, CreateOther) 56 return create(document(), m_name, m_publicId, m_systemId); 61 // Our document node can be null if we were created by a DOMImplementation. We use the parent() instead. 64 Document* doc = static_cast<Document*>(parentNode()); 73 if (document() && document()->doctype() == this [all...] |
StyleElement.cpp | 25 #include "Document.h" 40 StyleElement::StyleElement(Document* document, bool createdByParser) 45 if (createdByParser && document && document->scriptableDocumentParser()) 46 m_startLineNumber = document->scriptableDocumentParser()->lineNumber(); 53 void StyleElement::insertedIntoDocument(Document* document, Element* element) 55 ASSERT(document); 57 document->addStyleSheetCandidateNode(element, m_createdByParser) 134 Document* document = e->document(); local [all...] |
ShadowRoot.h | 34 class Document; 38 static PassRefPtr<ShadowRoot> create(Document*); 44 ShadowRoot(Document*); 48 inline PassRefPtr<ShadowRoot> ShadowRoot::create(Document* document) 50 return adoptRef(new ShadowRoot(document));
|
/external/webkit/Source/WebCore/html/ |
HTMLIsIndexElement.cpp | 35 HTMLIsIndexElement::HTMLIsIndexElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) 36 : HTMLInputElement(tagName, document, form, false) 42 PassRefPtr<HTMLIsIndexElement> HTMLIsIndexElement::create(Document* document, HTMLFormElement* form) 44 return adoptRef(new HTMLIsIndexElement(isindexTag, document, form)); 47 PassRefPtr<HTMLIsIndexElement> HTMLIsIndexElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) 49 return adoptRef(new HTMLIsIndexElement(tagName, document, form));
|
HTMLUListElement.cpp | 34 HTMLUListElement::HTMLUListElement(const QualifiedName& tagName, Document* document) 35 : HTMLElement(tagName, document) 40 PassRefPtr<HTMLUListElement> HTMLUListElement::create(Document* document) 42 return adoptRef(new HTMLUListElement(ulTag, document)); 45 PassRefPtr<HTMLUListElement> HTMLUListElement::create(const QualifiedName& tagName, Document* document) 47 return adoptRef(new HTMLUListElement(tagName, document));
|
HTMLDataGridRowElement.cpp | 38 inline HTMLDataGridRowElement::HTMLDataGridRowElement(const QualifiedName& name, Document* document) 39 : HTMLElement(name, document) 43 PassRefPtr<HTMLDataGridRowElement> HTMLDataGridRowElement::create(const QualifiedName& name, Document* document) 45 return adoptRef(new HTMLDataGridRowElement(name, document));
|
HTMLFieldSetElement.cpp | 36 inline HTMLFieldSetElement::HTMLFieldSetElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) 37 : HTMLFormControlElement(tagName, document, form) 42 PassRefPtr<HTMLFieldSetElement> HTMLFieldSetElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) 44 return adoptRef(new HTMLFieldSetElement(tagName, document, form));
|
PluginDocument.cpp | 49 static PassRefPtr<PluginDocumentParser> create(PluginDocument* document) 51 return adoptRef(new PluginDocumentParser(document)); 55 PluginDocumentParser(Document* document) 56 : RawDataDocumentParser(document) 71 RefPtr<Element> rootElement = document()->createElement(htmlTag, false); 72 document()->appendChild(rootElement, ec); 77 if (document()->frame() && document()->frame()->loader()) 78 document()->frame()->loader()->dispatchDocumentElementAvailable() [all...] |
HTMLMapElement.cpp | 26 #include "Document.h" 41 HTMLMapElement::HTMLMapElement(const QualifiedName& tagName, Document* document) 42 : HTMLElement(tagName, document) 47 PassRefPtr<HTMLMapElement> HTMLMapElement::create(Document* document) 49 return adoptRef(new HTMLMapElement(mapTag, document)); 52 PassRefPtr<HTMLMapElement> HTMLMapElement::create(const QualifiedName& tagName, Document* document) 54 return adoptRef(new HTMLMapElement(tagName, document)); 108 Document* document = this->document(); local [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/ |
contentscript.js | 9 if (regex.test(document.body.innerText)) {
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/email_this_page/ |
content_script.js | 8 "title": document.title,
|
/external/webkit/Source/WebCore/bindings/js/ |
JSDocumentCustom.cpp | 55 Document* document = impl(); local 58 markActiveObjectsForContext(markStack, globalData, document); 59 markDOMObjectWrapper(markStack, globalData, document->implementation()); 60 markDOMObjectWrapper(markStack, globalData, document->styleSheets()); 65 Frame* frame = static_cast<Document*>(impl())->frame(); 80 Frame* frame = static_cast<Document*>(impl())->frame(); 91 str = activeFrame->document()->completeURL(str).string(); 93 frame->navigationScheduler()->scheduleLocationChange(lexicalFrame->document()->securityOrigin(), 97 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Document* document [all...] |
/external/webkit/Source/WebCore/editing/ |
CreateLinkCommand.cpp | 35 CreateLinkCommand::CreateLinkCommand(Document* document, const String& url) 36 : CompositeEditCommand(document) 46 RefPtr<HTMLAnchorElement> anchorElement = HTMLAnchorElement::create(document()); 53 RefPtr<Text> textNode = Text::create(document(), m_url);
|
SpellingCorrectionCommand.cpp | 44 static PassRefPtr<SpellingCorrectionRecordUndoCommand> create(Document* document, const String& corrected, const String& correction) 46 return adoptRef(new SpellingCorrectionRecordUndoCommand(document, corrected, correction)); 49 SpellingCorrectionRecordUndoCommand(Document* document, const String& corrected, const String& correction) 50 : SimpleEditCommand(document) 64 document()->frame()->editor()->unappliedSpellCorrection(startingSelection(), m_corrected, m_correction); 77 : CompositeEditCommand(rangeToBeCorrected->startContainer()->document()) 90 if (!document()->frame()->selection()->shouldChangeSelection(m_selectionToBeCorrected)) 99 applyCommandToComposite(SpellingCorrectionRecordUndoCommand::create(document(), m_corrected, m_correction)) [all...] |
/external/webkit/Source/WebCore/html/parser/ |
HTMLViewSourceParser.h | 48 static PassRefPtr<HTMLViewSourceParser> create(HTMLViewSourceDocument* document) 50 return adoptRef(new HTMLViewSourceParser(document)); 66 HTMLViewSourceDocument* document() const { return static_cast<HTMLViewSourceDocument*>(DecodedDataDocumentParser::document()); } function in class:WebCore::HTMLViewSourceParser
|
/external/webkit/Source/WebCore/html/shadow/ |
MediaControls.cpp | 40 : HTMLDivElement(HTMLNames::divTag, mediaElement->document())
|
/external/webkit/Source/WebCore/rendering/svg/ |
SVGShadowTreeElements.cpp | 25 #include "Document.h" 35 SVGShadowTreeContainerElement::SVGShadowTreeContainerElement(Document* document) 36 : SVGGElement(SVGNames::gTag, document) 40 PassRefPtr<SVGShadowTreeContainerElement> SVGShadowTreeContainerElement::create(Document* document) 42 return adoptRef(new SVGShadowTreeContainerElement(document)); 52 return adoptRef(new SVGShadowTreeContainerElement(document())); 56 inline SVGShadowTreeRootElement::SVGShadowTreeRootElement(Document* document, SVGUseElement* host [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGFESpotLightElement.cpp | 29 inline SVGFESpotLightElement::SVGFESpotLightElement(const QualifiedName& tagName, Document* document) 30 : SVGFELightElement(tagName, document) 34 PassRefPtr<SVGFESpotLightElement> SVGFESpotLightElement::create(const QualifiedName& tagName, Document* document) 36 return adoptRef(new SVGFESpotLightElement(tagName, document));
|
SVGPolygonElement.cpp | 30 inline SVGPolygonElement::SVGPolygonElement(const QualifiedName& tagName, Document* document) 31 : SVGPolyElement(tagName, document) 35 PassRefPtr<SVGPolygonElement> SVGPolygonElement::create(const QualifiedName& tagName, Document* document) 37 return adoptRef(new SVGPolygonElement(tagName, document));
|
SVGPolylineElement.cpp | 30 inline SVGPolylineElement::SVGPolylineElement(const QualifiedName& tagName, Document* document) 31 : SVGPolyElement(tagName, document) 35 PassRefPtr<SVGPolylineElement> SVGPolylineElement::create(const QualifiedName& tagName, Document* document) 37 return adoptRef(new SVGPolylineElement(tagName, document));
|
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/ |
main.cpp | 49 QWebElement document = frame->documentElement(); local 50 /* Assume that the document has the following structure: 59 QWebElement button = document.findFirst("input[type=submit]"); 68 QWebElement document = frame->documentElement(); local 71 QWebElement firstTextInput = document.findFirst("input[type=text]"); 81 QWebElement document = frame->documentElement(); local 85 QWebElement firstTextInput = document.findFirst("input[type=text]"); 95 QWebElement document = frame->documentElement(); local 96 /* Assume the document has the following structure: 109 QWebElementCollection allSpans = document.findAll("span") [all...] |
/external/webkit/Source/WebKit/win/ |
AccessibleDocument.h | 33 AccessibleDocument(WebCore::Document*); 34 WebCore::Document* document() const;
|
/external/chromium/chrome/common/extensions/docs/examples/tutorials/analytics/ |
analytics.js | 29 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; 31 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|