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

Side by Side Diff: fuzzer/res/imp/fuzzer-summary-list-sk-demo.html

Issue 1413233007: Add fuzzer-collapse-file-sk and fuzzer-summary-list-sk (Closed) Base URL: https://skia.googlesource.com/buildbot@file-function
Patch Set: Address comments Created 5 years, 1 month 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 | « fuzzer/res/imp/fuzzer-summary-list-sk.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3
4 <head>
5 <title>fuzzer-summary-list-sk demo</title>
6 <meta charset="utf-8">
7 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
8 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial- scale=1, user-scalable=yes">
9 <script src="/res/common/js/common.js"></script>
10 <script src="/res/imp/bower_components/webcomponentsjs/webcomponents-lite.js"> </script>
11
12 <script type="text/javascript" charset="utf-8">
13 sk.get = function(url) {
14 var data = [{"fileName":"foo.h","binaryCount":30,"apiCount":0,"byFunction" :[{"functionName":"frizzle()","binaryCount":18,"apiCount":0,"byLineNumber":[{"li neNumber":64,"binaryCount":17,"apiCount":0,"binaryReports":[]},{"lineNumber":69, "binaryCount":1,"apiCount":0,"binaryReports":[]}]},{"functionName":"zizzle()","b inaryCount":12,"apiCount":0,"byLineNumber":[{"lineNumber":123,"binaryCount":12," apiCount":0,"binaryReports":[]}]}]},{"fileName":"bar.h","binaryCount":15,"apiCou nt":3,"byFunction":[{"functionName":"frizzle()","binaryCount":15,"apiCount":3,"b yLineNumber":[{"lineNumber":566,"binaryCount":15,"apiCount":2,"binaryReports":[] },{"lineNumber":568,"binaryCount":0,"apiCount":1,"binaryReports":[]}]}]}];
15
16 return new Promise(function (resolve, reject) {
17 resolve(JSON.stringify(data));
18 });
19 };
20 </script>
21
22 <link rel="import" href="fuzzer-collapse-file-sk.html">
23 <link rel="import" href="fuzzer-collapse-function-sk.html">
24 <link rel="import" href="fuzzer-collapse-details-sk.html">
25 <link rel="import" href="fuzzer-summary-list-sk.html">
26
27 </head>
28
29 <body>
30 <h1>fuzzer-summary-list-sk demo</h1>
31
32 <fuzzer-summary-list-sk></fuzzer-summary-list-sk>
33
34 </body>
35
36 </html>
OLDNEW
« no previous file with comments | « fuzzer/res/imp/fuzzer-summary-list-sk.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698