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

Unified Diff: samples/third_party/todomvc/test/markdone_shadow_test.html

Issue 182193002: [polymer] interop with polymer-element and polymer.js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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: samples/third_party/todomvc/test/markdone_shadow_test.html
diff --git a/samples/third_party/todomvc/test/markdone_shadow_test.html b/samples/third_party/todomvc/test/markdone_shadow_test.html
index 6dd9a7fc5f724774be46150f2e31eea13111b316..bccbd0ea85b6976613dcbf25aeecba26013b7147 100644
--- a/samples/third_party/todomvc/test/markdone_shadow_test.html
+++ b/samples/third_party/todomvc/test/markdone_shadow_test.html
@@ -11,9 +11,12 @@ BSD-style license that can be found in the LICENSE file.
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script>
// Force the ShadowDOM polyfill to run regardless of whether it is needed.
- window.__forceShadowDomPolyfill = true;
+ window.Platform = window.Platform || {};
+ Platform.flags = Platform.flags || {};
+ Platform.flags.shadow = true;
</script>
<link rel="stylesheet" href="../web/app/app.css">
+ <link rel="import" href="packages/polymer/polymer.html">
<link rel="import" href="../web/elements/td_model.html">
<link rel="import" href="../web/elements/td_todos.html">
<script src="packages/unittest/test_controller.js"></script>
« no previous file with comments | « samples/third_party/todomvc/test/mainpage_test.html ('k') | samples/third_party/todomvc/test/markdone_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698