| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 boolean isSelectPopupVisible(Node node); | 270 boolean isSelectPopupVisible(Node node); |
| 271 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex); | 271 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex); |
| 272 long selectPopupItemStyleFontHeight(Node select, long itemIndex); | 272 long selectPopupItemStyleFontHeight(Node select, long itemIndex); |
| 273 void resetTypeAheadSession(HTMLSelectElement select); | 273 void resetTypeAheadSession(HTMLSelectElement select); |
| 274 | 274 |
| 275 readonly attribute Node? visibleSelectionAnchorNode; | 275 readonly attribute Node? visibleSelectionAnchorNode; |
| 276 readonly attribute unsigned long visibleSelectionAnchorOffset; | 276 readonly attribute unsigned long visibleSelectionAnchorOffset; |
| 277 readonly attribute Node? visibleSelectionFocusNode; | 277 readonly attribute Node? visibleSelectionFocusNode; |
| 278 readonly attribute unsigned long visibleSelectionFocusOffset; | 278 readonly attribute unsigned long visibleSelectionFocusOffset; |
| 279 [RaisesException] ClientRect selectionBounds(); | 279 [RaisesException] ClientRect selectionBounds(); |
| 280 readonly attribute DOMString textAffinity; |
| 280 | 281 |
| 281 boolean loseSharedGraphicsContext3D(); | 282 boolean loseSharedGraphicsContext3D(); |
| 282 | 283 |
| 283 [RaisesException] void forceCompositingUpdate(Document document); | 284 [RaisesException] void forceCompositingUpdate(Document document); |
| 284 | 285 |
| 285 void setZoomFactor(float factor); | 286 void setZoomFactor(float factor); |
| 286 | 287 |
| 287 [RaisesException] void setShouldRevealPassword(Element element, boolean reve
al); | 288 [RaisesException] void setShouldRevealPassword(Element element, boolean reve
al); |
| 288 | 289 |
| 289 [CallWith=ScriptState] Promise createResolvedPromise(any value); | 290 [CallWith=ScriptState] Promise createResolvedPromise(any value); |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 DOMString getProgrammaticScrollAnimationState(Node node); | 365 DOMString getProgrammaticScrollAnimationState(Node node); |
| 365 | 366 |
| 366 ClientRect visualRect(Node node); | 367 ClientRect visualRect(Node node); |
| 367 | 368 |
| 368 OriginTrialsTest originTrialsTest(); | 369 OriginTrialsTest originTrialsTest(); |
| 369 | 370 |
| 370 void crash(); | 371 void crash(); |
| 371 | 372 |
| 372 void setIsLowEndDevice(boolean isLowEndDevice); | 373 void setIsLowEndDevice(boolean isLowEndDevice); |
| 373 }; | 374 }; |
| OLD | NEW |