Update idltest to use any instead of JsonLdInput
authorMarkus Lanthaler <mark_lanthaler@gmx.net>
Sun, 05 May 2013 18:28:14 +0200
changeset 1628 c7036e6ac261
parent 1627 530d5f77b653
child 1629 cbccbde847ba
Update idltest to use any instead of JsonLdInput
test-suite/idltest/index.html
--- a/test-suite/idltest/index.html	Sun May 05 18:27:21 2013 +0200
+++ b/test-suite/idltest/index.html	Sun May 05 18:28:14 2013 +0200
@@ -28,12 +28,11 @@
 <pre id="idl">
 [Constructor]
 interface JsonLdProcessor {
-    Future compact (JsonLdInput input, JsonLdContext context, optional JsonLdOptions options);
-    Future expand (JsonLdInput input, optional JsonLdOptions options);
-    Future flatten (JsonLdInput input, optional JsonLdContext? context, optional JsonLdOptions options);
+    Future compact (any input, JsonLdContext context, optional JsonLdOptions options);
+    Future expand (any input, optional JsonLdOptions options);
+    Future flatten (any input, optional JsonLdContext? context, optional JsonLdOptions options);
 };
 
-typedef (object or object[] or DOMString) JsonLdInput;
 typedef (object or DOMString) JsonLdContext;
 
 dictionary JsonLdOptions {