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

Unified Diff: pkg/polymer/test/build/common.dart

Issue 158083002: introduce web_components pkg for consolidated polyfills (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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: pkg/polymer/test/build/common.dart
diff --git a/pkg/polymer/test/build/common.dart b/pkg/polymer/test/build/common.dart
index d38fb3dceb07ab206276cdab7e74ebc7b3ea3b39..a4d9ba22e2ce49faca7ad0b34fc0b65de59c16fb 100644
--- a/pkg/polymer/test/build/common.dart
+++ b/pkg/polymer/test/build/common.dart
@@ -131,13 +131,10 @@ testPhases(String testName, List<List<Transformer>> phases,
});
}
-// TODO(jmesserly): this is .debug to workaround issue 14720.
-const SHADOW_DOM_TAG =
- '<script src="packages/shadow_dom/shadow_dom.debug.js"></script>\n';
+const WEB_COMPONENTS_TAG =
+ '<script src="packages/web_components/platform.js"></script>\n'
+ '<script src="packages/web_components/dart_support.js"></script>\n';
const INTEROP_TAG = '<script src="packages/browser/interop.js"></script>\n';
const DART_JS_TAG = '<script src="packages/browser/dart.js"></script>';
-const CUSTOM_ELEMENT_TAG =
- '<script src="packages/custom_element/custom-elements.debug.js">'
- '</script>\n';

Powered by Google App Engine
This is Rietveld 408576698