Index: client/tests/client/dom/ImplementationTest.dart |
diff --git a/client/tests/client/dom/ImplementationTest.dart b/client/tests/client/dom/ImplementationTest.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5a1a356a92e905793b562ba6a493a2c47f5fa37b |
--- /dev/null |
+++ b/client/tests/client/dom/ImplementationTest.dart |
@@ -0,0 +1,11 @@ |
+#library('ImplementationTest'); |
+#import('../../../testing/unittest/unittest.dart'); |
+#import('dart:dom'); |
+ |
+main() { |
+ forLayoutTests(); |
+ test('Dart', () { |
+ bool hasDart = document.implementation.hasFeature("dart", ""); |
+ Expect.isTrue(hasDart); |
+ }); |
+} |