diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-12-04 13:11:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-04 13:11:04 -0800 |
commit | 07a3e9b2266c87493cb70c6f50e36a0d2dfe8a66 (patch) | |
tree | 3e76d24194095d04e2d1434fa4e02a4435fea969 | |
parent | 85f569bd67b5bb62f4d9eea7c328dfa7e89e87ea (diff) | |
parent | fe9b3a78317840f622658e9b7577f5630635294a (diff) | |
download | servo-07a3e9b2266c87493cb70c6f50e36a0d2dfe8a66.tar.gz servo-07a3e9b2266c87493cb70c6f50e36a0d2dfe8a66.zip |
Auto merge of #14454 - frewsxcv:named-browsing-context-tracking, r=Ms2ger
Add tracking issues for DOM APIs related to 'browsing context names'.
https://github.com/servo/servo/issues/14453
<!-- 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/14454)
<!-- Reviewable:end -->
-rw-r--r-- | components/script/dom/webidls/HTMLIFrameElement.webidl | 5 | ||||
-rw-r--r-- | components/script/dom/webidls/Window.webidl | 9 |
2 files changed, 11 insertions, 3 deletions
diff --git a/components/script/dom/webidls/HTMLIFrameElement.webidl b/components/script/dom/webidls/HTMLIFrameElement.webidl index d12935c7811..330453d9f8c 100644 --- a/components/script/dom/webidls/HTMLIFrameElement.webidl +++ b/components/script/dom/webidls/HTMLIFrameElement.webidl @@ -6,7 +6,10 @@ interface HTMLIFrameElement : HTMLElement { attribute DOMString src; // attribute DOMString srcdoc; - // attribute DOMString name; + + // https://github.com/servo/servo/issues/14453 + // attribute DOMString name; + [SameObject, PutForwards=value] readonly attribute DOMTokenList sandbox; // attribute boolean seamless; diff --git a/components/script/dom/webidls/Window.webidl b/components/script/dom/webidls/Window.webidl index 5e7e08d4b18..dbc4b76591e 100644 --- a/components/script/dom/webidls/Window.webidl +++ b/components/script/dom/webidls/Window.webidl @@ -9,7 +9,10 @@ [Unforgeable] readonly attribute WindowProxy window; [BinaryName="Self_", Replaceable] readonly attribute WindowProxy self; [Unforgeable] readonly attribute Document document; - // attribute DOMString name; + + // https://github.com/servo/servo/issues/14453 + // attribute DOMString name; + [/*PutForwards=href, */Unforgeable] readonly attribute Location location; readonly attribute History history; //[Replaceable] readonly attribute BarProp locationbar; @@ -35,7 +38,9 @@ //WindowProxy open(optional DOMString url = "about:blank", optional DOMString target = "_blank", // optional DOMString features = "", optional boolean replace = false); //getter WindowProxy (unsigned long index); - //getter object (DOMString name); + + // https://github.com/servo/servo/issues/14453 + // getter object (DOMString name); // the user agent readonly attribute Navigator navigator; |