| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 ClientRect boundingBox(in Element element) raises(DOMException); | 49 ClientRect boundingBox(in Element element) raises(DOMException); |
| 50 unsigned long markerCountForNode(in Node node) raises(DOMException); | 50 unsigned long markerCountForNode(in Node node) raises(DOMException); |
| 51 Range markerRangeForNode(in Node node, in unsigned long index) raises(DO
MException); | 51 Range markerRangeForNode(in Node node, in unsigned long index) raises(DO
MException); |
| 52 | 52 |
| 53 void setForceCompositingMode(in Document document, in boolean enabled) r
aises(DOMException); | 53 void setForceCompositingMode(in Document document, in boolean enabled) r
aises(DOMException); |
| 54 | 54 |
| 55 void setPasswordEchoEnabled(in Document document, in boolean enabled) ra
ises(DOMException); | 55 void setPasswordEchoEnabled(in Document document, in boolean enabled) ra
ises(DOMException); |
| 56 void setPasswordEchoDurationInSeconds(in Document document, in double du
rationInSeconds) raises(DOMException); | 56 void setPasswordEchoDurationInSeconds(in Document document, in double du
rationInSeconds) raises(DOMException); |
| 57 | 57 |
| 58 boolean wasLastChangeUserEdit(in Element textField) raises (DOMException
); | 58 boolean wasLastChangeUserEdit(in Element textField) raises (DOMException
); |
| 59 DOMString suggestedValue(in Element inputElement) raises (DOMException); |
| 60 void setSuggestedValue(in Element inputElement, in DOMString value) rais
es (DOMException); |
| 59 }; | 61 }; |
| 60 } | 62 } |
| 61 | 63 |
| OLD | NEW |