| Index: third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/script-tests/htmloutputelement-reset-event.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/script-tests/htmloutputelement-reset-event.js b/third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/script-tests/htmloutputelement-reset-event.js
|
| deleted file mode 100644
|
| index 4d62d92bef3f7893f92c93d6a232ad25d060dcb0..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/script-tests/htmloutputelement-reset-event.js
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -description('A Test for sending a reset event to output elements.');
|
| -
|
| -var form = document.createElement('form');
|
| -var output = document.createElement('output');
|
| -output.defaultValue = 'defaultValue';
|
| -form.appendChild(output);
|
| -
|
| -debug('- Sets the value attribute of the output element.');
|
| -output.value = 'aValue';
|
| -shouldBeEqualToString('output.defaultValue', 'defaultValue');
|
| -shouldBeEqualToString('output.value', 'aValue');
|
| -shouldBeEqualToString('output.innerText', 'aValue');
|
| -shouldBeEqualToString('output.innerHTML', 'aValue');
|
| -
|
| -debug('- Sends a reset event to reset the value to the default value.');
|
| -form.reset();
|
| -shouldBeEqualToString('output.defaultValue', 'defaultValue');
|
| -shouldBeEqualToString('output.value', 'defaultValue');
|
| -shouldBeEqualToString('output.innerText', 'defaultValue');
|
| -shouldBeEqualToString('output.innerHTML', 'defaultValue');
|
| -
|
| -debug('- Ensures that the value mode flags is in mode "default".');
|
| -output.defaultValue = 'another defaultValue';
|
| -shouldBeEqualToString('output.defaultValue', 'another defaultValue');
|
| -shouldBeEqualToString('output.value', 'another defaultValue');
|
| -shouldBeEqualToString('output.innerText', 'another defaultValue');
|
| -shouldBeEqualToString('output.innerHTML', 'another defaultValue');
|
|
|