summaryrefslogtreecommitdiffstats
path: root/browser/extensions/formautofill/test/fixtures/without_autocomplete_address_basic.html
diff options
context:
space:
mode:
Diffstat (limited to 'browser/extensions/formautofill/test/fixtures/without_autocomplete_address_basic.html')
-rw-r--r--browser/extensions/formautofill/test/fixtures/without_autocomplete_address_basic.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/browser/extensions/formautofill/test/fixtures/without_autocomplete_address_basic.html b/browser/extensions/formautofill/test/fixtures/without_autocomplete_address_basic.html
new file mode 100644
index 0000000000..a69b65f1d7
--- /dev/null
+++ b/browser/extensions/formautofill/test/fixtures/without_autocomplete_address_basic.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>Form Autofill Address Demo Page</title>
+</head>
+<body>
+ <h1>Form Autofill Address Demo Page (without autocomplete attribute)</h1>
+ <form id="form">
+ <p><label>givenname: <input type="text" id="given-name" name="given-name"/></label></p>
+ <p><label>familyname: <input type="text" id="family-name" name="family-name"/></label></p>
+ <p><label>organization: <input type="text" id="organization" name="organization"/></label></p>
+ <p><label>streetAddress: <input type="text" id="street-address" name="street-address"/></label></p>
+ <p><label>addressLevel2: <input type="text" id="address-level2" name="address-level2"/></label></p>
+ <p><label>addressLevel1: <input type="text" id="address-level1" name="address-level1"/></label></p>
+ <p><label>postalCode: <input type="text" id="postal-code" name="postal-code"/></label></p>
+ <p><label>country: <input type="text" id="country" name="country"/></label></p>
+ <p><label>tel: <input type="text" id="tel" name="tel"/></label></p>
+ <p><label>email: <input type="text" id="email" name="email"/></label></p>
+ <p>
+ <input type="submit"/>
+ <button type="reset">Reset</button>
+ </p>
+ </form>
+</body>
+</html>