OLD | NEW |
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 Loading... |
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 Loading... |
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 }; |
OLD | NEW |