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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node
node); | 47 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node
node); |
48 | 48 |
49 [RaisesException] ShadowRoot shadowRoot(Element host); | 49 [RaisesException] ShadowRoot shadowRoot(Element host); |
50 [RaisesException] ShadowRoot youngestShadowRoot(Element host); | 50 [RaisesException] ShadowRoot youngestShadowRoot(Element host); |
51 [RaisesException] ShadowRoot oldestShadowRoot(Element host); | 51 [RaisesException] ShadowRoot oldestShadowRoot(Element host); |
52 [RaisesException] ShadowRoot youngerShadowRoot(Node root); | 52 [RaisesException] ShadowRoot youngerShadowRoot(Node root); |
| 53 [RaisesException] Element shadowHost(Node node); |
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); |
57 [RaisesException] unsigned long countElementShadow(Node Root); | 58 [RaisesException] unsigned long countElementShadow(Node Root); |
58 [RaisesException] DOMString shadowPseudoId(Element element); | 59 [RaisesException] DOMString shadowPseudoId(Element element); |
59 [RaisesException] void setShadowPseudoId(Element element, DOMString id); | 60 [RaisesException] void setShadowPseudoId(Element element, DOMString id); |
60 [RaisesException] boolean isValidContentSelect(Element contentElement); | 61 [RaisesException] boolean isValidContentSelect(Element contentElement); |
61 [RaisesException] Node treeScopeRootNode(Node node); | 62 [RaisesException] Node treeScopeRootNode(Node node); |
62 [RaisesException] Node parentTreeScope(Node node); | 63 [RaisesException] Node parentTreeScope(Node node); |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 [ImplementedInPrivateScript] short getIntegerFromDocument(Document document)
; | 296 [ImplementedInPrivateScript] short getIntegerFromDocument(Document document)
; |
296 [ImplementedInPrivateScript] Node createElement(Document document); | 297 [ImplementedInPrivateScript] Node createElement(Document document); |
297 [ImplementedInPrivateScript] void appendChild(Node node1, Node node2); | 298 [ImplementedInPrivateScript] void appendChild(Node node1, Node node2); |
298 [ImplementedInPrivateScript] Node firstChild(Node node); | 299 [ImplementedInPrivateScript] Node firstChild(Node node); |
299 [ImplementedInPrivateScript] Node nextSibling(Node node); | 300 [ImplementedInPrivateScript] Node nextSibling(Node node); |
300 [ImplementedInPrivateScript] DOMString innerHTML(Node node); | 301 [ImplementedInPrivateScript] DOMString innerHTML(Node node); |
301 [ImplementedInPrivateScript] void setInnerHTML(Node node, DOMString string); | 302 [ImplementedInPrivateScript] void setInnerHTML(Node node, DOMString string); |
302 [ImplementedInPrivateScript] void addClickListener(Node node); | 303 [ImplementedInPrivateScript] void addClickListener(Node node); |
303 [ImplementedInPrivateScript] void clickNode(Document document, Node node); | 304 [ImplementedInPrivateScript] void clickNode(Document document, Node node); |
304 }; | 305 }; |
OLD | NEW |