Skip to content

Commit

Permalink
Removed references to DOMSettableTokenList
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgs committed Jun 5, 2016
1 parent 573c0a7 commit a121437
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion components/script/dom/webidls/HTMLAnchorElement.webidl
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion components/script/dom/webidls/HTMLAreaElement.webidl
Expand Up @@ -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
Expand Down
5 changes: 1 addition & 4 deletions components/script/dom/webidls/HTMLElement.webidl
Expand Up @@ -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

Expand All @@ -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();
Expand Down
1 change: 0 additions & 1 deletion components/script/dom/webidls/HTMLIFrameElement.webidl
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion components/script/dom/webidls/HTMLLinkElement.webidl
Expand Up @@ -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
};
Expand Down
2 changes: 1 addition & 1 deletion components/script/dom/webidls/HTMLOutputElement.webidl
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion components/script/dom/webidls/HTMLTableCellElement.webidl
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions tests/wpt/metadata/dom/interface-objects.html.ini
Expand Up @@ -3,6 +3,3 @@
[Should be able to delete DOMStringList.]
expected: FAIL

[Should be able to delete DOMSettableTokenList.]
expected: FAIL

0 comments on commit a121437

Please sign in to comment.