Searched refs:document (Results 251 - 275 of 1377) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXMLSerializer.cpp35 if (!node->document()) {
H A DXSLStyleSheetQt.cpp72 Document* document = ownerDocument(); local
73 if (!document)
75 return document->cachedResourceLoader();
80 // FIXME: Fix QXmlQuery so that it allows compiling the stylesheet before setting the document
101 return node ? node->document() : 0;
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DAccessibleDocument.h34 WebCore::Document* document() const;
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-WebKit/Examples/PyDocURLProtocol/
H A Dpydochelper.py9 pydoc.html.document(obj, name)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-WebKit/Examples/PyDocURLProtocol/
H A Dpydochelper.py9 pydoc.html.document(obj, name)
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLScriptElement.cpp38 inline HTMLScriptElement::HTMLScriptElement(const QualifiedName& tagName, Document* document, bool wasInsertedByParser, bool alreadyStarted) argument
39 : HTMLElement(tagName, document)
45 PassRefPtr<HTMLScriptElement> HTMLScriptElement::create(const QualifiedName& tagName, Document* document, bool wasInsertedByParser, bool alreadyStarted) argument
47 return adoptRef(new HTMLScriptElement(tagName, document, wasInsertedByParser, alreadyStarted));
94 appendChild(document()->createTextNode(value.impl()), IGNORE_EXCEPTION);
110 return document()->completeURL(sourceAttributeValue());
175 return adoptRef(new HTMLScriptElement(tagQName(), document(), false, alreadyStarted()));
H A DHTMLTableRowElement.cpp41 HTMLTableRowElement::HTMLTableRowElement(const QualifiedName& tagName, Document* document) argument
42 : HTMLTablePartElement(tagName, document)
47 PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(Document* document) argument
49 return adoptRef(new HTMLTableRowElement(trTag, document));
52 PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(const QualifiedName& tagName, Document* document) argument
54 return adoptRef(new HTMLTableRowElement(tagName, document));
130 RefPtr<HTMLTableCellElement> cell = HTMLTableCellElement::create(tdTag, document());
H A DHTMLImageElement.cpp45 HTMLImageElement::HTMLImageElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
46 : HTMLElement(tagName, document)
56 PassRefPtr<HTMLImageElement> HTMLImageElement::create(Document* document) argument
58 return adoptRef(new HTMLImageElement(imgTag, document));
61 PassRefPtr<HTMLImageElement> HTMLImageElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
63 return adoptRef(new HTMLImageElement(tagName, document, form));
72 PassRefPtr<HTMLImageElement> HTMLImageElement::createForJSConstructor(Document* document, const int* optionalWidth, const int* optionalHeight) argument
74 RefPtr<HTMLImageElement> image = adoptRef(new HTMLImageElement(imgTag, document));
130 if (hasName() != willHaveName && inDocument() && document()->isHTMLDocument()) {
131 HTMLDocument* document local
[all...]
H A DHTMLAnchorElement.cpp54 HTMLAnchorElement::HTMLAnchorElement(const QualifiedName& tagName, Document* document) argument
55 : HTMLElement(tagName, document)
63 PassRefPtr<HTMLAnchorElement> HTMLAnchorElement::create(Document* document) argument
65 return adoptRef(new HTMLAnchorElement(aTag, document));
68 PassRefPtr<HTMLAnchorElement> HTMLAnchorElement::create(const QualifiedName& tagName, Document* document) argument
70 return adoptRef(new HTMLAnchorElement(tagName, document));
139 if (!document()->frame())
142 if (!document()->frame()->eventHandler()->tabsToLinks(event))
197 if (event->type() == eventNames().mousedownEvent && event->isMouseEvent() && static_cast<MouseEvent*>(event)->button() != RightButton && document()->frame() && document()
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DSidebarTreeElement.js88 this.disclosureButton = document.createElement("button");
93 this.iconElement = document.createElement("img");
97 this.statusElement = document.createElement("div");
100 this.titlesElement = document.createElement("div");
103 this.titleElement = document.createElement("span");
107 this.subtitleElement = document.createElement("span");
164 this.bubbleElement = document.createElement("div");
H A DShowMoreDataGridNode.js47 this.showNext = document.createElement("button");
52 this.showAll = document.createElement("button");
56 this.showLast = document.createElement("button");
96 var cell = document.createElement("td");
109 cell = document.createElement("td");
H A DDOMPresentationUtils.js38 var nameElement = document.createElement("span");
44 var idElement = document.createElement("span");
49 idElement.appendChild(document.createTextNode(part));
61 var classesElement = document.createElement("span");
70 classesElement.appendChild(document.createTextNode(part));
95 var link = document.createElement("span");
110 return document.createTextNode(WebInspector.UIString("<node>"));
128 var imageElement = document.createElement("img");
141 var container = document.createElement("table");
/macosx-10.9.5/WebCore-7537.78.1/Modules/navigatorcontentutils/
H A DNavigatorContentUtils.cpp132 Document* document = navigator->frame()->document();
133 if (!document)
136 String baseURL = document->baseURL().baseAsString();
174 Document* document = navigator->frame()->document();
175 String baseURL = document->baseURL().baseAsString();
191 Document* document = navigator->frame()->document();
192 String baseURL = document
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSFontFace.cpp153 Document* document = (*m_segmentedFontFaces.begin())->fontSelector()->document(); local
154 if (!document)
159 document->fontloader()->beginFontLoading(m_rule.get());
162 document->fontloader()->fontLoaded(m_rule.get());
165 document->fontloader()->loadError(m_rule.get(), m_activeSource);
174 Document* document = (*m_segmentedFontFaces.begin())->fontSelector()->document(); local
175 if (document)
176 document
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DTextTrackLoader.cpp119 Document* document = toDocument(m_scriptExecutionContext); local
120 document->addConsoleMessage(SecurityMessageSource, ErrorMessageLevel, consoleMessage);
128 Document* document = toDocument(m_scriptExecutionContext); local
130 && !document->securityOrigin()->canRequest(resource->response().url())
131 && !resource->passesAccessControlCheck(document->securityOrigin())) {
156 Document* document = toDocument(m_scriptExecutionContext); local
157 CachedResourceRequest cueRequest(ResourceRequest(document->completeURL(url)));
162 updateRequestForAccessControl(cueRequest.mutableResourceRequest(), document->securityOrigin(), allowCredentials);
165 if (!document->securityOrigin()->canRequest(url)) {
171 CachedResourceLoader* cachedResourceLoader = document
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGTextPathElement.cpp49 inline SVGTextPathElement::SVGTextPathElement(const QualifiedName& tagName, Document* document) argument
50 : SVGTextContentElement(tagName, document)
59 PassRefPtr<SVGTextPathElement> SVGTextPathElement::create(const QualifiedName& tagName, Document* document) argument
61 return adoptRef(new SVGTextPathElement(tagName, document));
71 ASSERT(document());
72 document()->accessSVGExtensions()->removeAllTargetReferencesForElement(this);
164 Element* target = SVGURIReference::targetElementFromIRIString(href(), document(), &id);
167 if (document()->accessSVGExtensions()->isElementPendingResource(this, id))
171 document()->accessSVGExtensions()->addPendingResource(id, this);
177 document()
[all...]
H A DSVGGlyphRefElement.cpp41 inline SVGGlyphRefElement::SVGGlyphRefElement(const QualifiedName& tagName, Document* document) argument
42 : SVGStyledElement(tagName, document)
52 PassRefPtr<SVGGlyphRefElement> SVGGlyphRefElement::create(const QualifiedName& tagName, Document* document) argument
54 return adoptRef(new SVGGlyphRefElement(tagName, document));
61 Element* element = targetElementFromIRIString(getAttribute(XLinkNames::hrefAttr), document(), &glyphName);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DSuggestionBoxHandler.cpp157 Document* document = m_dropdownBox->document(); local
166 RefPtr<HTMLElement> suggestionItem = SuggestionBoxElement::create(this, m_suggestions[i], document);
173 RefPtr<HTMLSpanElement> prefixElement = HTMLSpanElement::create(HTMLNames::spanTag, document);
174 prefixElement->appendChild(Text::create(document, m_suggestions[i].substring(0, prefixIndex)));
179 suggestionItem->appendChild(Text::create(document, m_suggestions[i].substring(prefixIndex)), ASSERT_NO_EXCEPTION);
217 Document* document = m_inputElement->document();
218 m_dropdownBox = HTMLDivElement::create(document);
229 document
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/shadow/
H A DSliderThumbElement.h78 inline SliderThumbElement::SliderThumbElement(Document* document) argument
79 : HTMLDivElement(HTMLNames::divTag, document)
84 inline PassRefPtr<SliderThumbElement> SliderThumbElement::create(Document* document) argument
86 return adoptRef(new SliderThumbElement(document));
91 return create(document());
H A DMediaControlsApple.cpp52 MediaControlsApple::MediaControlsApple(Document* document) argument
53 : MediaControls(document)
71 PassRefPtr<MediaControls> MediaControls::create(Document* document) argument
73 return MediaControlsApple::createControls(document);
76 PassRefPtr<MediaControlsApple> MediaControlsApple::createControls(Document* document) argument
78 if (!document->page())
81 RefPtr<MediaControlsApple> controls = adoptRef(new MediaControlsApple(document));
83 RefPtr<MediaControlPanelElement> panel = MediaControlPanelElement::create(document);
87 RefPtr<MediaControlRewindButtonElement> rewindButton = MediaControlRewindButtonElement::create(document);
93 RefPtr<MediaControlPlayButtonElement> playButton = MediaControlPlayButtonElement::create(document);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DNodeRenderingContext.cpp104 const Vector<RefPtr<Element> >& topLayerElements = element->document()->topLayerElements();
173 return m_node->document()->renderView();
185 if (!m_node->document()->shouldCreateRenderers())
232 ASSERT(m_node->document()->renderView());
233 FlowThreadController* flowThreadController = m_node->document()->renderView()->flowThreadController();
272 Document* document = element->document(); local
273 RenderObject* newRenderer = element->createRenderer(document->renderArena(), m_style.get());
289 if (document->webkitIsFullScreen() && document
310 Document* document = textNode->document(); local
[all...]
H A DTreeScope.cpp67 TreeScope::TreeScope(ContainerNode* rootNode, Document* document) argument
69 , m_documentScope(document)
70 , m_parentTreeScope(document)
75 ASSERT(document);
76 ASSERT(rootNode != document);
81 TreeScope::TreeScope(Document* document) argument
82 : m_rootNode(document)
83 , m_documentScope(document)
88 ASSERT(document);
129 // A document nod
245 nodeFromPoint(Document* document, int x, int y, LayoutPoint* localPoint) argument
394 Document* document = rootNode()->document(); local
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/PDFKit/PDFKitViewer/
H A DMyPDFDocument.py36 self._pdfView.document())
39 self._pdfView.document())
42 self._pdfView.document())
45 self._pdfView.document().setDelegate_(self)
48 self._outline = self._pdfView.document().outlineRoot()
71 self._pdfView.document().pageCount() > 1):
106 if selfl_pdfView.document().outlineRoot() is None:
110 newPageIndex = self._pdfView.document().indexForPage_(
119 if self._pdfView.document().indexForPage_(
127 elif self._pdfView.document()
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/PDFKit/PDFKitViewer/
H A DMyPDFDocument.py36 self._pdfView.document())
39 self._pdfView.document())
42 self._pdfView.document())
45 self._pdfView.document().setDelegate_(self)
48 self._outline = self._pdfView.document().outlineRoot()
71 self._pdfView.document().pageCount() > 1):
106 if selfl_pdfView.document().outlineRoot() is None:
110 newPageIndex = self._pdfView.document().indexForPage_(
119 if self._pdfView.document().indexForPage_(
127 elif self._pdfView.document()
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DDOMWindow.cpp300 window->dispatchEvent(PageTransitionEvent::create(eventNames().pagehideEvent, false), window->document());
301 window->dispatchEvent(Event::create(eventNames().unloadEvent, false, false), window->document());
389 DOMWindow::DOMWindow(Document* document) argument
390 : ContextDestructionObserver(document)
391 , FrameDestructionObserver(document->frame())
396 ASSERT(DOMWindow::document());
399 void DOMWindow::didSecureTransitionTo(Document* document) argument
401 observeContext(document);
460 return document() ? document()
1353 Document* DOMWindow::document() const function in class:WebCore::DOMWindow
[all...]

Completed in 190 milliseconds

<<11121314151617181920>>