Chromium Code Reviews| 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 b189e61409f40278aa9bafdc529dabbebd77a6d2..411b9d9d7ae23905f7e34188e8ce96a17c33e605 100644 |
| --- a/samples/third_party/todomvc/test/markdone_shadow_test.html |
| +++ b/samples/third_party/todomvc/test/markdone_shadow_test.html |
| @@ -11,11 +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.Platform = window.Platform || {}; |
| - Platform.flags = Platform.flags || {}; |
| - Platform.flags.shadow = true; |
| + window.WebComponents = window.WebComponents || {}; |
| + WebComponents.flags = WebComponents.flags || {}; |
| + WebComponents.flags.shadow = true; |
| </script> |
| <link rel="stylesheet" href="../web/app/app.css"> |
| + <script src="packages/web_components/webcomponents.js"></script> |
|
Siggi Cherem (dart-lang)
2014/11/25 17:53:41
do we need to add it too? maybe so it doesn't get
jakemac
2014/12/01 18:42:51
Ya, looks like we need it
|
| <script src="packages/web_components/dart_support.js"></script> |
| <link rel="import" href="../web/elements/td_model.html"> |
| <link rel="import" href="../web/elements/td_todos.html"> |