| Index: Source/bindings/v8/BlinkInJavaScriptController.js
|
| diff --git a/Source/bindings/tests/idls/TestInterfaceDocument.idl b/Source/bindings/v8/BlinkInJavaScriptController.js
|
| similarity index 90%
|
| copy from Source/bindings/tests/idls/TestInterfaceDocument.idl
|
| copy to Source/bindings/v8/BlinkInJavaScriptController.js
|
| index 378d20f6139de33ae5beafaeddfc4a1a93acd548..dcc20645917a9311d35ba2c3bae87512eedebed2 100644
|
| --- a/Source/bindings/tests/idls/TestInterfaceDocument.idl
|
| +++ b/Source/bindings/v8/BlinkInJavaScriptController.js
|
| @@ -28,7 +28,12 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -[
|
| - DependentLifetime, // FIXME: should inherit from Node
|
| -] interface TestInterfaceDocument : Document {
|
| -};
|
| +"use strict";
|
| +
|
| +var installedClasses = {};
|
| +
|
| +function installClass(className, implementation) {
|
| + installedClasses[className] = implementation();
|
| +}
|
| +
|
| +(installedClasses);
|
|
|