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

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

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-wrap-attribute.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-wrap-attribute.html b/third_party/WebKit/LayoutTests/fast/forms/textarea-wrap-attribute.html
deleted file mode 100644
index 953fae7474cb3df249246753688812caed1d723c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/textarea-wrap-attribute.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-<script>
-description('HTMLTextAreaElement.wrap reflects the wrap="" attribute.<br>It is not "limited to only known values", and it is a DOMString attribute which means it just returns the content attributes\'s value directly.');
-
-
-var textArea = document.createElement('textarea');
-document.body.appendChild(textArea);
-
-debug('If wrap attribute is not specified it sould be empty String.');
-shouldBe('textArea.wrap', "''");
-
-debug('');
-debug('Check if it sets warpAttr value hard, should return hard.');
-textArea.wrap = "hard";
-shouldBe('textArea.wrap', "'hard'");
-
-debug('');
-debug('Check if it sets warpAttr value as soft, should return soft.');
-textArea.wrap = "soft";
-shouldBe('textArea.wrap', "'soft'");
-
-debug('');
-debug('Check if warpAttr present but no keyVal specified, should return empty String.');
-textArea.wrap = "";
-shouldBe('textArea.wrap', "''");
-
-debug('');
-debug('Check if it sets warpAttr invaild value, should return foo.');
-textArea.wrap = "foo";
-shouldBe('textArea.wrap', "'foo'");
-
-debug('');
-</script>
-</body>
-</html>
-
-
-
-

Powered by Google App Engine
This is Rietveld 408576698