| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 [RaisesException] boolean attached(Node node); | 81 [RaisesException] boolean attached(Node node); |
| 82 | 82 |
| 83 DOMString visiblePlaceholder(Element element); | 83 DOMString visiblePlaceholder(Element element); |
| 84 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR | 84 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR |
| 85 void selectColorInColorChooser(Element element, DOMString colorValue); | 85 void selectColorInColorChooser(Element element, DOMString colorValue); |
| 86 #endif | 86 #endif |
| 87 [RaisesException] DOMString[] formControlStateOfPreviousHistoryItem(); | 87 [RaisesException] DOMString[] formControlStateOfPreviousHistoryItem(); |
| 88 [RaisesException] void setFormControlStateOfPreviousHistoryItem(sequence<DOM
String> values); | 88 [RaisesException] void setFormControlStateOfPreviousHistoryItem(sequence<DOM
String> values); |
| 89 [RaisesException] void setEnableMockPagePopup(boolean enabled); | 89 [RaisesException] void setEnableMockPagePopup(boolean enabled); |
| 90 #if defined(ENABLE_PAGE_POPUP) && ENABLE_PAGE_POPUP | 90 |
| 91 readonly attribute PagePopupController pagePopupController; | 91 [EnabledAtRuntime=pagePopup] readonly attribute PagePopupController pagePopu
pController; |
| 92 #endif | |
| 93 | 92 |
| 94 [RaisesException] ClientRect absoluteCaretBounds(); | 93 [RaisesException] ClientRect absoluteCaretBounds(); |
| 95 | 94 |
| 96 [RaisesException] ClientRect boundingBox(Element element); | 95 [RaisesException] ClientRect boundingBox(Element element); |
| 97 | 96 |
| 98 [RaisesException] ClientRectList inspectorHighlightRects(Document document); | 97 [RaisesException] ClientRectList inspectorHighlightRects(Document document); |
| 99 | 98 |
| 100 [RaisesException] unsigned long markerCountForNode(Node node, DOMString mark
erType); | 99 [RaisesException] unsigned long markerCountForNode(Node node, DOMString mark
erType); |
| 101 [RaisesException] Range markerRangeForNode(Node node, DOMString markerType,
unsigned long index); | 100 [RaisesException] Range markerRangeForNode(Node node, DOMString markerType,
unsigned long index); |
| 102 [RaisesException] DOMString markerDescriptionForNode(Node node, DOMString ma
rkerType, unsigned long index); | 101 [RaisesException] DOMString markerDescriptionForNode(Node node, DOMString ma
rkerType, unsigned long index); |
| (...skipping 140 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 |