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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/textarea-rows-cols-expected.txt

Issue 1524663002: Move textarea-related tests to fast/forms/textarea/, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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-rows-cols-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-rows-cols-expected.txt b/third_party/WebKit/LayoutTests/fast/forms/textarea-rows-cols-expected.txt
deleted file mode 100644
index 302c3a2ee2eded1fbf1500224910501e1334a4c4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/textarea-rows-cols-expected.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-Test for edge cases of <textarea> rows and cols attributes.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-Default values
-PASS defaultRows is 2
-PASS defaultCols is 20
-PASS defaultHeight > 0 is true
-PASS defaultWidth > 0 is true
-rows = 1
-PASS textarea.rows is 1
-PASS textarea.offsetHeight > 0 is true
-PASS textarea.offsetHeight < defaultHeight is true
-PASS textarea.offsetWidth is defaultWidth
-rows = 2; should match default height
-PASS textarea.rows is defaultRows
-PASS textarea.offsetHeight is defaultHeight
-PASS textarea.offsetWidth is defaultWidth
-rows = 3
-PASS textarea.rows is 3
-PASS textarea.offsetHeight > defaultHeight is true
-PASS textarea.offsetWidth is defaultWidth
-rows; should be default height
-PASS textarea.rows is defaultRows
-PASS textarea.offsetHeight is defaultHeight
-PASS textarea.offsetWidth is defaultWidth
-rows = 0; should be default height
-PASS textarea.rows is defaultRows
-PASS textarea.offsetHeight is defaultHeight
-PASS textarea.offsetWidth is defaultWidth
-rows = -1; should be default height
-PASS textarea.rows is defaultRows
-PASS textarea.offsetHeight is defaultHeight
-PASS textarea.offsetWidth is defaultWidth
-rows = x; should be default height
-PASS textarea.rows is defaultRows
-PASS textarea.offsetHeight is defaultHeight
-PASS textarea.offsetWidth is defaultWidth
-cols = 1
-PASS textarea.cols is 1
-PASS textarea.offsetWidth > 0 is true
-PASS textarea.offsetWidth < defaultWidth is true
-PASS textarea.offsetHeight is defaultHeight
-cols = 20; should match default width
-PASS textarea.cols is defaultCols
-PASS textarea.offsetWidth is defaultWidth
-PASS textarea.offsetHeight is defaultHeight
-cols = 40
-PASS textarea.cols is 40
-PASS textarea.offsetWidth > defaultWidth is true
-PASS textarea.offsetHeight is defaultHeight
-cols; should be default width
-PASS textarea.cols is defaultCols
-PASS textarea.offsetWidth is defaultWidth
-PASS textarea.offsetHeight is defaultHeight
-cols = 0; should be default width
-PASS textarea.cols is defaultCols
-PASS textarea.offsetWidth is defaultWidth
-PASS textarea.offsetHeight is defaultHeight
-cols = -1; should be default width
-PASS textarea.cols is defaultCols
-PASS textarea.offsetWidth is defaultWidth
-PASS textarea.offsetHeight is defaultHeight
-cols = x; should be default width
-PASS textarea.cols is defaultCols
-PASS textarea.offsetWidth is defaultWidth
-PASS textarea.offsetHeight is defaultHeight
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698