Index: core/dom/DOMSettableTokenList.idl |
diff --git a/core/dom/DOMSettableTokenList.idl b/core/dom/DOMSettableTokenList.idl |
index e02dd6950acfff222282743cafc968a26f3ae2f2..b62d9033b7a1390bcf3bbfdbfa6ccb150f9b8faf 100644 |
--- a/core/dom/DOMSettableTokenList.idl |
+++ b/core/dom/DOMSettableTokenList.idl |
@@ -22,8 +22,11 @@ |
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// https://dom.spec.whatwg.org/#interface-domsettabletokenlist |
+ |
interface DOMSettableTokenList : DOMTokenList { |
- [TreatReturnedNullStringAs=Null, ImplementedAs=item] getter DOMString (unsigned long index); |
attribute DOMString value; |
-}; |
+ // FIXME: This getter is not in the spec. |
+ [ImplementedAs=item] getter DOMString? (unsigned long index); |
+}; |