Bug 995753 - Remove nsIDOMHTMLByteRanges; r=khuey

This commit is contained in:
Ehsan Akhgari 2014-04-13 18:52:48 -04:00
parent 7c91c6d354
commit f0b0cc0e62
2 changed files with 0 additions and 28 deletions

View File

@ -13,7 +13,6 @@ XPIDL_SOURCES += [
'nsIDOMHTMLBodyElement.idl',
'nsIDOMHTMLBRElement.idl',
'nsIDOMHTMLButtonElement.idl',
'nsIDOMHTMLByteRanges.idl',
'nsIDOMHTMLCanvasElement.idl',
'nsIDOMHTMLCollection.idl',
'nsIDOMHTMLDirectoryElement.idl',

View File

@ -1,27 +0,0 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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/. */
#include "domstubs.idl"
[scriptable, uuid(992c540c-4d81-42df-80a6-f71ede2b59d8)]
interface nsIDOMHTMLByteRanges : nsISupports
{
/* The number of ranges represented by the object */
readonly attribute unsigned long length;
/* The start(index) method must return the position of the first
byte of the indexth range represented by the object. */
unsigned long start(in unsigned long index);
/* The end(index) method must return the position of the byte
immediately after the last byte of the indexth range represented
by the object. (The byte position returned by this method is not
in the range itself. If the first byte of the range is the byte
at position 0, and the entire stream of bytes is in the range,
then the value of the position of the byte returned by this
method for that range will be the same as the number of bytes in
the stream.) */
unsigned long end(in unsigned long index);
};