| Index: third_party/WebKit/LayoutTests/fast/forms/textarea-trailing-newline.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-trailing-newline.html b/third_party/WebKit/LayoutTests/fast/forms/textarea-trailing-newline.html
|
| deleted file mode 100644
|
| index 9357342bfb8e2d6bcc546334d132013961db691c..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/textarea-trailing-newline.html
|
| +++ /dev/null
|
| @@ -1,17 +0,0 @@
|
| -<script>
|
| -function test()
|
| -{
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| - var ta = document.getElementById("ta");
|
| - ta.focus();
|
| - document.execCommand("InsertLineBreak");
|
| - var result = ta.value;
|
| - if (result == "\n")
|
| - document.write("<p>Hooray, the test was successful!</p>");
|
| - else
|
| - document.write("<p>The test failed, result was '" + result.replace("\n", "\\n") + "'.</p>");
|
| -}
|
| -</script>
|
| -<body onload="test()">
|
| -<p><textarea id="ta"></textarea></p>
|
|
|