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

Side by Side Diff: test/perf/input/create_1_test.html

Issue 11683002: Setting up benchmarks and perf utilities (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 11 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
(Empty)
1 <!DOCTYPE html>
2 <!--
3 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 for details. All rights reserved. Use of this source code is governed by a
5 BSD-style license that can be found in the LICENSE file.
6 -->
7 <html lang="en">
8 <head>
9 <!--
10 This performance test instantiates 1 custom element.
11 -->
12 <meta charset="utf-8">
13 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
14 <script type="application/javascript" src="testing.js"></script>
15 <script type="application/javascript" src="start_dart.js"></script>
16 </head>
17 <body>
18 <element name="x-e" extends="span">
19 <template>.</template>
20 </element>
21 <template instantiate="if cond">
22 <x-e></x-e>
23 </template>
24 <script type="application/dart">
25 import 'dart:html';
26 import 'package:web_ui/web_ui.dart';
27 import 'package:unittest/unittest.dart';
28 import 'perf_common.dart';
29
30 main() {
31 useShadowDom = false;
32 window.setTimeout(() {
33 var bench = new CreateBenchmark();
34 perfDone(bench.measure());
35 }, 0);
36 }
37
38 bool cond = false;
39
40 class CreateBenchmark extends BenchmarkBase {
41 CreateBenchmark() : super('create-1');
42 setup() {
43 cond = false;
44 }
45
46 run() {
47 cond = true;
48 dispatch();
49 }
50 }
51 </script>
52 </body>
53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698