Auto merge of #8178 - frewsxcv:label, r=nox

Implement a couple attributes for <label> elements



<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8178)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-10-26 09:51:56 -05:00
commit af8a1cb8a0
9 changed files with 81 additions and 199 deletions

View file

@ -6,6 +6,6 @@
// https://html.spec.whatwg.org/multipage/#htmllabelelement
interface HTMLLabelElement : HTMLElement {
readonly attribute HTMLFormElement? form;
// attribute DOMString htmlFor;
//readonly attribute HTMLElement? control;
attribute DOMString htmlFor;
readonly attribute HTMLElement? control;
};