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

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

Issue 1287623002: Delete blink code for scroll-blocks-on (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 readonly attribute InternalSettings settings; 170 readonly attribute InternalSettings settings;
171 readonly attribute InternalRuntimeFlags runtimeFlags; 171 readonly attribute InternalRuntimeFlags runtimeFlags;
172 readonly attribute unsigned long workerThreadCount; 172 readonly attribute unsigned long workerThreadCount;
173 173
174 // Flags for layerTreeAsText. 174 // Flags for layerTreeAsText.
175 // The values of these constants must be kept in sync with the values of Lay erTreeAsTextBehaviorFlags in GraphicsLayerClient.h. 175 // The values of these constants must be kept in sync with the values of Lay erTreeAsTextBehaviorFlags in GraphicsLayerClient.h.
176 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2; 176 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2;
177 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; 177 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4;
178 const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8; 178 const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8;
179 const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16; 179 const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16;
180 const unsigned short LAYER_TREE_INCLUDES_SCROLL_BLOCKS_ON = 32; 180 const unsigned short LAYER_TREE_INCLUDES_PAINT_INVALIDATION_OBJECTS = 32;
181 const unsigned short LAYER_TREE_INCLUDES_PAINT_INVALIDATION_OBJECTS = 64; 181 const unsigned short LAYER_TREE_INCLUDES_COMPOSITING_REASONS = 64;
182 const unsigned short LAYER_TREE_INCLUDES_COMPOSITING_REASONS = 128;
183 [RaisesException, TypeChecking=Interface] DOMString layerTreeAsText(Document document, optional unsigned short flags); 182 [RaisesException, TypeChecking=Interface] DOMString layerTreeAsText(Document document, optional unsigned short flags);
184 [RaisesException, TypeChecking=Interface] DOMString elementLayerTreeAsText(E lement element, optional unsigned short flags); 183 [RaisesException, TypeChecking=Interface] DOMString elementLayerTreeAsText(E lement element, optional unsigned short flags);
185 184
186 [RaisesException, TypeChecking=Interface] boolean scrollsWithRespectTo(Eleme nt element1, Element element2); 185 [RaisesException, TypeChecking=Interface] boolean scrollsWithRespectTo(Eleme nt element1, Element element2);
187 186
188 [TypeChecking=Interface] DOMString scrollingStateTreeAsText(Document documen t); 187 [TypeChecking=Interface] DOMString scrollingStateTreeAsText(Document documen t);
189 [RaisesException, TypeChecking=Interface] DOMString mainThreadScrollingReaso ns(Document document); 188 [RaisesException, TypeChecking=Interface] DOMString mainThreadScrollingReaso ns(Document document);
190 [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe cts(Document document); 189 [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe cts(Document document);
191 190
192 [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum ent); 191 [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum ent);
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 328
330 ClientRectList outlineRects(Element element); 329 ClientRectList outlineRects(Element element);
331 void setCapsLockState(boolean enabled); 330 void setCapsLockState(boolean enabled);
332 331
333 // Returns whether the scrollbar was able to be shown or hidden; not all pla tforms 332 // Returns whether the scrollbar was able to be shown or hidden; not all pla tforms
334 // support overlay scrollbars. 333 // support overlay scrollbars.
335 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); 334 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible);
336 335
337 void forceRestrictIFramePermissions(); 336 void forceRestrictIFramePermissions();
338 }; 337 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698