OLD | NEW |
(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> |
OLD | NEW |