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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-form-element/form-autocomplete.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months 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/imported/web-platform-tests/html/semantics/forms/the-form-element/form-autocomplete.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-form-element/form-autocomplete.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-form-element/form-autocomplete.html
deleted file mode 100644
index b067578a82bc2957eb0730333a1383a425886d32..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-form-element/form-autocomplete.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<!DOCTYPE html>
-<meta charset=utf-8>
-<title>form autocomplete attribute</title>
-<link rel="author" title="Denis Ah-Kang" href="mailto:denis@w3.org">
-<link rel=help href="https://html.spec.whatwg.org/multipage/#the-form-element">
-<link rel=help href="https://html.spec.whatwg.org/multipage/#attr-fe-autocomplete">
-<script src="../../../../../../resources/testharness.js"></script>
-<script src="../../../../../../resources/testharnessreport.js"></script>
-<div id="log"></div>
-<form name="missing_attribute">
- <input>
- <input autocomplete="on">
- <input autocomplete="off">
- <input autocomplete="foobar">
-</form>
-<form name="autocomplete_on" autocomplete="on">
- <input>
- <input autocomplete="on">
- <input autocomplete="off">
- <input autocomplete="foobar">
-</form>
-<form name="autocomplete_off" autocomplete="off">
- <input>
- <input autocomplete="on">
- <input autocomplete="off">
- <input autocomplete="foobar">
-</form>
-<form name="autocomplete_invalid" autocomplete="foobar">
- <input>
- <input autocomplete="on">
- <input autocomplete="off">
- <input autocomplete="foobar">
-</form>
-<script>
- function autocompletetest(form, expectedValues, desc) {
- test(function(){
- assert_equals(form.autocomplete, expectedValues[0]);
- assert_equals(form.elements[0].autocomplete, expectedValues[1]);
- assert_equals(form.elements[1].autocomplete, expectedValues[2]);
- assert_equals(form.elements[2].autocomplete, expectedValues[3]);
- assert_equals(form.elements[3].autocomplete, expectedValues[4]);
- }, desc);
- }
-
- autocompletetest(document.forms.missing_attribute, ["on", "on", "on", "off", ""], "form autocomplete attribute missing");
- autocompletetest(document.forms.autocomplete_on, ["on", "on", "on", "off", ""], "form autocomplete attribute on");
- autocompletetest(document.forms.autocomplete_off, ["off", "off", "on", "off", ""], "form autocomplete attribute off");
- autocompletetest(document.forms.autocomplete_invalid, ["on", "on", "on", "off", ""], "form autocomplete attribute invalid");
-
- var keywords = [ "name", "honorific-prefix", "given-name", "additional-name", "family-name", "honorific-suffix", "nickname", "username", "new-password", "current-password", "organization-title", "organization", "street-address", "address-line1", "address-line2", "address-line3", "address-level4", "address-level3", "address-level2", "address-level1", "country", "country-name", "postal-code", "cc-name", "cc-given-name", "cc-additional-name", "cc-family-name", "cc-number", "cc-exp", "cc-exp-month", "cc-exp-year", "cc-csc", "cc-type", "transaction-currency", "transaction-amount", "language", "bday", "bday-day", "bday-month", "bday-year", "sex", "url", "photo", "tel", "tel-country-code", "tel-national", "tel-area-code", "tel-local", "tel-local-prefix", "tel-local-suffix", "tel-extension", "email", "impp" ];
-
- keywords.forEach(function(keyword) {
- test(function(){
- var input = document.createElement("input");
- input.setAttribute("autocomplete", keyword);
- assert_equals(input.autocomplete, keyword);
- }, keyword + " is an allowed autocomplete field name");
- });
-</script>

Powered by Google App Engine
This is Rietveld 408576698