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

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

Issue 14594006: Remove Internals::createShadowRoot(element) and polyfill.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
« 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 20 matching lines...) Expand all
31 [RaisesException] DOMString elementRenderTreeAsText(Element element); 31 [RaisesException] DOMString elementRenderTreeAsText(Element element);
32 boolean isPreloaded(DOMString url); 32 boolean isPreloaded(DOMString url);
33 boolean isLoadingFromMemoryCache(DOMString url); 33 boolean isLoadingFromMemoryCache(DOMString url);
34 34
35 void crash(); 35 void crash();
36 36
37 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope); 37 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope);
38 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node); 38 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node);
39 39
40 [RaisesException] ShadowRoot ensureShadowRoot(Element host); 40 [RaisesException] ShadowRoot ensureShadowRoot(Element host);
41 [RaisesException] ShadowRoot createShadowRoot(Element host);
42 [RaisesException] ShadowRoot shadowRoot(Element host); 41 [RaisesException] ShadowRoot shadowRoot(Element host);
43 [RaisesException] ShadowRoot youngestShadowRoot(Element host); 42 [RaisesException] ShadowRoot youngestShadowRoot(Element host);
44 [RaisesException] ShadowRoot oldestShadowRoot(Element host); 43 [RaisesException] ShadowRoot oldestShadowRoot(Element host);
45 [RaisesException] ShadowRoot youngerShadowRoot(Node root); 44 [RaisesException] ShadowRoot youngerShadowRoot(Node root);
46 [RaisesException] ShadowRoot olderShadowRoot(Node root); 45 [RaisesException] ShadowRoot olderShadowRoot(Node root);
47 46
48 [RaisesException] DOMString shadowRootType(Node root); 47 [RaisesException] DOMString shadowRootType(Node root);
49 [RaisesException] boolean hasShadowInsertionPoint(Node root); 48 [RaisesException] boolean hasShadowInsertionPoint(Node root);
50 [RaisesException] boolean hasContentElement(Node root); 49 [RaisesException] boolean hasContentElement(Node root);
51 [RaisesException] unsigned long countElementShadow(Node Root); 50 [RaisesException] unsigned long countElementShadow(Node Root);
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 void forceReload(boolean endToEnd); 242 void forceReload(boolean endToEnd);
244 243
245 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); 244 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM();
246 245
247 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); 246 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer();
248 247
249 [RaisesException] DOMString getImageSourceURL(Element element); 248 [RaisesException] DOMString getImageSourceURL(Element element);
250 249
251 boolean isSelectPopupVisible(Node node); 250 boolean isSelectPopupVisible(Node node);
252 }; 251 };
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