Searched defs:document (Results 26 - 50 of 714) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGSwitchElement.cpp31 inline SVGSwitchElement::SVGSwitchElement(Document& document) argument
32 : SVGGraphicsElement(SVGNames::switchTag, document)
34 UseCounter::count(document, UseCounter::SVGSwitchElement);
H A DSVGUnknownElement.cpp36 inline SVGUnknownElement::SVGUnknownElement(const QualifiedName& tagName, Document& document) argument
37 : SVGElement(tagName, document)
H A DSVGDiscardElement.cpp38 inline SVGDiscardElement::SVGDiscardElement(Document& document) argument
39 : SVGSMILElement(SVGNames::discardTag, document)
H A DSVGFEDistantLightElement.cpp28 inline SVGFEDistantLightElement::SVGFEDistantLightElement(Document& document) argument
29 : SVGFELightElement(SVGNames::feDistantLightTag, document)
H A DSVGFEPointLightElement.cpp29 inline SVGFEPointLightElement::SVGFEPointLightElement(Document& document) argument
30 : SVGFELightElement(SVGNames::fePointLightTag, document)
H A DSVGFESpotLightElement.cpp29 inline SVGFESpotLightElement::SVGFESpotLightElement(Document& document) argument
30 : SVGFELightElement(SVGNames::feSpotLightTag, document)
H A DSVGFontFaceFormatElement.cpp32 inline SVGFontFaceFormatElement::SVGFontFaceFormatElement(Document& document) argument
33 : SVGElement(font_face_formatTag, document)
H A DSVGFontFaceNameElement.cpp29 inline SVGFontFaceNameElement::SVGFontFaceNameElement(Document& document) argument
30 : SVGElement(SVGNames::font_face_nameTag, document)
/external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/testing/
H A DInternalsNavigatorContentUtils.cpp15 void InternalsNavigatorContentUtils::setNavigatorContentUtilsClientMock(Internals&, Document* document) argument
17 ASSERT(document && document->page());
18 NavigatorContentUtils* navigatorContentUtils = NavigatorContentUtils::from(*document->page());
/external/chromium_org/third_party/WebKit/Source/modules/speech/testing/
H A DInternalsSpeechSynthesis.cpp42 void InternalsSpeechSynthesis::enableMockSpeechSynthesizer(Internals&, Document* document) argument
44 ASSERT(document && document->domWindow());
46 SpeechSynthesis* synthesis = DOMWindowSpeechSynthesis::speechSynthesis(*document->domWindow());
/external/chromium_org/third_party/WebKit/Source/modules/vibration/testing/
H A DInternalsVibration.cpp40 bool InternalsVibration::isVibrating(Internals&, Document* document) argument
42 ASSERT(document && document->page());
43 return NavigatorVibration::from(*document->page()).isVibrating();
46 Vector<unsigned> InternalsVibration::pendingVibrationPattern(Internals&, Document* document) argument
48 ASSERT(document && document->page());
49 return NavigatorVibration::from(*document->page()).pattern();
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSocket.cpp38 WebSocket* WebSocket::create(const WebDocument& document, WebSocketClient* client) argument
43 OwnPtr<WebSocketImpl> websocket = adoptPtr(new WebSocketImpl(document, client));
/external/chromium_org/chrome/browser/resources/
H A Dabout_credits.js5 function $(o) {return document.getElementById(o);}
25 document.body.onload = function () {
26 var links = document.getElementsByTagName("a");
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DDocumentAnimation.h14 static AnimationTimeline* timeline(Document& document) { return &document.timeline(); } argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DDragUpdateTest.cpp21 // Check that when dragging the div in the document below, you only get a
25 HTMLDocument& document = toHTMLDocument(dummyPageHolder->document()); local
26 document.documentElement()->setInnerHTML("<style>div {width:100px;height:100px} div:-webkit-drag { background-color: green }</style>"
34 document.view()->updateLayoutAndStyleIfNeededRecursive();
35 unsigned startCount = document.styleEngine()->resolverAccessCount();
37 document.documentElement()->renderer()->updateDragState(true);
38 document.view()->updateLayoutAndStyleIfNeededRecursive();
40 unsigned accessCount = document.styleEngine()->resolverAccessCount() - startCount;
47 // Check that when dragging the div in the document belo
51 HTMLDocument& document = toHTMLDocument(dummyPageHolder->document()); local
[all...]
H A DMediaQueryListTest.cpp27 RefPtrWillBeRawPtr<Document> document = Document::create(); local
28 RefPtrWillBeRawPtr<MediaQueryList> list = MediaQueryList::create(document.get(), MediaQueryMatcher::create(*document), MediaQuerySet::create());
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceFetcherTest.cpp55 RefPtrWillBeRawPtr<HTMLDocument> document = HTMLDocument::create(); local
57 fetcher->setDocument(document.get());
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLBDIElement.h33 inline explicit HTMLBDIElement(Document& document) argument
34 : HTMLElement(HTMLNames::bdiTag, document)
H A DHTMLNoEmbedElement.cpp43 inline HTMLNoEmbedElement::HTMLNoEmbedElement(Document& document) argument
44 : HTMLElement(noembedTag, document)
52 if (document().frame()->loader().allowPlugins(NotAboutToInstantiatePlugin))
H A DHTMLNoScriptElement.cpp43 inline HTMLNoScriptElement::HTMLNoScriptElement(Document& document) argument
44 : HTMLElement(noscriptTag, document)
52 if (document().frame()->script().canExecuteScripts(NotAboutToExecuteScript))
H A DHTMLRTElement.cpp15 inline HTMLRTElement::HTMLRTElement(Document& document) argument
16 : HTMLElement(rtTag, document)
H A DHTMLRubyElement.cpp15 inline HTMLRubyElement::HTMLRubyElement(Document& document) argument
16 : HTMLElement(rubyTag, document)
H A DHTMLWBRElement.cpp41 inline HTMLWBRElement::HTMLWBRElement(Document& document) argument
42 : HTMLElement(wbrTag, document)
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
H A Dcontent.js45 listenAndCoalesce(document, "scroll");
48 if ((window == window.top) && document.body && !document.body.onresize) {
49 document.body.onresize = function(event) {
54 listenAndCoalesce(document, "keypress", function(event) {
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DElementResolveContext.cpp32 ElementResolveContext::ElementResolveContext(const Document& document) argument
35 , m_rootElementStyle(document.documentElement() ? document.documentElement()->renderStyle() : document.renderStyle())
43 , m_elementLinkState(element.document().visitedLinkState().determineLinkState(element))
50 const Document& document = element.document(); local
51 Node* documentElement = document.documentElement();
52 RenderStyle* documentStyle = document.renderStyle();

Completed in 569 milliseconds

1234567891011>>