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

Side by Side Diff: test/data/input/news_index_test.html

Issue 12225039: Support for observable models, fixes #259 (Closed) Base URL: https://github.com/dart-lang/web-ui.git@master
Patch Set: Created 7 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 unified diff | Download patch
« no previous file with comments | « test/data/input/mix_iterate_if_test.html ('k') | test/data/input/path_normalization_test.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 This example is from 3 This example is from
4 https://github.com/dglazkov/Web-Components-Polyfill/blob/master/samples/news 4 https://github.com/dglazkov/Web-Components-Polyfill/blob/master/samples/news
5 --> 5 -->
6 <html> 6 <html>
7 <head> 7 <head>
8 <title>Simple Web Components Example</title> 8 <title>Simple Web Components Example</title>
9 <link rel="components" href="example/component/news/news-component.html"> 9 <link rel="components" href="example/component/news/news-component.html">
10 <script type="application/javascript" src="testing.js"></script> 10 <script type="application/javascript" src="testing.js"></script>
11 </head> 11 </head>
12 <body> 12 <body>
13 <h1>Simple Web Components Example</h1> 13 <h1>Simple Web Components Example</h1>
14 <ul is="news"> 14 <ul is="news">
15 <li><a href="//example.com/stories/1">A story</a></li> 15 <li><a href="//example.com/stories/1">A story</a></li>
16 <li><a href="//example.com/stories/2">Another story</a></li> 16 <li><a href="//example.com/stories/2">Another story</a></li>
17 <li class="breaking"><a href="//example.com/stories/3">Also a story</a></li> 17 <li class="breaking"><a href="//example.com/stories/3">Also a story</a></li>
18 <li><a href="//example.com/stories/4">Yet another story</a></li> 18 <li><a href="//example.com/stories/4">Yet another story</a></li>
19 <li><a href="//example.com/stories/4">Awesome story</a></li> 19 <li><a href="//example.com/stories/4">Awesome story</a></li>
20 <li class="breaking"><a href="//example.com/stories/5">Horrible story</a></l i> 20 <li class="breaking"><a href="//example.com/stories/5">Horrible story</a></l i>
21 </ul> 21 </ul>
22 <script type="application/dart"> 22 <script type="application/dart">
23 import 'dart:html'; 23 import 'dart:html';
24 main() { 24 main() {
25 window.setTimeout(() => window.postMessage('done', '*'), 0); 25 window.setImmediate(() => window.postMessage('done', '*'));
26 } 26 }
27 </script> 27 </script>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW
« no previous file with comments | « test/data/input/mix_iterate_if_test.html ('k') | test/data/input/path_normalization_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698