| 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 20 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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 }; |
| OLD | NEW |