| Index: Source/bindings/tests/idls/TestSpecialOperationsCustom.idl
|
| diff --git a/Source/modules/webdatabase/SQLResultSetRowList.idl b/Source/bindings/tests/idls/TestSpecialOperationsCustom.idl
|
| similarity index 79%
|
| copy from Source/modules/webdatabase/SQLResultSetRowList.idl
|
| copy to Source/bindings/tests/idls/TestSpecialOperationsCustom.idl
|
| index 14fd5cccab4d4ac6efab161afb8e20a21c033487..866675be3c26443c5aacd7d0bbedb9ad601b0038 100644
|
| --- a/Source/modules/webdatabase/SQLResultSetRowList.idl
|
| +++ b/Source/bindings/tests/idls/TestSpecialOperationsCustom.idl
|
| @@ -26,10 +26,11 @@
|
| * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -[
|
| - NoInterfaceObject,
|
| - WillBeGarbageCollected,
|
| -] interface SQLResultSetRowList {
|
| - readonly attribute unsigned long length;
|
| - [Custom] object item(unsigned long index);
|
| +interface TestSpecialOperationsCustom {
|
| + [Custom] getter boolean (unsigned long index);
|
| + [Custom] setter boolean (unsigned long index, Node value);
|
| + [Custom] deleter boolean (unsigned long index);
|
| + [Custom=PropertyGetter|PropertyEnumerator|PropertyQuery] getter Node (DOMString name);
|
| + [Custom] setter Node (DOMString name, Node value);
|
| + [Custom] deleter boolean (DOMString name);
|
| };
|
|
|