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

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

Issue 935283002: Rename {Author,UserAgent}ShadowRoot to {Open,Closed}ShadowRoot. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix inspector tests Created 5 years, 10 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
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/devtools/front_end/elements/ElementsPanel.js » ('j') | 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 23 matching lines...) Expand all
34 GCObservation observeGC(any observed); 34 GCObservation observeGC(any observed);
35 35
36 [RaisesException, TypeChecking=Interface] DOMString elementLayoutTreeAsText( Element element); 36 [RaisesException, TypeChecking=Interface] DOMString elementLayoutTreeAsText( Element element);
37 boolean isPreloaded(DOMString url); 37 boolean isPreloaded(DOMString url);
38 boolean isLoadingFromMemoryCache(DOMString url); 38 boolean isLoadingFromMemoryCache(DOMString url);
39 39
40 [TypeChecking=Interface] boolean isSharingStyle(Element element1, Element el ement2); 40 [TypeChecking=Interface] boolean isSharingStyle(Element element1, Element el ement2);
41 41
42 [TypeChecking=Interface] CSSStyleDeclaration computedStyleIncludingVisitedIn fo(Node node); 42 [TypeChecking=Interface] CSSStyleDeclaration computedStyleIncludingVisitedIn fo(Node node);
43 43
44 [TypeChecking=Interface] ShadowRoot createUserAgentShadowRoot(Element host); 44 [TypeChecking=Interface] ShadowRoot createClosedShadowRoot(Element host);
45 45
46 [TypeChecking=Interface] ShadowRoot shadowRoot(Element host); 46 [TypeChecking=Interface] ShadowRoot shadowRoot(Element host);
47 [TypeChecking=Interface] ShadowRoot youngestShadowRoot(Element host); 47 [TypeChecking=Interface] ShadowRoot youngestShadowRoot(Element host);
48 [TypeChecking=Interface] ShadowRoot oldestShadowRoot(Element host); 48 [TypeChecking=Interface] ShadowRoot oldestShadowRoot(Element host);
49 [RaisesException, TypeChecking=Interface] ShadowRoot youngerShadowRoot(Node root); 49 [RaisesException, TypeChecking=Interface] ShadowRoot youngerShadowRoot(Node root);
50 50
51 [RaisesException, TypeChecking=Interface] DOMString shadowRootType(Node root ); 51 [RaisesException, TypeChecking=Interface] DOMString shadowRootType(Node root );
52 [RaisesException] boolean hasShadowInsertionPoint(Node root); 52 [RaisesException] boolean hasShadowInsertionPoint(Node root);
53 [RaisesException] boolean hasContentElement(Node root); 53 [RaisesException] boolean hasContentElement(Node root);
54 [RaisesException, TypeChecking=Interface] unsigned long countElementShadow(N ode Root); 54 [RaisesException, TypeChecking=Interface] unsigned long countElementShadow(N ode Root);
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, DocumentFragment fragment); 294 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, DocumentFragment fragment);
295 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, PluginPlaceholderOptions options); 295 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, PluginPlaceholderOptions options);
296 296
297 DictionaryTest dictionaryTest(); 297 DictionaryTest dictionaryTest();
298 UnionTypesTest unionTypesTest(); 298 UnionTypesTest unionTypesTest();
299 299
300 void forceBlinkGCWithoutV8GC(); 300 void forceBlinkGCWithoutV8GC();
301 301
302 iterable<long>; 302 iterable<long>;
303 }; 303 };
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/devtools/front_end/elements/ElementsPanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698