Chromium Code Reviews| Index: third_party/WebKit/Source/core/testing/Internals.idl |
| diff --git a/third_party/WebKit/Source/core/testing/Internals.idl b/third_party/WebKit/Source/core/testing/Internals.idl |
| index 65ec824edac13e8cea73838710eeb65deae2a9cd..58ff10bd576dc34259f92d3479201a615e85b2ae 100644 |
| --- a/third_party/WebKit/Source/core/testing/Internals.idl |
| +++ b/third_party/WebKit/Source/core/testing/Internals.idl |
| @@ -130,9 +130,16 @@ |
| unsigned long lengthFromRange(Element scope, Range range); |
| DOMString rangeAsText(Range range); |
| - [RaisesException] DOMPoint touchPositionAdjustedToBestClickableNode(long x, long y, long width, long height, Document document); |
| + // The following method should return DOMPoint but for now |
| + // we use 'any' instead since it is implemented with V8 extras. |
| + // Please see: http://crbug.com/588630 |
| + [RaisesException] any touchPositionAdjustedToBestClickableNode(long x, long y, long width, long height, Document document); |
|
haraken
2016/02/25 11:21:11
Add [CallWith=ScriptState] and pass it down to met
|
| [RaisesException] Node touchNodeAdjustedToBestClickableNode(long x, long y, long width, long height, Document document); |
| - [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document document); |
| + |
| + // The following method should return DOMPoint but for now |
| + // we use 'any' instead since it is implemented with V8 extras. |
| + // Please see: http://crbug.com/588630 |
| + [RaisesException] any touchPositionAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document document); |
|
haraken
2016/02/25 11:21:10
Ditto.
|
| [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document document); |
| [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, long width, long height, Document document); |