| Index: third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html b/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html
|
| index 4ffc872e21753c238545ee104c19e80c75c3ce5d..933dffe11e8e539daaba9fb81d7f64f7b715c0f1 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html
|
| @@ -75,10 +75,10 @@ test(function() {
|
| selection.collapse(txt, 0);
|
| selection.extend(txt, 1);
|
| testExecCommandInputType('removeFormat', null, 'formatRemove');
|
| - assert_equals(txt.innerHTML, '<div>abc</div>');
|
| + assert_equals(txt.innerHTML, '<div style="">abc</div>');
|
| testExecCommandInputType('indent', null, 'formatIndent');
|
| testExecCommandInputType('outdent', null, 'formatOutdent');
|
| - assert_equals(txt.innerHTML, '<div>abc</div>');
|
| + assert_equals(txt.innerHTML, '<div style="">abc</div>');
|
|
|
| // Copy shouldn't fire 'input'.
|
| testExecCommandInputType('copy', null, NO_INPUT_EVENT_FIRED);
|
|
|