From 93220523b0a76345bc2749bdba33bcef040d66c0 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 20 Jun 2014 18:57:47 +0200 Subject: [PATCH] Make AttrList NoInterfaceObject (fixes #1223). --- src/components/script/dom/webidls/AttrList.webidl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/script/dom/webidls/AttrList.webidl b/src/components/script/dom/webidls/AttrList.webidl index d37bb53a3b8..f9419f5ef62 100644 --- a/src/components/script/dom/webidls/AttrList.webidl +++ b/src/components/script/dom/webidls/AttrList.webidl @@ -2,7 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +[NoInterfaceObject] interface AttrList { readonly attribute unsigned long length; getter Attr? item(unsigned long index); -}; \ No newline at end of file +};