| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 [TypeChecking=Interface] Node nextSiblingByWalker(Node node); | 70 [TypeChecking=Interface] Node nextSiblingByWalker(Node node); |
| 71 [TypeChecking=Interface] Node firstChildByWalker(Node node); | 71 [TypeChecking=Interface] Node firstChildByWalker(Node node); |
| 72 [TypeChecking=Interface] Node lastChildByWalker(Node node); | 72 [TypeChecking=Interface] Node lastChildByWalker(Node node); |
| 73 [TypeChecking=Interface] Node nextNodeByWalker(Node node); | 73 [TypeChecking=Interface] Node nextNodeByWalker(Node node); |
| 74 [TypeChecking=Interface] Node previousNodeByWalker(Node node); | 74 [TypeChecking=Interface] Node previousNodeByWalker(Node node); |
| 75 | 75 |
| 76 DOMString visiblePlaceholder(Element element); | 76 DOMString visiblePlaceholder(Element element); |
| 77 | 77 |
| 78 [TypeChecking=Interface] void selectColorInColorChooser(Element element, DOM
String colorValue); | 78 [TypeChecking=Interface] void selectColorInColorChooser(Element element, DOM
String colorValue); |
| 79 [TypeChecking=Interface] void endColorChooser(Element element); |
| 79 | 80 |
| 80 // If the argument is omitted, the top-level document is used. | 81 // If the argument is omitted, the top-level document is used. |
| 81 boolean hasAutofocusRequest(optional Document document); | 82 boolean hasAutofocusRequest(optional Document document); |
| 82 [RaisesException] DOMString[] formControlStateOfHistoryItem(); | 83 [RaisesException] DOMString[] formControlStateOfHistoryItem(); |
| 83 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString>
values); | 84 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString>
values); |
| 84 [RaisesException] void setEnableMockPagePopup(boolean enabled); | 85 [RaisesException] void setEnableMockPagePopup(boolean enabled); |
| 85 readonly attribute PagePopupController pagePopupController; | 86 readonly attribute PagePopupController pagePopupController; |
| 86 | 87 |
| 87 [RaisesException] ClientRect absoluteCaretBounds(); | 88 [RaisesException] ClientRect absoluteCaretBounds(); |
| 88 | 89 |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 // This function is for testing HitRegions on Canvas2D. | 275 // This function is for testing HitRegions on Canvas2D. |
| 275 unsigned long countHitRegions(CanvasRenderingContext2D context); | 276 unsigned long countHitRegions(CanvasRenderingContext2D context); |
| 276 | 277 |
| 277 DOMString serializeNavigationMarkup(); | 278 DOMString serializeNavigationMarkup(); |
| 278 void hideAllTransitionElements(); | 279 void hideAllTransitionElements(); |
| 279 | 280 |
| 280 [RaisesException] void forcePluginPlaceholder(HTMLElement plugin, DOMString
htmlSource); | 281 [RaisesException] void forcePluginPlaceholder(HTMLElement plugin, DOMString
htmlSource); |
| 281 | 282 |
| 282 DictionaryTest dictionaryTest(); | 283 DictionaryTest dictionaryTest(); |
| 283 }; | 284 }; |
| OLD | NEW |