Searched refs:document (Results 1 - 25 of 2178) sorted by relevance

1234567891011>>

/external/chromium_org/tools/perf/page_sets/tough_scrolling_cases/
H A Dbusy.js10 if ("visibilityState" in document
11 && document.visibilityState == "hidden")
13 if ("webkitVisibilityState" in document
14 && document.webkitVisibilityState == "hidden")
16 if ("mozVisibilityState" in document
17 && document.mozVisibilityState == "hidden")
19 if ("msVisibilityState" in document
20 && document.msVisibilityState == "hidden")
39 if ("visibilityState" in document) {
40 document
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
H A Dpopup.js12 document.addEventListener('DOMContentLoaded', function () {
/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();
H A DInternalsVibration.idl32 boolean isVibrating(Document document);
33 sequence<unsigned long> pendingVibrationPattern(Document document);
/external/chromium_org/ui/webui/resources/js/
H A Di18n_process.js6 i18nTemplate.process(document, templateData);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
H A Dutil.js8 * Alias for document.getElementById.
13 return document.getElementById(id);
/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/content/test/data/dom_storage/
H A Dcommon.js6 var span = document.createElement("span");
7 span.appendChild(document.createTextNode(message));
8 span.appendChild(document.createElement("br"));
9 document.getElementById('status').appendChild(span);
13 if (document.location.hash == '#fail')
19 document.location.hash = '#pass';
24 document.location.hash = '#fail';
28 return "" + document.getElementById('status').innerHTML;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DDocumentFontFaceSet.cpp33 PassRefPtrWillBeRawPtr<FontFaceSet> DocumentFontFaceSet::fonts(Document& document) argument
35 return FontFaceSet::from(document);
/external/chromium_org/third_party/WebKit/Source/modules/speech/testing/
H A DInternalsSpeechSynthesis.idl32 void enableMockSpeechSynthesizer(Document document);
/external/chromium_org/ui/keyboard/resources/layouts/
H A Dsymbol-altkeys.js43 document.addEventListener('polymer-ready', function() {
44 var altkeyMetadata = document.createElement('kb-altkey-data');
/external/chromium_org/ppapi/examples/crxfs/
H A Dcrxfs.js6 var plugin = document.getElementById("plugin");
7 var filename = document.getElementById("filename").value;
12 document.getElementById("content").value = message_event.data;
15 document.addEventListener('DOMContentLoaded', function () {
18 document.getElementById("plugin")
21 document.getElementById("start")
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserOptions.cpp37 HTMLParserOptions::HTMLParserOptions(Document* document) argument
39 LocalFrame* frame = document ? document->frame() : 0;
47 // - inspector/DOMPatchSupport replacing the whole document.
51 useThreading = document && !document->importsController() && !document->url().isAboutBlankURL();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentFullscreen.cpp33 bool DocumentFullscreen::fullscreenEnabled(Document& document) argument
35 return Fullscreen::fullscreenEnabled(document);
38 Element* DocumentFullscreen::fullscreenElement(Document& document) argument
40 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
45 void DocumentFullscreen::exitFullscreen(Document& document) argument
47 Fullscreen::from(document).exitFullscreen();
50 bool DocumentFullscreen::webkitFullScreenKeyboardInputAllowed(Document& document) argument
52 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
57 Element* DocumentFullscreen::webkitCurrentFullScreenElement(Document& document) argument
59 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
[all...]
H A DIncrementLoadEventDelayCount.cpp12 PassOwnPtr<IncrementLoadEventDelayCount> IncrementLoadEventDelayCount::create(Document& document) argument
14 return adoptPtr(new IncrementLoadEventDelayCount(document));
17 IncrementLoadEventDelayCount::IncrementLoadEventDelayCount(Document& document) argument
18 : m_document(&document)
20 document.incrementLoadEventDelayCount();
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
H A DInternalsGeolocation.idl32 void setGeolocationClientMock(Document document);
33 void setGeolocationPosition(Document document, double latitude, double longitude, double accuracy);
34 void setGeolocationPositionUnavailableError(Document document, DOMString message);
35 void setGeolocationPermission(Document document, boolean allowed);
36 long numberOfPendingGeolocationPermissionRequests(Document document);
H A DInternalsGeolocation.cpp45 void InternalsGeolocation::setGeolocationClientMock(Internals&, Document* document) argument
47 ASSERT(document && document->frame());
50 for (Frame* childFrame = document->page()->mainFrame(); childFrame; childFrame = childFrame->tree().traverseNext()) {
56 void InternalsGeolocation::setGeolocationPosition(Internals&, Document* document, double latitude, double longitude, double accuracy) argument
58 ASSERT(document && document->frame());
59 GeolocationClientMock* client = geolocationClient(document);
65 void InternalsGeolocation::setGeolocationPositionUnavailableError(Internals&, Document* document, const String& message) argument
67 ASSERT(document
74 setGeolocationPermission(Internals&, Document* document, bool allowed) argument
83 numberOfPendingGeolocationPermissionRequests(Internals&, Document* document) argument
92 geolocationClient(Document* document) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DUnlinkCommand.cpp33 UnlinkCommand::UnlinkCommand(Document& document) argument
34 : CompositeEditCommand(document)
44 removeStyledElement(HTMLAnchorElement::create(document()));
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dinject_app_titlebar.js6 var root = document.documentElement.createShadowRoot();
7 root.appendChild(document.createElement('style')).innerText =
15 ":-webkit-full-screen-document * { display: none; }\n" +
16 "div:-webkit-full-screen, div:-webkit-full-screen-document { " +
43 var titlebar = root.appendChild(document.createElement('x-titlebar'));
44 var closeButton = titlebar.appendChild(document.createElement('button'));
47 var container = root.appendChild(document.createElement('div'));
48 container.appendChild(document.createElement('content'));
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
H A Dkbexplorer_loader.js11 document.addEventListener('DOMContentLoaded', function() {
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
H A Dmain.js12 wallpaperManager = new WallpaperManager(document.body);
16 document.addEventListener('DOMContentLoaded', init);
/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/html/
H A DHTMLDListElement.cpp32 inline HTMLDListElement::HTMLDListElement(Document& document) argument
33 : HTMLElement(dlTag, document)
H A DHTMLDirectoryElement.cpp32 inline HTMLDirectoryElement::HTMLDirectoryElement(Document& document) argument
33 : HTMLElement(dirTag, document)
H A DHTMLHeadElement.cpp33 inline HTMLHeadElement::HTMLHeadElement(Document& document) argument
34 : HTMLElement(headTag, document)

Completed in 776 milliseconds

1234567891011>>