Auto merge of #12524 - canaltinova:alignment-fix, r=jdm

Fix input alignment test reference

<!-- Please describe your changes on the following line: -->
In #10249 I added a ref test about text alignment in input element. But we couldn't delete the `float: left;` styled div because of a bug addressed here: #10280 . But it seems fixed now and we can finally remove the floated div in the reference file. Test is still passing.

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12524)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-07-21 08:40:38 -05:00 committed by GitHub
commit f560b02fcb

View file

@ -2,11 +2,8 @@
<html> <html>
<head> <head>
<title>Input elements shouldn't inherit parent containers alignment</title> <title>Input elements shouldn't inherit parent containers alignment</title>
<style>
div { float: left; }
</style>
</head> </head>
<body> <body>
<div><input value="test" /></div> <input value="test" />
</body> </body>
</html> </html>