diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-08-31 21:17:54 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-08-31 21:17:54 -0600 |
commit | 4984aaf8bfca0698a132e10e9f48cef42d1b8302 (patch) | |
tree | c48c7a8646a5b72d29a54d16af0380fc6baee9ed /components/script/dom/htmliframeelement.rs | |
parent | dee6283483a79b034565a6f9ad979f87c2765f78 (diff) | |
parent | 3a1d140ab5c26415b8fa0764bd8aa688f0b23636 (diff) | |
download | servo-4984aaf8bfca0698a132e10e9f48cef42d1b8302.tar.gz servo-4984aaf8bfca0698a132e10e9f48cef42d1b8302.zip |
Auto merge of #7483 - frewsxcv:macro-spec-links, r=jdm
Enforce linking to spec for method implementations via macros
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7483)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index 6abf4f7b877..e4665847468 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -339,12 +339,14 @@ impl HTMLIFrameElementMethods for HTMLIFrameElement { Err(NotSupported) } + // https://html.spec.whatwg.org/multipage/#dom-dim-width make_getter!(Width); - + // https://html.spec.whatwg.org/multipage/#dom-dim-width make_setter!(SetWidth, "width"); + // https://html.spec.whatwg.org/multipage/#dom-dim-height make_getter!(Height); - + // https://html.spec.whatwg.org/multipage/#dom-dim-height make_setter!(SetHeight, "height"); } |