| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 [RaisesException] boolean attached(Node node); | 75 [RaisesException] boolean attached(Node node); |
| 76 | 76 |
| 77 DOMString visiblePlaceholder(Element element); | 77 DOMString visiblePlaceholder(Element element); |
| 78 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR | 78 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR |
| 79 void selectColorInColorChooser(Element element, DOMString colorValue); | 79 void selectColorInColorChooser(Element element, DOMString colorValue); |
| 80 #endif | 80 #endif |
| 81 [RaisesException] DOMString[] formControlStateOfPreviousHistoryItem(); | 81 [RaisesException] DOMString[] formControlStateOfPreviousHistoryItem(); |
| 82 [RaisesException] void setFormControlStateOfPreviousHistoryItem(sequence<DOM
String> values); | 82 [RaisesException] void setFormControlStateOfPreviousHistoryItem(sequence<DOM
String> values); |
| 83 [RaisesException] void setEnableMockPagePopup(boolean enabled); | 83 [RaisesException] void setEnableMockPagePopup(boolean enabled); |
| 84 #if defined(ENABLE_PAGE_POPUP) && ENABLE_PAGE_POPUP | |
| 85 readonly attribute PagePopupController pagePopupController; | 84 readonly attribute PagePopupController pagePopupController; |
| 86 #endif | |
| 87 | 85 |
| 88 [RaisesException] ClientRect absoluteCaretBounds(); | 86 [RaisesException] ClientRect absoluteCaretBounds(); |
| 89 | 87 |
| 90 [RaisesException] ClientRect boundingBox(Element element); | 88 [RaisesException] ClientRect boundingBox(Element element); |
| 91 | 89 |
| 92 [RaisesException] ClientRectList inspectorHighlightRects(Document document); | 90 [RaisesException] ClientRectList inspectorHighlightRects(Document document); |
| 93 | 91 |
| 94 [RaisesException] unsigned long markerCountForNode(Node node, DOMString mark
erType); | 92 [RaisesException] unsigned long markerCountForNode(Node node, DOMString mark
erType); |
| 95 [RaisesException] Range markerRangeForNode(Node node, DOMString markerType,
unsigned long index); | 93 [RaisesException] Range markerRangeForNode(Node node, DOMString markerType,
unsigned long index); |
| 96 [RaisesException] DOMString markerDescriptionForNode(Node node, DOMString ma
rkerType, unsigned long index); | 94 [RaisesException] DOMString markerDescriptionForNode(Node node, DOMString ma
rkerType, unsigned long index); |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 void forceReload(boolean endToEnd); | 238 void forceReload(boolean endToEnd); |
| 241 | 239 |
| 242 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); | 240 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); |
| 243 | 241 |
| 244 void enableMockSpeechSynthesizer(); | 242 void enableMockSpeechSynthesizer(); |
| 245 | 243 |
| 246 [RaisesException] DOMString getImageSourceURL(Element element); | 244 [RaisesException] DOMString getImageSourceURL(Element element); |
| 247 | 245 |
| 248 boolean isSelectPopupVisible(Node node); | 246 boolean isSelectPopupVisible(Node node); |
| 249 }; | 247 }; |
| OLD | NEW |