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

Unified Diff: tests/html/utils.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
« no previous file with comments | « tests/html/custom_elements_test.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/utils.dart
diff --git a/tests/html/utils.dart b/tests/html/utils.dart
index 9b469b1f20c3958c2e0972729789fbc39d0fd8d7..f8d2e6dc8a23aebaed1b6256443d25b9c13073d7 100644
--- a/tests/html/utils.dart
+++ b/tests/html/utils.dart
@@ -5,6 +5,7 @@ import 'dart:html';
import 'dart:js' as js;
import 'dart:typed_data';
import 'package:unittest/unittest.dart';
+export 'package:web_components/polyfill.dart';
/**
* Verifies that [actual] has the same graph structure as [expected].
@@ -161,20 +162,6 @@ void validateNodeTree(Node a, Node b, [String path = '']) {
}
}
-Future loadCustomElementPolyfill() {
- if (!document.supportsRegister) {
- var script = new ScriptElement()
- ..src = '/packages/custom_element/custom-elements.debug.js';
- document.head.append(script);
- return document.on['WebComponentsReady'].first;
- }
- return new Future.value();
-}
-
-Future loadPolyfills() {
- return loadCustomElementPolyfill();
-}
-
/**
* Upgrade all custom elements in the subtree which have not been upgraded.
*
« no previous file with comments | « tests/html/custom_elements_test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698