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