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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 | 109 |
110 [RaisesException] DOMString viewportAsText(Document document, | 110 [RaisesException] DOMString viewportAsText(Document document, |
111 float devicePixelRatio, | 111 float devicePixelRatio, |
112 long availableWidth, | 112 long availableWidth, |
113 long availableHeight); | 113 long availableHeight); |
114 | 114 |
115 [RaisesException] boolean wasLastChangeUserEdit(Element textField); | 115 [RaisesException] boolean wasLastChangeUserEdit(Element textField); |
116 [RaisesException] boolean elementShouldAutoComplete(Element inputElement); | 116 [RaisesException] boolean elementShouldAutoComplete(Element inputElement); |
117 [RaisesException] DOMString suggestedValue(Element inputElement); | 117 [RaisesException] DOMString suggestedValue(Element inputElement); |
118 [RaisesException] void setSuggestedValue(Element inputElement, DOMString val
ue); | 118 [RaisesException] void setSuggestedValue(Element inputElement, DOMString val
ue); |
| 119 [RaisesException] DOMString originalValue(Element inputElement); |
| 120 [RaisesException] void setOriginalValue(Element inputElement, DOMString valu
e); |
119 [RaisesException] void setEditingValue(Element inputElement, DOMString value
); | 121 [RaisesException] void setEditingValue(Element inputElement, DOMString value
); |
120 [RaisesException] void setAutofilled(Element inputElement, boolean enabled); | 122 [RaisesException] void setAutofilled(Element inputElement, boolean enabled); |
121 | 123 |
122 [RaisesException] void paintControlTints(Document document); | 124 [RaisesException] void paintControlTints(Document document); |
123 | 125 |
124 [RaisesException] void scrollElementToRect(Element element, long x, long y,
long w, long h); | 126 [RaisesException] void scrollElementToRect(Element element, long x, long y,
long w, long h); |
125 | 127 |
126 [RaisesException] Range rangeFromLocationAndLength(Element scope, long range
Location, long rangeLength); | 128 [RaisesException] Range rangeFromLocationAndLength(Element scope, long range
Location, long rangeLength); |
127 [RaisesException] unsigned long locationFromRange(Element scope, Range range
); | 129 [RaisesException] unsigned long locationFromRange(Element scope, Range range
); |
128 [RaisesException] unsigned long lengthFromRange(Element scope, Range range); | 130 [RaisesException] unsigned long lengthFromRange(Element scope, Range range); |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 boolean isSelectPopupVisible(Node node); | 269 boolean isSelectPopupVisible(Node node); |
268 | 270 |
269 [RaisesException] ClientRect selectionBounds(); | 271 [RaisesException] ClientRect selectionBounds(); |
270 | 272 |
271 boolean loseSharedGraphicsContext3D(); | 273 boolean loseSharedGraphicsContext3D(); |
272 | 274 |
273 [RaisesException] void forceCompositingUpdate(Document document); | 275 [RaisesException] void forceCompositingUpdate(Document document); |
274 | 276 |
275 void setZoomFactor(float factor); | 277 void setZoomFactor(float factor); |
276 }; | 278 }; |
OLD | NEW |