diff options
author | Kosov Eugene <claprix@yandex.ru> | 2016-06-04 11:20:17 +0300 |
---|---|---|
committer | Kosov Eugene <claprix@yandex.ru> | 2016-06-05 06:25:53 +0300 |
commit | a121437f875c5034174acc70a54ff47e192bcfd5 (patch) | |
tree | e12d712a77bdcd3fa49c6dcfb096c8175e6bc201 /components/script/dom | |
parent | 573c0a74684dc0043da4800a84065d72453641fd (diff) | |
download | servo-a121437f875c5034174acc70a54ff47e192bcfd5.tar.gz servo-a121437f875c5034174acc70a54ff47e192bcfd5.zip |
Removed references to DOMSettableTokenList
Diffstat (limited to 'components/script/dom')
7 files changed, 6 insertions, 10 deletions
diff --git a/components/script/dom/webidls/HTMLAnchorElement.webidl b/components/script/dom/webidls/HTMLAnchorElement.webidl index ddfc155cc1f..f78d1dae6dd 100644 --- a/components/script/dom/webidls/HTMLAnchorElement.webidl +++ b/components/script/dom/webidls/HTMLAnchorElement.webidl @@ -14,7 +14,7 @@ interface HTMLAnchorElement : HTMLElement { attribute DOMString target; // attribute DOMString download; - //[PutForwards=value] attribute DOMSettableTokenList ping; + // attribute USVString ping; // attribute DOMString rel; readonly attribute DOMTokenList relList; // attribute DOMString hreflang; diff --git a/components/script/dom/webidls/HTMLAreaElement.webidl b/components/script/dom/webidls/HTMLAreaElement.webidl index 6f1a6891518..14883df3613 100644 --- a/components/script/dom/webidls/HTMLAreaElement.webidl +++ b/components/script/dom/webidls/HTMLAreaElement.webidl @@ -9,7 +9,7 @@ interface HTMLAreaElement : HTMLElement { // attribute DOMString shape; // attribute DOMString target; // attribute DOMString download; - //[PutForwards=value] attribute DOMSettableTokenList ping; + // attribute USVString ping; // attribute DOMString rel; readonly attribute DOMTokenList relList; // hreflang and type are not reflected diff --git a/components/script/dom/webidls/HTMLElement.webidl b/components/script/dom/webidls/HTMLElement.webidl index 19222109d63..188c0421154 100644 --- a/components/script/dom/webidls/HTMLElement.webidl +++ b/components/script/dom/webidls/HTMLElement.webidl @@ -13,10 +13,7 @@ interface HTMLElement : Element { // microdata // attribute boolean itemScope; - //[PutForwards=value] readonly attribute DOMSettableTokenList itemType; // attribute DOMString itemId; - //[PutForwards=value] readonly attribute DOMSettableTokenList itemRef; - //[PutForwards=value] readonly attribute DOMSettableTokenList itemProp; //readonly attribute HTMLPropertiesCollection properties; // attribute any itemValue; // acts as DOMString on setting @@ -29,7 +26,7 @@ interface HTMLElement : Element { // attribute DOMString accessKey; //readonly attribute DOMString accessKeyLabel; // attribute boolean draggable; - //[PutForwards=value] readonly attribute DOMSettableTokenList dropzone; + //[SameObject, PutForwards=value] readonly attribute DOMTokenList dropzone; // attribute HTMLMenuElement? contextMenu; // attribute boolean spellcheck; //void forceSpellCheck(); diff --git a/components/script/dom/webidls/HTMLIFrameElement.webidl b/components/script/dom/webidls/HTMLIFrameElement.webidl index 0d78b56fb98..65ccbe84048 100644 --- a/components/script/dom/webidls/HTMLIFrameElement.webidl +++ b/components/script/dom/webidls/HTMLIFrameElement.webidl @@ -7,7 +7,6 @@ interface HTMLIFrameElement : HTMLElement { attribute DOMString src; // attribute DOMString srcdoc; // attribute DOMString name; - //[PutForwards=value] readonly attribute DOMSettableTokenList sandbox; attribute DOMString sandbox; // attribute boolean seamless; // attribute boolean allowFullscreen; diff --git a/components/script/dom/webidls/HTMLLinkElement.webidl b/components/script/dom/webidls/HTMLLinkElement.webidl index 1bcf2e727f2..8c1bf496590 100644 --- a/components/script/dom/webidls/HTMLLinkElement.webidl +++ b/components/script/dom/webidls/HTMLLinkElement.webidl @@ -11,7 +11,7 @@ interface HTMLLinkElement : HTMLElement { attribute DOMString media; attribute DOMString hreflang; attribute DOMString type; - //[PutForwards=value] readonly attribute DOMSettableTokenList sizes; + // [SameObject, PutForwards=value] readonly attribute DOMTokenList sizes; // also has obsolete members }; diff --git a/components/script/dom/webidls/HTMLOutputElement.webidl b/components/script/dom/webidls/HTMLOutputElement.webidl index 9506d56df65..f0baeb8fa03 100644 --- a/components/script/dom/webidls/HTMLOutputElement.webidl +++ b/components/script/dom/webidls/HTMLOutputElement.webidl @@ -4,7 +4,7 @@ // https://html.spec.whatwg.org/multipage/#htmloutputelement interface HTMLOutputElement : HTMLElement { - //[PutForwards=value] readonly attribute DOMSettableTokenList htmlFor; + // [SameObject, PutForwards=value] readonly attribute DOMTokenList htmlFor; readonly attribute HTMLFormElement? form; // attribute DOMString name; diff --git a/components/script/dom/webidls/HTMLTableCellElement.webidl b/components/script/dom/webidls/HTMLTableCellElement.webidl index bbb04109d09..33863b3dc20 100644 --- a/components/script/dom/webidls/HTMLTableCellElement.webidl +++ b/components/script/dom/webidls/HTMLTableCellElement.webidl @@ -7,7 +7,7 @@ interface HTMLTableCellElement : HTMLElement { attribute unsigned long colSpan; // attribute unsigned long rowSpan; - //[PutForwards=value] readonly attribute DOMSettableTokenList headers; + // attribute DOMString headers; readonly attribute long cellIndex; // also has obsolete members |