Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Unified Diff: test/html_import_annotation_test.dart

Issue 882823003: Adds @HtmlImport with both dynamic and transformer based implementations. Still need an HtmlInliner… (Closed) Base URL: git@github.com:dart-lang/web-components.git@master
Patch Set: assign logger Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/html_import_annotation_test.dart
diff --git a/test/html_import_annotation_test.dart b/test/html_import_annotation_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..cae624a37b2dcf2b89fa63925fdb8c02b6ccb1a7
--- /dev/null
+++ b/test/html_import_annotation_test.dart
@@ -0,0 +1,28 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+@HtmlImport(importPath)
Siggi Cherem (dart-lang) 2015/02/12 16:49:44 I'm surprised this works in the transformer withou
jakemac 2015/02/12 17:04:09 This works but will be injected at runtime since t
+// This one will throw a build time warning, but should still work dynamically.
+@HtmlImport('bad_import.html')
+library web_components.test.html_import_annotation;
+
+import 'dart:html';
+import 'package:initialize/initialize.dart' as init;
+import 'package:unittest/html_config.dart';
+import 'package:unittest/unittest.dart';
+import 'package:web_components/html_import_annotation.dart';
+
+const String importPath = 'my_import.html';
+
+main() {
+ useHtmlConfiguration();
+
+ test('adds import to head', () {
+ return init.run().then((_) {
+ var good = document.head.querySelector('link[href="$importPath"]');
+ expect(good.import.body.text, 'Hello world!\n');
+ var bad = document.head.querySelector('link[href="bad_import.html"]');
+ expect(bad.import, isNull);
+ });
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698