| Index: LayoutTests/imported/web-platform-tests/html/semantics/forms/the-textarea-element/textarea-type.html | 
| diff --git a/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-textarea-element/textarea-type.html b/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-textarea-element/textarea-type.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..811fb2eb8fe25d27b952a7ec078413529be9716e | 
| --- /dev/null | 
| +++ b/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-textarea-element/textarea-type.html | 
| @@ -0,0 +1,16 @@ | 
| +<!DOCTYPE HTML> | 
| +<title>The type IDL attribute</title> | 
| +<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> | 
| +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-textarea-type"> | 
| +<script src="../../../../../../resources/testharness.js"></script> | 
| +<script src="../../../../../../resources/testharnessreport.js"></script> | 
| +<div id="test"> | 
| +<textarea></textarea> | 
| +</div> | 
| +<script> | 
| +test(function() { | 
| +  assert_equals(document.getElementById("test") | 
| +                        .getElementsByTagName("textarea")[0].type, | 
| +                "textarea"); | 
| +}, "Textarea's type attribute should return 'textarea'"); | 
| +</script> | 
|  |