| Index: third_party/WebKit/Source/core/testing/Internals.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| index 42c838edb8049b7fd34c2171ca5f88c9dbdf995d..7f3f52210c74124115bb2fed171b929dacb69c84 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -555,8 +555,9 @@ void Internals::pauseAnimations(double pauseTime,
|
| ExceptionState& exceptionState) {
|
| if (pauseTime < 0) {
|
| exceptionState.throwDOMException(
|
| - InvalidAccessError, ExceptionMessages::indexExceedsMinimumBound(
|
| - "pauseTime", pauseTime, 0.0));
|
| + InvalidAccessError,
|
| + ExceptionMessages::indexExceedsMinimumBound("pauseTime", pauseTime,
|
| + 0.0));
|
| return;
|
| }
|
|
|
| @@ -585,8 +586,9 @@ void Internals::advanceTimeForImage(Element* image,
|
| DCHECK(image);
|
| if (deltaTimeInSeconds < 0) {
|
| exceptionState.throwDOMException(
|
| - InvalidAccessError, ExceptionMessages::indexExceedsMinimumBound(
|
| - "deltaTimeInSeconds", deltaTimeInSeconds, 0.0));
|
| + InvalidAccessError,
|
| + ExceptionMessages::indexExceedsMinimumBound("deltaTimeInSeconds",
|
| + deltaTimeInSeconds, 0.0));
|
| return;
|
| }
|
|
|
| @@ -1297,8 +1299,9 @@ DOMPoint* Internals::touchPositionAdjustedToBestClickableNode(
|
| EventHandler& eventHandler = document->frame()->eventHandler();
|
| IntPoint hitTestPoint = document->frame()->view()->rootFrameToContents(point);
|
| HitTestResult result = eventHandler.hitTestResultAtPoint(
|
| - hitTestPoint, HitTestRequest::ReadOnly | HitTestRequest::Active |
|
| - HitTestRequest::ListBased,
|
| + hitTestPoint,
|
| + HitTestRequest::ReadOnly | HitTestRequest::Active |
|
| + HitTestRequest::ListBased,
|
| LayoutSize(radius));
|
|
|
| Node* targetNode = 0;
|
| @@ -1334,8 +1337,9 @@ Node* Internals::touchNodeAdjustedToBestClickableNode(
|
| EventHandler& eventHandler = document->frame()->eventHandler();
|
| IntPoint hitTestPoint = document->frame()->view()->rootFrameToContents(point);
|
| HitTestResult result = eventHandler.hitTestResultAtPoint(
|
| - hitTestPoint, HitTestRequest::ReadOnly | HitTestRequest::Active |
|
| - HitTestRequest::ListBased,
|
| + hitTestPoint,
|
| + HitTestRequest::ReadOnly | HitTestRequest::Active |
|
| + HitTestRequest::ListBased,
|
| LayoutSize(radius));
|
|
|
| Node* targetNode = 0;
|
| @@ -1367,8 +1371,9 @@ DOMPoint* Internals::touchPositionAdjustedToBestContextMenuNode(
|
| EventHandler& eventHandler = document->frame()->eventHandler();
|
| IntPoint hitTestPoint = document->frame()->view()->rootFrameToContents(point);
|
| HitTestResult result = eventHandler.hitTestResultAtPoint(
|
| - hitTestPoint, HitTestRequest::ReadOnly | HitTestRequest::Active |
|
| - HitTestRequest::ListBased,
|
| + hitTestPoint,
|
| + HitTestRequest::ReadOnly | HitTestRequest::Active |
|
| + HitTestRequest::ListBased,
|
| LayoutSize(radius));
|
|
|
| Node* targetNode = 0;
|
| @@ -1404,8 +1409,9 @@ Node* Internals::touchNodeAdjustedToBestContextMenuNode(
|
| EventHandler& eventHandler = document->frame()->eventHandler();
|
| IntPoint hitTestPoint = document->frame()->view()->rootFrameToContents(point);
|
| HitTestResult result = eventHandler.hitTestResultAtPoint(
|
| - hitTestPoint, HitTestRequest::ReadOnly | HitTestRequest::Active |
|
| - HitTestRequest::ListBased,
|
| + hitTestPoint,
|
| + HitTestRequest::ReadOnly | HitTestRequest::Active |
|
| + HitTestRequest::ListBased,
|
| LayoutSize(radius));
|
|
|
| Node* targetNode = 0;
|
|
|