| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 void selectColorInColorChooser(in DOMString colorValue); | 43 void selectColorInColorChooser(in DOMString colorValue); |
| 44 #endif | 44 #endif |
| 45 | 45 |
| 46 void setInspectorResourcesDataSizeLimits(in Document document, in long m
aximumResourcesContentSize, in long maximumSingleResourceContentSize) raises(DOM
Exception); | 46 void setInspectorResourcesDataSizeLimits(in Document document, in long m
aximumResourcesContentSize, in long maximumSingleResourceContentSize) raises(DOM
Exception); |
| 47 | 47 |
| 48 ClientRect boundingBox(in Element element) raises(DOMException); | 48 ClientRect boundingBox(in Element element) raises(DOMException); |
| 49 unsigned long markerCountForNode(in Node node) raises(DOMException); | 49 unsigned long markerCountForNode(in Node node) raises(DOMException); |
| 50 Range markerRangeForNode(in Node node, in unsigned long index) raises(DO
MException); | 50 Range markerRangeForNode(in Node node, in unsigned long index) raises(DO
MException); |
| 51 | 51 |
| 52 void setForceCompositingMode(in Document document, in boolean enabled) r
aises(DOMException); | 52 void setForceCompositingMode(in Document document, in boolean enabled) r
aises(DOMException); |
| 53 void setEnableCompositingForScrollableFrames(in Document document, in bo
olean enabled) raises(DOMException); |
| 54 |
| 53 void setEnableScrollAnimator(in Document document, in boolean enabled) r
aises(DOMException); | 55 void setEnableScrollAnimator(in Document document, in boolean enabled) r
aises(DOMException); |
| 54 void setZoomAnimatorTransform(in Document document, in float scale, in f
loat tx, in float ty) raises(DOMException); | 56 void setZoomAnimatorTransform(in Document document, in float scale, in f
loat tx, in float ty) raises(DOMException); |
| 55 float getPageScaleFactor(in Document document) raises(DOMException); | 57 float getPageScaleFactor(in Document document) raises(DOMException); |
| 56 void setZoomParameters(in Document document, in float scale, in float x,
in float y) raises(DOMException); | 58 void setZoomParameters(in Document document, in float scale, in float x,
in float y) raises(DOMException); |
| 57 | 59 |
| 58 void setPasswordEchoEnabled(in Document document, in boolean enabled) ra
ises(DOMException); | 60 void setPasswordEchoEnabled(in Document document, in boolean enabled) ra
ises(DOMException); |
| 59 void setPasswordEchoDurationInSeconds(in Document document, in double du
rationInSeconds) raises(DOMException); | 61 void setPasswordEchoDurationInSeconds(in Document document, in double du
rationInSeconds) raises(DOMException); |
| 60 | 62 |
| 61 void setScrollViewPosition(in Document document, in long x, in long y) r
aises(DOMException); | 63 void setScrollViewPosition(in Document document, in long x, in long y) r
aises(DOMException); |
| 62 | 64 |
| 63 boolean wasLastChangeUserEdit(in Element textField) raises (DOMException
); | 65 boolean wasLastChangeUserEdit(in Element textField) raises (DOMException
); |
| 64 DOMString suggestedValue(in Element inputElement) raises (DOMException); | 66 DOMString suggestedValue(in Element inputElement) raises (DOMException); |
| 65 void setSuggestedValue(in Element inputElement, in DOMString value) rais
es (DOMException); | 67 void setSuggestedValue(in Element inputElement, in DOMString value) rais
es (DOMException); |
| 66 | 68 |
| 67 void paintControlTints(in Document document) raises (DOMException); | 69 void paintControlTints(in Document document) raises (DOMException); |
| 68 | 70 |
| 69 void scrollElementToRect(in Element element, in long x, in long y, in lo
ng w, in long h) raises (DOMException); | 71 void scrollElementToRect(in Element element, in long x, in long y, in lo
ng w, in long h) raises (DOMException); |
| 70 | 72 |
| 71 Range rangeFromLocationAndLength(in Element scope, in long rangeLocation
, in long rangeLength) raises (DOMException); | 73 Range rangeFromLocationAndLength(in Element scope, in long rangeLocation
, in long rangeLength) raises (DOMException); |
| 72 unsigned long locationFromRange(in Element scope, in Range range) raises
(DOMException); | 74 unsigned long locationFromRange(in Element scope, in Range range) raises
(DOMException); |
| 73 unsigned long lengthFromRange(in Element scope, in Range range) raises (
DOMException); | 75 unsigned long lengthFromRange(in Element scope, in Range range) raises (
DOMException); |
| 74 }; | 76 }; |
| 75 } | 77 } |
| 76 | 78 |
| OLD | NEW |