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 26 matching lines...) Expand all Loading... |
37 boolean isLoadingFromMemoryCache(DOMString url); | 37 boolean isLoadingFromMemoryCache(DOMString url); |
38 | 38 |
39 void crash(); | 39 void crash(); |
40 | 40 |
41 void setStyleResolverStatsEnabled(boolean enabled); | 41 void setStyleResolverStatsEnabled(boolean enabled); |
42 [RaisesException] DOMString styleResolverStatsReport(); | 42 [RaisesException] DOMString styleResolverStatsReport(); |
43 [RaisesException] DOMString styleResolverStatsTotalsReport(); | 43 [RaisesException] DOMString styleResolverStatsTotalsReport(); |
44 | 44 |
45 [RaisesException] boolean isSharingStyle(Element element1, Element element2)
; | 45 [RaisesException] boolean isSharingStyle(Element element1, Element element2)
; |
46 | 46 |
| 47 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope); |
47 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node
node); | 48 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node
node); |
48 | 49 |
49 [RaisesException] ShadowRoot shadowRoot(Element host); | 50 [RaisesException] ShadowRoot shadowRoot(Element host); |
50 [RaisesException] ShadowRoot youngestShadowRoot(Element host); | 51 [RaisesException] ShadowRoot youngestShadowRoot(Element host); |
51 [RaisesException] ShadowRoot oldestShadowRoot(Element host); | 52 [RaisesException] ShadowRoot oldestShadowRoot(Element host); |
52 [RaisesException] ShadowRoot youngerShadowRoot(Node root); | 53 [RaisesException] ShadowRoot youngerShadowRoot(Node root); |
53 | 54 |
54 [RaisesException] DOMString shadowRootType(Node root); | 55 [RaisesException] DOMString shadowRootType(Node root); |
55 [RaisesException] boolean hasShadowInsertionPoint(Node root); | 56 [RaisesException] boolean hasShadowInsertionPoint(Node root); |
56 [RaisesException] boolean hasContentElement(Node root); | 57 [RaisesException] boolean hasContentElement(Node root); |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 | 274 |
274 DOMString textSurroundingNode(Node node, long x, long y, unsigned long maxLe
ngth); | 275 DOMString textSurroundingNode(Node node, long x, long y, unsigned long maxLe
ngth); |
275 | 276 |
276 void setFocused(boolean focused); | 277 void setFocused(boolean focused); |
277 | 278 |
278 // These functions are for testing NetInfo. You must call setNetworkStateNot
ifierTestOnly(true) | 279 // These functions are for testing NetInfo. You must call setNetworkStateNot
ifierTestOnly(true) |
279 // before calling setNetworkConnectionInfo. | 280 // before calling setNetworkConnectionInfo. |
280 void setNetworkStateNotifierTestOnly(boolean testOnly); | 281 void setNetworkStateNotifierTestOnly(boolean testOnly); |
281 [RaisesException] void setNetworkConnectionInfo(DOMString type); | 282 [RaisesException] void setNetworkConnectionInfo(DOMString type); |
282 }; | 283 }; |
OLD | NEW |