summaryrefslogtreecommitdiffstats
path: root/webkit/port/bindings/v8/UndetectableHTMLCollection.idl
blob: bcb2aee0a15814cd4028227e2d217c0be5cf1f4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2008 The Chromium Authors. All rights reserved.  Use of this
// source code is governed by a BSD-style license that can be found in the
// LICENSE file.

module html {

    // This interface is used for undetectable HTMLCollections.
    // An undetectable HTMLCollection behaves like an HTMLCollection
    // when used, but the 'typeof' operator returns undefined and
    // ToBoolean returns false.
    interface UndetectableHTMLCollection : HTMLCollection {
    };

}