| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 DOMString visiblePlaceholder(Element element); | 75 DOMString visiblePlaceholder(Element element); |
| 76 | 76 |
| 77 [TypeChecking=Interface] void selectColorInColorChooser(Element element, DOM
String colorValue); | 77 [TypeChecking=Interface] void selectColorInColorChooser(Element element, DOM
String colorValue); |
| 78 | 78 |
| 79 // If the argument is omitted, the top-level document is used. | 79 // If the argument is omitted, the top-level document is used. |
| 80 boolean hasAutofocusRequest(optional Document document); | 80 boolean hasAutofocusRequest(optional Document document); |
| 81 [RaisesException] DOMString[] formControlStateOfHistoryItem(); | 81 [RaisesException] DOMString[] formControlStateOfHistoryItem(); |
| 82 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString>
values); | 82 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString>
values); |
| 83 [RaisesException] void setEnableMockPagePopup(boolean enabled); | 83 [RaisesException] void setEnableMockPagePopup(boolean enabled); |
| 84 readonly attribute PagePopupController pagePopupController; | 84 readonly attribute PagePopupController pagePopupController; |
| 85 readonly attribute Window pagePopupWindow; |
| 85 | 86 |
| 86 [RaisesException] ClientRect absoluteCaretBounds(); | 87 [RaisesException] ClientRect absoluteCaretBounds(); |
| 87 | 88 |
| 88 [TypeChecking=Interface] ClientRect boundingBox(Element element); | 89 [TypeChecking=Interface] ClientRect boundingBox(Element element); |
| 89 | 90 |
| 90 [RaisesException, TypeChecking=Interface] unsigned long markerCountForNode(N
ode node, DOMString markerType); | 91 [RaisesException, TypeChecking=Interface] unsigned long markerCountForNode(N
ode node, DOMString markerType); |
| 91 [TypeChecking=Interface] unsigned long activeMarkerCountForNode(Node node); | 92 [TypeChecking=Interface] unsigned long activeMarkerCountForNode(Node node); |
| 92 [RaisesException, TypeChecking=Interface] Range markerRangeForNode(Node node
, DOMString markerType, unsigned long index); | 93 [RaisesException, TypeChecking=Interface] Range markerRangeForNode(Node node
, DOMString markerType, unsigned long index); |
| 93 [RaisesException, TypeChecking=Interface] DOMString markerDescriptionForNode
(Node node, DOMString markerType, unsigned long index); | 94 [RaisesException, TypeChecking=Interface] DOMString markerDescriptionForNode
(Node node, DOMString markerType, unsigned long index); |
| 94 [TypeChecking=Interface] void addTextMatchMarker(Range range, boolean isActi
ve); | 95 [TypeChecking=Interface] void addTextMatchMarker(Range range, boolean isActi
ve); |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 // This function is for testing HitRegions on Canvas2D. | 274 // This function is for testing HitRegions on Canvas2D. |
| 274 unsigned long countHitRegions(CanvasRenderingContext2D context); | 275 unsigned long countHitRegions(CanvasRenderingContext2D context); |
| 275 | 276 |
| 276 DOMString serializeNavigationMarkup(); | 277 DOMString serializeNavigationMarkup(); |
| 277 void hideAllTransitionElements(); | 278 void hideAllTransitionElements(); |
| 278 | 279 |
| 279 [RaisesException] void forcePluginPlaceholder(HTMLElement plugin, DOMString
htmlSource); | 280 [RaisesException] void forcePluginPlaceholder(HTMLElement plugin, DOMString
htmlSource); |
| 280 | 281 |
| 281 DictionaryTest dictionaryTest(); | 282 DictionaryTest dictionaryTest(); |
| 282 }; | 283 }; |
| OLD | NEW |