Index: LayoutTests/fast/dom/HTMLInputElement/input-type-attribute-expected.txt |
diff --git a/LayoutTests/fast/dom/HTMLInputElement/input-type-attribute-expected.txt b/LayoutTests/fast/dom/HTMLInputElement/input-type-attribute-expected.txt |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d2e93f4e85a2054e68434103c8f3d63568f0c4e8 |
--- /dev/null |
+++ b/LayoutTests/fast/dom/HTMLInputElement/input-type-attribute-expected.txt |
@@ -0,0 +1,24 @@ |
+HTMLInputElement type attribute test |
+ |
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
+ |
+ |
+PASS input.type is "text" |
+PASS input.getAttribute('type') is null |
+PASS input.setAttribute('type', '-1'); input.type is "text" |
+PASS input.setAttribute('type', 'foo'); input.getAttribute('type') is "foo" |
+PASS input.type = 'x-unknown'; input.type is "text" |
+PASS input.type = 'x-unknown'; input.getAttribute('type') is "x-unknown" |
+PASS input.type = ''; input.type is "text" |
+PASS input.type = ''; input.getAttribute('type') is "" |
+PASS input.setAttribute('type', ''); input.type is "text" |
+PASS input.setAttribute('type', ''); input.getAttribute('type') is "" |
+PASS input.removeAttribute('type'); input.type is "text" |
+PASS input.removeAttribute('type'); input.getAttribute('type') is null |
+PASS input.setAttribute('type', 'rANGE'); input.type is "range" |
+PASS input.setAttribute('type', 'Range'); input.getAttribute('type') is "Range" |
+PASS input.setAttribute('type', 'rANGEr'); input.type is "text" |
+PASS successfullyParsed is true |
+ |
+TEST COMPLETE |
+ |