Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(956)

Side by Side Diff: Source/core/testing/Internals.cpp

Issue 237963014: Track scroll event handlers in nested documents (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: didMove{Into,OutOf}Page Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include "core/css/resolver/StyleResolver.h" 49 #include "core/css/resolver/StyleResolver.h"
50 #include "core/css/resolver/StyleResolverStats.h" 50 #include "core/css/resolver/StyleResolverStats.h"
51 #include "core/css/resolver/ViewportStyleResolver.h" 51 #include "core/css/resolver/ViewportStyleResolver.h"
52 #include "core/dom/ClientRect.h" 52 #include "core/dom/ClientRect.h"
53 #include "core/dom/ClientRectList.h" 53 #include "core/dom/ClientRectList.h"
54 #include "core/dom/DOMStringList.h" 54 #include "core/dom/DOMStringList.h"
55 #include "core/dom/Document.h" 55 #include "core/dom/Document.h"
56 #include "core/dom/DocumentMarker.h" 56 #include "core/dom/DocumentMarker.h"
57 #include "core/dom/DocumentMarkerController.h" 57 #include "core/dom/DocumentMarkerController.h"
58 #include "core/dom/Element.h" 58 #include "core/dom/Element.h"
59 #include "core/dom/EventHandlerRegistry.h"
60 #include "core/dom/ExceptionCode.h" 59 #include "core/dom/ExceptionCode.h"
61 #include "core/dom/FullscreenElementStack.h" 60 #include "core/dom/FullscreenElementStack.h"
62 #include "core/dom/NodeRenderStyle.h" 61 #include "core/dom/NodeRenderStyle.h"
63 #include "core/dom/PseudoElement.h" 62 #include "core/dom/PseudoElement.h"
64 #include "core/dom/Range.h" 63 #include "core/dom/Range.h"
65 #include "core/dom/StaticNodeList.h" 64 #include "core/dom/StaticNodeList.h"
66 #include "core/dom/TreeScope.h" 65 #include "core/dom/TreeScope.h"
67 #include "core/dom/ViewportDescription.h" 66 #include "core/dom/ViewportDescription.h"
68 #include "core/dom/WheelController.h" 67 #include "core/dom/WheelController.h"
69 #include "core/dom/shadow/ComposedTreeWalker.h" 68 #include "core/dom/shadow/ComposedTreeWalker.h"
(...skipping 28 matching lines...) Expand all
98 #include "core/inspector/InspectorCounters.h" 97 #include "core/inspector/InspectorCounters.h"
99 #include "core/inspector/InspectorFrontendChannel.h" 98 #include "core/inspector/InspectorFrontendChannel.h"
100 #include "core/inspector/InspectorInstrumentation.h" 99 #include "core/inspector/InspectorInstrumentation.h"
101 #include "core/inspector/InspectorOverlay.h" 100 #include "core/inspector/InspectorOverlay.h"
102 #include "core/inspector/InstrumentingAgents.h" 101 #include "core/inspector/InstrumentingAgents.h"
103 #include "core/loader/FrameLoader.h" 102 #include "core/loader/FrameLoader.h"
104 #include "core/loader/HistoryItem.h" 103 #include "core/loader/HistoryItem.h"
105 #include "core/page/Chrome.h" 104 #include "core/page/Chrome.h"
106 #include "core/page/ChromeClient.h" 105 #include "core/page/ChromeClient.h"
107 #include "core/page/EventHandler.h" 106 #include "core/page/EventHandler.h"
107 #include "core/page/EventHandlerRegistry.h"
108 #include "core/page/Page.h" 108 #include "core/page/Page.h"
109 #include "core/page/PagePopupController.h" 109 #include "core/page/PagePopupController.h"
110 #include "core/page/PrintContext.h" 110 #include "core/page/PrintContext.h"
111 #include "core/rendering/RenderLayer.h" 111 #include "core/rendering/RenderLayer.h"
112 #include "core/rendering/RenderMenuList.h" 112 #include "core/rendering/RenderMenuList.h"
113 #include "core/rendering/RenderObject.h" 113 #include "core/rendering/RenderObject.h"
114 #include "core/rendering/RenderTreeAsText.h" 114 #include "core/rendering/RenderTreeAsText.h"
115 #include "core/rendering/RenderView.h" 115 #include "core/rendering/RenderView.h"
116 #include "core/rendering/compositing/CompositedLayerMapping.h" 116 #include "core/rendering/compositing/CompositedLayerMapping.h"
117 #include "core/rendering/compositing/RenderLayerCompositor.h" 117 #include "core/rendering/compositing/RenderLayerCompositor.h"
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 if (!document) { 1253 if (!document) {
1254 exceptionState.throwDOMException(InvalidAccessError, "No context documen t is available."); 1254 exceptionState.throwDOMException(InvalidAccessError, "No context documen t is available.");
1255 return 0; 1255 return 0;
1256 } 1256 }
1257 1257
1258 return document->activeDOMObjectCount(); 1258 return document->activeDOMObjectCount();
1259 } 1259 }
1260 1260
1261 static unsigned eventHandlerCount(Document& document, EventHandlerRegistry::Even tHandlerClass handlerClass) 1261 static unsigned eventHandlerCount(Document& document, EventHandlerRegistry::Even tHandlerClass handlerClass)
1262 { 1262 {
1263 EventHandlerRegistry* registry = EventHandlerRegistry::from(document); 1263 EventHandlerRegistry* registry = EventHandlerRegistry::from(*document.page() );
1264 unsigned count = 0; 1264 unsigned count = 0;
1265 const EventTargetSet* targets = registry->eventHandlerTargets(handlerClass); 1265 const EventTargetSet* targets = registry->eventHandlerTargets(handlerClass);
1266 if (targets) { 1266 if (targets) {
1267 for (EventTargetSet::const_iterator iter = targets->begin(); iter != tar gets->end(); ++iter) 1267 for (EventTargetSet::const_iterator iter = targets->begin(); iter != tar gets->end(); ++iter)
1268 count += iter->value; 1268 count += iter->value;
1269 } 1269 }
1270 return count; 1270 return count;
1271 } 1271 }
1272 1272
1273 unsigned Internals::wheelEventHandlerCount(Document* document, ExceptionState& e xceptionState) 1273 unsigned Internals::wheelEventHandlerCount(Document* document, ExceptionState& e xceptionState)
(...skipping 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after
2375 String Internals::textSurroundingNode(Node* node, int x, int y, unsigned long ma xLength) 2375 String Internals::textSurroundingNode(Node* node, int x, int y, unsigned long ma xLength)
2376 { 2376 {
2377 if (!node) 2377 if (!node)
2378 return String(); 2378 return String();
2379 blink::WebPoint point(x, y); 2379 blink::WebPoint point(x, y);
2380 SurroundingText surroundingText(VisiblePosition(node->renderer()->positionFo rPoint(static_cast<IntPoint>(point))), maxLength); 2380 SurroundingText surroundingText(VisiblePosition(node->renderer()->positionFo rPoint(static_cast<IntPoint>(point))), maxLength);
2381 return surroundingText.content(); 2381 return surroundingText.content();
2382 } 2382 }
2383 2383
2384 } 2384 }
OLDNEW
« Source/core/page/EventHandlerRegistry.cpp ('K') | « Source/core/page/EventHandlerRegistry.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698