Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/textarea-align.html

Issue 1522803002: Move textarea-related tests to fast/forms/textarea/, part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@color-uaf
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/forms/textarea-align.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-align.html b/third_party/WebKit/LayoutTests/fast/forms/textarea-align.html
deleted file mode 100644
index b159ab9f2b74fc4148a86665ce02656f1d0bdeab..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/textarea-align.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<html>
-<head>
- <title>Align in textarea Test</title>
-</head>
-<body>
- <p>The following textarea elements should all be rendered on the left, with their text aligned to the left.</p>
- <textarea align="right" cols="50">This is should be aligned to the left.</textarea>
- <br>
- <textarea align="left" cols="50">This is should be aligned to the left.</textarea>
- <br>
- <textarea cols="50">This is should be aligned to the left.</textarea>
-
- <br>
- <textarea cols="50" id="test1">This is should be aligned to the left.</textarea>
- <script>
- <!--
- var obj1 = document.getElementById('test1');
- obj1.setAttribute('align', 'right');
- -->
- </script>
-
- <div id='insertionpoint'></div>
- <script>
- <!--
- var ins = document.getElementById('insertionpoint');
- var obj2 = document.createElement('TEXTAREA');
- obj2.setAttribute('align', 'right');
- obj2.setAttribute('cols', '50');
- obj2.appendChild(document.createTextNode('This is should be aligned to the left.'));
- ins.appendChild(obj2);
- //-->
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698