| Index: third_party/WebCore/testing/Internals.idl
|
| diff --git a/third_party/WebCore/testing/Internals.idl b/third_party/WebCore/testing/Internals.idl
|
| index 7f5a2114d1a3ba6076886eb21b1d7104d53e0589..aa10858bb3d666af4fc05dbee8a44076adf86040 100644
|
| --- a/third_party/WebCore/testing/Internals.idl
|
| +++ b/third_party/WebCore/testing/Internals.idl
|
| @@ -1,5 +1,5 @@
|
| /*
|
| - * Copyright (C) 2011 Google Inc. All rights reserved.
|
| + * Copyright (C) 2012 Google Inc. All rights reserved.
|
| *
|
| * Redistribution and use in source and binary forms, with or without
|
| * modification, are permitted provided that the following conditions
|
| @@ -68,6 +68,8 @@ module window {
|
| void selectColorInColorChooser(in Element element, in DOMString colorValue);
|
| #endif
|
|
|
| + ClientRect absoluteCaretBounds(in Document document) raises(DOMException);
|
| +
|
| ClientRect boundingBox(in Element element) raises(DOMException);
|
|
|
| ClientRectList inspectorHighlightRects(in Document document) raises (DOMException);
|
| @@ -85,6 +87,7 @@ module window {
|
| boolean wasLastChangeUserEdit(in Element textField) raises (DOMException);
|
| DOMString suggestedValue(in Element inputElement) raises (DOMException);
|
| void setSuggestedValue(in Element inputElement, in DOMString value) raises (DOMException);
|
| + void setEditingValue(in Element inputElement, in DOMString value) raises (DOMException);
|
|
|
| void paintControlTints(in Document document) raises (DOMException);
|
|
|
| @@ -134,6 +137,8 @@ module window {
|
| void suspendAnimations(in Document document) raises (DOMException);
|
| void resumeAnimations(in Document document) raises (DOMException);
|
|
|
| + void allowRoundingHacks();
|
| +
|
| #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS
|
| void setBatteryStatus(in Document document, in DOMString eventType, in boolean charging, in double chargingTime, in double dischargingTime, in double level) raises (DOMException);
|
| #endif
|
|
|