| Index: third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/the-input-element/checkbox.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/the-input-element/checkbox.html b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/the-input-element/checkbox.html
|
| index 8f6609c7d2d9ada609250a1d741f29780b83c317..ef0e41f623feb10695f41457bb7334134f42a4a3 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/the-input-element/checkbox.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/the-input-element/checkbox.html
|
| @@ -34,13 +34,14 @@
|
| c1_click_fired = true;
|
| assert_false(c1_input_fired, "click event should fire before input event");
|
| assert_false(c1_change_fired, "click event should fire before change event");
|
| + assert_false(e.isTrusted, "click()-initiated click event should not be trusted");
|
| });
|
| checkbox1.oninput = t1.step_func(function(e) {
|
| c1_input_fired = true;
|
| assert_true(c1_click_fired, "input event should fire after click event");
|
| assert_false(c1_change_fired, "input event should fire before change event");
|
| assert_true(e.bubbles, "event should bubble");
|
| - assert_false(e.isTrusted, "click()-initiated event should not be trusted");
|
| + assert_true(e.isTrusted, "click()-initiated event should be trusted");
|
| assert_false(e.cancelable, "event should not be cancelable");
|
| assert_true(checkbox1.checked, "checkbox is checked");
|
| assert_false(checkbox1.indeterminate, "checkbox is not indeterminate");
|
| @@ -51,7 +52,7 @@
|
| assert_true(c1_click_fired, "change event should fire after click event");
|
| assert_true(c1_input_fired, "change event should fire after input event");
|
| assert_true(e.bubbles, "event should bubble")
|
| - assert_false(e.isTrusted, "click()-initiated event should not be trusted");
|
| + assert_true(e.isTrusted, "click()-initiated event should be trusted");
|
| assert_false(e.cancelable, "event should not be cancelable");
|
| assert_true(checkbox1.checked, "checkbox is checked");
|
| assert_false(checkbox1.indeterminate, "checkbox is not indeterminate");
|
|
|