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

Side by Side Diff: chrome/test/data/webui/settings/site_details_tests.js

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 4 years 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** @fileoverview Suite of tests for site-details. */ 5 /** @fileoverview Suite of tests for site-details. */
6 cr.define('site_details', function() { 6 cr.define('site_details', function() {
7 function registerTests() { 7 function registerTests() {
8 suite('SiteDetails', function() { 8 suite('SiteDetails', function() {
9 /** 9 /**
10 * A site list element created before each test. 10 * A site list element created before each test.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 }, 58 },
59 ], 59 ],
60 javascript: [ 60 javascript: [
61 { 61 {
62 embeddingOrigin: 'https://foo-allow.com:443', 62 embeddingOrigin: 'https://foo-allow.com:443',
63 origin: 'https://foo-allow.com:443', 63 origin: 'https://foo-allow.com:443',
64 setting: 'allow', 64 setting: 'allow',
65 source: 'preference', 65 source: 'preference',
66 }, 66 },
67 ], 67 ],
68 keygen: [
69 {
70 embeddingOrigin: 'https://foo-allow.com:443',
71 origin: 'https://foo-allow.com:443',
72 setting: 'allow',
73 source: 'preference',
74 },
75 ],
76 mic: [ 68 mic: [
77 { 69 {
78 embeddingOrigin: 'https://foo-allow.com:443', 70 embeddingOrigin: 'https://foo-allow.com:443',
79 origin: 'https://foo-allow.com:443', 71 origin: 'https://foo-allow.com:443',
80 setting: 'allow', 72 setting: 'allow',
81 source: 'preference', 73 source: 'preference',
82 }, 74 },
83 ], 75 ],
84 notifications: [ 76 notifications: [
85 { 77 {
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 201
210 //expect usage to be rendered 202 //expect usage to be rendered
211 assertTrue(!!testElement.$$('#usage')); 203 assertTrue(!!testElement.$$('#usage'));
212 }); 204 });
213 }); 205 });
214 } 206 }
215 return { 207 return {
216 registerTests: registerTests, 208 registerTests: registerTests,
217 }; 209 };
218 }); 210 });
OLDNEW
« no previous file with comments | « chrome/test/data/policy/policy_test_cases.json ('k') | chrome/test/data/webui/settings/site_list_tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698