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

Side by Side Diff: sky/benchmarks/framework/flights-app.sky

Issue 1034953003: Remove flights example (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « sky/benchmarks/framework/city-list.sky ('k') | sky/examples/flights/images/ba.jpg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <sky>
2 <import src="/sky/benchmarks/resources/runner.sky" as="PerfRunner" />
3 <import src="/sky/examples/flights-app/flights-app.sky" as="FlightsAppElement" / >
4 <script>
5 var sky = document.querySelector("sky");
6 var element;
7
8 var runner = new PerfRunner({
9 setup: function() {
10 // Don't benchmark removal.
11 if (element)
12 element.remove();
13 },
14 iterations: 10,
15 unit: "ms",
16 });
17
18 runner.runAsync(function(done) {
19 element = new FlightsAppElement();
20 sky.appendChild(element);
21 done();
22 });
23 </script>
24 </sky>
OLDNEW
« no previous file with comments | « sky/benchmarks/framework/city-list.sky ('k') | sky/examples/flights/images/ba.jpg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698