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

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

Issue 34623009: Revamp style resolver stats (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix stats for mac, crazy StyleResolver constructor side effects Created 7 years, 1 month 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
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 19 matching lines...) Expand all
30 DOMString address(Node node); 30 DOMString address(Node node);
31 31
32 GCObservation observeGC(any observed); 32 GCObservation observeGC(any observed);
33 33
34 [RaisesException] DOMString elementRenderTreeAsText(Element element); 34 [RaisesException] DOMString elementRenderTreeAsText(Element element);
35 boolean isPreloaded(DOMString url); 35 boolean isPreloaded(DOMString url);
36 boolean isLoadingFromMemoryCache(DOMString url); 36 boolean isLoadingFromMemoryCache(DOMString url);
37 37
38 void crash(); 38 void crash();
39 39
40 void setStyleResolverStatsEnabled(boolean enabled);
41 [RaisesException] DOMString styleResolverStatsReport();
42 [RaisesException] DOMString styleResolverStatsTotalsReport();
43
40 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope); 44 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope);
41 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node); 45 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node);
42 46
43 [RaisesException] ShadowRoot ensureShadowRoot(Element host); 47 [RaisesException] ShadowRoot ensureShadowRoot(Element host);
44 [RaisesException] ShadowRoot shadowRoot(Element host); 48 [RaisesException] ShadowRoot shadowRoot(Element host);
45 [RaisesException] ShadowRoot youngestShadowRoot(Element host); 49 [RaisesException] ShadowRoot youngestShadowRoot(Element host);
46 [RaisesException] ShadowRoot oldestShadowRoot(Element host); 50 [RaisesException] ShadowRoot oldestShadowRoot(Element host);
47 [RaisesException] ShadowRoot youngerShadowRoot(Node root); 51 [RaisesException] ShadowRoot youngerShadowRoot(Node root);
48 [RaisesException] ShadowRoot olderShadowRoot(Node root); 52 [RaisesException] ShadowRoot olderShadowRoot(Node root);
49 53
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 [RaisesException] DOMString getImageSourceURL(Element element); 258 [RaisesException] DOMString getImageSourceURL(Element element);
255 259
256 boolean isSelectPopupVisible(Node node); 260 boolean isSelectPopupVisible(Node node);
257 261
258 [RaisesException] ClientRect selectionBounds(); 262 [RaisesException] ClientRect selectionBounds();
259 263
260 boolean loseSharedGraphicsContext3D(); 264 boolean loseSharedGraphicsContext3D();
261 265
262 [RaisesException] void forceCompositingUpdate(Document document); 266 [RaisesException] void forceCompositingUpdate(Document document);
263 }; 267 };
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698