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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 ArrayBuffer serializeObject(SerializedScriptValue obj); | 257 ArrayBuffer serializeObject(SerializedScriptValue obj); |
258 | 258 |
259 void forceReload(boolean endToEnd); | 259 void forceReload(boolean endToEnd); |
260 | 260 |
261 [TypeChecking=Interface] DOMString getImageSourceURL(Element element); | 261 [TypeChecking=Interface] DOMString getImageSourceURL(Element element); |
262 | 262 |
263 [TypeChecking=Interface] DOMString selectMenuListText(HTMLSelectElement sele
ct); | 263 [TypeChecking=Interface] DOMString selectMenuListText(HTMLSelectElement sele
ct); |
264 [TypeChecking=Interface] boolean isSelectPopupVisible(Node node); | 264 [TypeChecking=Interface] boolean isSelectPopupVisible(Node node); |
265 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex); | 265 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex); |
266 long selectPopupItemStyleFontHeight(Node select, long itemIndex); | 266 long selectPopupItemStyleFontHeight(Node select, long itemIndex); |
| 267 [TypeChecking=Interface] void resetTypeAheadSession(HTMLSelectElement select
); |
267 | 268 |
268 [RaisesException] ClientRect selectionBounds(); | 269 [RaisesException] ClientRect selectionBounds(); |
269 | 270 |
270 boolean loseSharedGraphicsContext3D(); | 271 boolean loseSharedGraphicsContext3D(); |
271 | 272 |
272 [RaisesException, TypeChecking=Interface] void forceCompositingUpdate(Docume
nt document); | 273 [RaisesException, TypeChecking=Interface] void forceCompositingUpdate(Docume
nt document); |
273 | 274 |
274 void setZoomFactor(float factor); | 275 void setZoomFactor(float factor); |
275 | 276 |
276 [RaisesException, TypeChecking=Interface] void setShouldRevealPassword(Eleme
nt element, boolean reveal); | 277 [RaisesException, TypeChecking=Interface] void setShouldRevealPassword(Eleme
nt element, boolean reveal); |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 | 330 |
330 ClientRectList outlineRects(Element element); | 331 ClientRectList outlineRects(Element element); |
331 void setCapsLockState(boolean enabled); | 332 void setCapsLockState(boolean enabled); |
332 | 333 |
333 // Returns whether the scrollbar was able to be shown or hidden; not all pla
tforms | 334 // Returns whether the scrollbar was able to be shown or hidden; not all pla
tforms |
334 // support overlay scrollbars. | 335 // support overlay scrollbars. |
335 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); | 336 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); |
336 | 337 |
337 void forceRestrictIFramePermissions(); | 338 void forceRestrictIFramePermissions(); |
338 }; | 339 }; |
OLD | NEW |