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

Unified Diff: core/testing/Internals.idl

Issue 15643014: Blink IDL roll. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/testing/InternalSettings.idl ('k') | core/workers/WorkerContext.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/testing/Internals.idl
===================================================================
--- core/testing/Internals.idl (revision 23517)
+++ core/testing/Internals.idl (working copy)
@@ -59,6 +59,7 @@
[RaisesException] boolean hasSelectorForClassInShadow(Element host, DOMString className);
[RaisesException] boolean hasSelectorForAttributeInShadow(Element host, DOMString attributeName);
[RaisesException] boolean hasSelectorForPseudoClassInShadow(Element host, DOMString pseudoClass);
+ [RaisesException] unsigned short compareTreeScopePosition(Node treeScope1, Node treeScope2);
// CSS Animation and Transition testing.
unsigned long numberOfActiveAnimations();
@@ -169,6 +170,12 @@
[RaisesException] NodeList paintOrderListBeforePromote(Element element);
[RaisesException] NodeList paintOrderListAfterPromote(Element element);
+ // The values of these constants must be kept in sync with those in RenderLayer.
+ const unsigned short DoNotForceCompositedScrolling = 0;
+ const unsigned short CompositedScrollingAlwaysOn = 1;
+ const unsigned short CompositedScrollingAlwaysOff = 2;
+ [RaisesException] void setNeedsCompositedScrolling(Element element, unsigned short value);
+
[RaisesException] DOMString scrollingStateTreeAsText(Document document);
[RaisesException] DOMString mainThreadScrollingReasons(Document document);
[RaisesException] ClientRectList nonFastScrollableRects(Document document);
@@ -192,7 +199,6 @@
DOMWindow openDummyInspectorFrontend(DOMString url);
void closeDummyInspectorFrontend();
[RaisesException] void setInspectorResourcesDataSizeLimits(long maximumResourcesContentSize, long maximumSingleResourceContentSize);
- [RaisesException] void setJavaScriptProfilingEnabled(boolean creates);
DOMString counterValue(Element element);
long pageNumber(Element element, optional float pageWidth, optional float pageHeight);
« no previous file with comments | « core/testing/InternalSettings.idl ('k') | core/workers/WorkerContext.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698