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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/security/sct-summary.html

Issue 2208803002: Remove SCT counters from DevTools security panel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 <html>
2 <head>
3 <script src="../inspector-test.js"></script>
4 <!-- Since we are testing a static function, we can save work by not (pre)loadin g the Security panel. -->
5 <script>
6 function test()
7 {
8 for (var numUnknownScts = 0; numUnknownScts < 3; numUnknownScts++) {
9 for (var numInvalidScts = 0; numInvalidScts < 3; numInvalidScts++) {
10 for (var numValidScts = 0; numValidScts < 3; numValidScts++) {
11 InspectorTest.addResult(WebInspector.SecurityOriginView.prototype.sctS ummary({
12 "numUnknownScts": numUnknownScts,
13 "numInvalidScts": numInvalidScts,
14 "numValidScts": numValidScts
15 }));
16 }
17 }
18 }
19
20 InspectorTest.completeTest();
21 }
22 </script>
23 </head>
24 <body onload="runTest()">
25 <p>Tests that the SCT summary is correctly formatted and pluralized.</p>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698