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

Side by Side Diff: example/component/news/test/expected/news_index_test.html.txt

Issue 20863002: Introduce boot.js: this finally makes it possible to load and run Todomvc (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: review comments, fixed build.dart Created 7 years, 4 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 unified diff | Download patch
OLDNEW
1 Content-Type: text/plain 1 Content-Type: text/plain
2 <html><head><style>template { display: none; }</style> 2 <html><head><style>template { display: none; }</style>
3 <title>Simple Web Components Example</title> 3 <title>Simple Web Components Example</title>
4 4
5 <script src="../../packages/polymer/testing/testing.js"></script> 5 <script src="../../packages/polymer/testing/testing.js"></script>
6 <link rel="stylesheet" type="text/css" href="news_index_test.html.css"></head> 6 <link rel="stylesheet" type="text/css" href="news_index_test.html.css"></head>
7 <body><polymer-element name="x-news" extends="ul"> 7 <body><polymer-element name="x-news" extends="ul">
8 <template> 8 <template>
9 9
10 <div class="x-news_breaking"> 10 <div class="x-news_breaking">
11 <h2>Breaking Stories</h2> 11 <h2>Breaking Stories</h2>
12 <ul> 12 <ul>
13 <content select=".breaking"></content> 13 <content select=".breaking"></content>
14 </ul> 14 </ul>
15 </div> 15 </div>
16 <div class="x-news_other"> 16 <div class="x-news_other">
17 <h2>Other News</h2> 17 <h2>Other News</h2>
18 <ul> 18 <ul>
19 <content></content> 19 <content></content>
20 </ul> 20 </ul>
21 </div> 21 </div>
22 </template> 22 </template>
23
23 </polymer-element> 24 </polymer-element>
24 25
25 <h1>Simple Web Components Example</h1> 26 <h1>Simple Web Components Example</h1>
26 <ul is="x-news"><shadow-root> 27 <ul is="x-news"><shadow-root>
27 28
28 <div class="x-news_breaking"> 29 <div class="x-news_breaking">
29 <h2>Breaking Stories</h2> 30 <h2>Breaking Stories</h2>
30 <ul> 31 <ul>
31 <content select=".breaking"></content> 32 <content select=".breaking"></content>
32 </ul> 33 </ul>
(...skipping 10 matching lines...) Expand all
43 <li class="breaking"><a href="//example.com/stories/3">Also a story</a></li> 44 <li class="breaking"><a href="//example.com/stories/3">Also a story</a></li>
44 <li><a href="//example.com/stories/4">Yet another story</a></li> 45 <li><a href="//example.com/stories/4">Yet another story</a></li>
45 <li><a href="//example.com/stories/4">Awesome story</a></li> 46 <li><a href="//example.com/stories/4">Awesome story</a></li>
46 <li class="breaking"><a href="//example.com/stories/5">Horrible story</a></l i> 47 <li class="breaking"><a href="//example.com/stories/5">Horrible story</a></l i>
47 </ul> 48 </ul>
48 49
49 50
50 51
51 <script type="text/javascript" src="packages/shadow_dom/shadow_dom.debug.js"></s cript> 52 <script type="text/javascript" src="packages/shadow_dom/shadow_dom.debug.js"></s cript>
52 <script type="application/dart" src="news_index_test.html_bootstrap.dart"></scri pt></body></html> 53 <script type="application/dart" src="news_index_test.html_bootstrap.dart"></scri pt></body></html>
OLDNEW
« no previous file with comments | « no previous file | example/component/news/web/index.html » ('j') | example/component/news/web/news-component.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698