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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sha1.html

Issue 2766823002: [Devtools] Add SHA-1 hash function in prep for URL hashing (Closed)
Patch Set: changes Created 3 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 | « no previous file | third_party/WebKit/LayoutTests/inspector/sha1-expected.txt » ('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 <html>
2 <head>
3 <meta charset="utf8">
4 <script src="../http/tests/inspector/inspector-test.js"></script>
5 <script>
6
7 function initialize_ProductRegistry() {
8 InspectorTest.preloadModule('product_registry');
9 }
10
11 function test()
12 {
13 InspectorTest.addResult('foobar : ' + ProductRegistry.sha1('foobar'));
14 InspectorTest.addResult('hello : ' + ProductRegistry.sha1('hello'));
15 InspectorTest.addResult('abcdefghijklmnopqrstuvwxyz : ' + ProductRegistry.sh a1('abcdefghijklmnopqrstuvwxyz'));
16 InspectorTest.addResult('ABCDEFGHIJKLMNOPQRSTUVWXYZ : ' + ProductRegistry.sh a1('ABCDEFGHIJKLMNOPQRSTUVWXYZ'));
17 InspectorTest.addResult('a : ' + ProductRegistry.sha1('a'));
18 InspectorTest.addResult('A : ' + ProductRegistry.sha1('A'));
19 InspectorTest.addResult('A1 : ' + ProductRegistry.sha1('A1'));
20 InspectorTest.completeTest();
21 }
22
23 </script>
24 </head>
25 <body onload="runTest()">
26 Tests SHA-1 hashes.
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/sha1-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698