- From: Cameron McCormack <cam@mcc.id.au>
- Date: Thu, 1 Jan 2009 20:14:06 +1100
The >1 argument version of Window::showModalDialog() is missing a [Variadic] on the second argument: interface Window { ? any showModalDialog(in DOMString url); any showModalDialog(in DOMString url, in any arguments); ? }; Since no arguments need be passed for those designated with [Variadic], the two operations could just be combined into one: interface Window { ? any showModalDialog(in DOMString url, [Variadic] in any arguments); ? }; -- Cameron McCormack ? http://mcc.id.au/
Received on Thursday, 1 January 2009 01:14:06 UTC