| Index: third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.html b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.html
|
| index 7dae55b97bad4ad05ce5c3f91df35f2274624e20..c89e6af74b079e99088346a6e5ca31754bb658f5 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/capture_equality.html
|
| @@ -14,9 +14,9 @@ function testOptionEquality(addOptionValue, removeOptionValue, test) {
|
| test.done();
|
| }
|
|
|
| -test(function(t) { testOptionEquality({}, !internals.runtimeFlags.eventListenerOptionsEnabled, t); }, "Empty object");
|
| -test(function(t) { testOptionEquality({'capture': false}, !internals.runtimeFlags.eventListenerOptionsEnabled, t); }, "Capture false");
|
| +test(function(t) { testOptionEquality({}, false, t); }, "Empty object");
|
| +test(function(t) { testOptionEquality({'capture': false}, false, t); }, "Capture false");
|
| test(function(t) { testOptionEquality({'capture': true}, true, t); }, "Capture true");
|
| -test(function(t) { testOptionEquality({'dummy': true}, !internals.runtimeFlags.eventListenerOptionsEnabled, t); }, "Non-empty object");
|
| +test(function(t) { testOptionEquality({'dummy': true}, false, t); }, "Non-empty object");
|
|
|
| </script>
|
|
|