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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/option-value-trim-html-spaces.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (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/option-value-trim-html-spaces.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/option-value-trim-html-spaces.html b/third_party/WebKit/LayoutTests/fast/forms/option-value-trim-html-spaces.html
deleted file mode 100644
index 889800e6b451049473b927ceea800d2495f9b82e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/option-value-trim-html-spaces.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-
-<select>
-<option id="o1"> text with extra while spaces </option>
-<option id="o2"> text </option>
-<option id="o3">&nbsp;test&nbsp;text&nbsp;</option>
-<option id="o4"> test&nbsp;&nbsp;text </option>
-</select>
-
-<script>
-description('Test for space striping .value attribute of OPTION element');
-
-var o1 = document.getElementById('o1');
-shouldBe('o1.value', '"text with extra while spaces"');
-
-var o2 = document.getElementById('o2');
-shouldBe('o2.value', '"text"');
-
-
-var o3 = document.getElementById('o3');
-var expected = '\u00A0'+'test'+'\u00A0'+ 'text'+'\u00A0';
-shouldBe('o3.value','"'+expected+'"');
-
-var o4 = document.getElementById('o4');
-var expected = 'test'+'\u00A0\u00A0'+ 'text';
-shouldBe('o4.value', '"'+expected+'"');
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698