| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 DOMString visiblePlaceholder(Element element); | 77 DOMString visiblePlaceholder(Element element); |
| 78 | 78 |
| 79 [TypeChecking=Interface] void selectColorInColorChooser(Element element, DOM
String colorValue); | 79 [TypeChecking=Interface] void selectColorInColorChooser(Element element, DOM
String colorValue); |
| 80 [TypeChecking=Interface] void endColorChooser(Element element); | 80 [TypeChecking=Interface] void endColorChooser(Element element); |
| 81 | 81 |
| 82 // If the argument is omitted, the top-level document is used. | 82 // If the argument is omitted, the top-level document is used. |
| 83 boolean hasAutofocusRequest(optional Document document); | 83 boolean hasAutofocusRequest(optional Document document); |
| 84 [RaisesException] DOMString[] formControlStateOfHistoryItem(); | 84 [RaisesException] DOMString[] formControlStateOfHistoryItem(); |
| 85 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString>
values); | 85 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString>
values); |
| 86 [RaisesException] void setEnableMockPagePopup(boolean enabled); | |
| 87 readonly attribute PagePopupController pagePopupController; | |
| 88 readonly attribute Window pagePopupWindow; | 86 readonly attribute Window pagePopupWindow; |
| 89 | 87 |
| 90 [RaisesException] ClientRect absoluteCaretBounds(); | 88 [RaisesException] ClientRect absoluteCaretBounds(); |
| 91 | 89 |
| 92 [TypeChecking=Interface] ClientRect boundingBox(Element element); | 90 [TypeChecking=Interface] ClientRect boundingBox(Element element); |
| 93 | 91 |
| 94 [RaisesException, TypeChecking=Interface] unsigned long markerCountForNode(N
ode node, DOMString markerType); | 92 [RaisesException, TypeChecking=Interface] unsigned long markerCountForNode(N
ode node, DOMString markerType); |
| 95 [TypeChecking=Interface] unsigned long activeMarkerCountForNode(Node node); | 93 [TypeChecking=Interface] unsigned long activeMarkerCountForNode(Node node); |
| 96 [RaisesException, TypeChecking=Interface] Range markerRangeForNode(Node node
, DOMString markerType, unsigned long index); | 94 [RaisesException, TypeChecking=Interface] Range markerRangeForNode(Node node
, DOMString markerType, unsigned long index); |
| 97 [RaisesException, TypeChecking=Interface] DOMString markerDescriptionForNode
(Node node, DOMString markerType, unsigned long index); | 95 [RaisesException, TypeChecking=Interface] DOMString markerDescriptionForNode
(Node node, DOMString markerType, unsigned long index); |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 ClientRectList getTransitionElementRects(); | 286 ClientRectList getTransitionElementRects(); |
| 289 void hideAllTransitionElements(); | 287 void hideAllTransitionElements(); |
| 290 void showAllTransitionElements(); | 288 void showAllTransitionElements(); |
| 291 | 289 |
| 292 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); | 290 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); |
| 293 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, PluginPlaceholderOptions options); | 291 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, PluginPlaceholderOptions options); |
| 294 | 292 |
| 295 DictionaryTest dictionaryTest(); | 293 DictionaryTest dictionaryTest(); |
| 296 UnionTypesTest unionTypesTest(); | 294 UnionTypesTest unionTypesTest(); |
| 297 }; | 295 }; |
| OLD | NEW |