Auto merge of #9119 - TheKK:input_element_size, r=eefriedman

Parse size attribute of HTMLInputElemnt correctly

Should fix #8773

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9119)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-01-06 08:57:19 +05:30
commit 64e968d8bc
4 changed files with 5058 additions and 6 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,8 @@
<!doctype html>
<meta charset="utf-8">
<title>Unrecognized type should fallback as text type</title>
<link rel="match" href="unrecognized-type-should-fallback-as-text-type-ref.html">
<body>
<input type="text">
<input type="text">
</body>

View file

@ -0,0 +1,8 @@
<!doctype html>
<meta charset="utf-8">
<title>Unrecognized type should fallback as text type</title>
<link rel="match" href="unrecognized-type-should-fallback-as-text-type-ref.html">
<body>
<input>
<input type="unknown">
</body>