| Index: third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_default.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_default.html b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_default.html
|
| index a0eceba8be185a98742ee9d97c97fb14f3bb6e48..4a2e1ac12aff4e7a355f67d4689098b7c40e2580 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_default.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_default.html
|
| @@ -21,7 +21,7 @@ function testCaptureValue(captureValue, expectedValue, test) {
|
|
|
| test(function(t) { testCaptureValue(true, Event.CAPTURING_PHASE, t); }, "True value");
|
| test(function(t) { testCaptureValue(false, Event.BUBBLING_PHASE, t); }, "False value");
|
| -test(function(t) { testCaptureValue({}, internals.runtimeFlags.eventListenerOptionsEnabled ? Event.BUBBLING_PHASE : Event.CAPTURING_PHASE, t); }, "Empty object");
|
| +test(function(t) { testCaptureValue({}, Event.BUBBLING_PHASE, t); }, "Empty object");
|
| test(function(t) { testCaptureValue(null, Event.BUBBLING_PHASE, t); }, "Null object");
|
| test(function(t) { testCaptureValue(undefined, Event.BUBBLING_PHASE, t); }, "Undefined object");
|
| test(function(t) { testCaptureValue(2.3, Event.CAPTURING_PHASE, t); }, "Positive value");
|
|
|