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

Side by Side Diff: polymer_0.4.0/bower_components/marked/test/browser/test.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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
1 ;(function() { 1 ;(function() {
2 2
3 var console = {} 3 var console = {}
4 , files = __TESTS__; 4 , files = __TESTS__;
5 5
6 console.log = function(text) { 6 console.log = function(text) {
7 var args = Array.prototype.slice.call(arguments, 1) 7 var args = Array.prototype.slice.call(arguments, 1)
8 , i = 0; 8 , i = 0;
9 9
10 text = text.replace(/%\w/g, function() { 10 text = text.replace(/%\w/g, function() {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&') 53 .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&')
54 .replace(/</g, '&lt;') 54 .replace(/</g, '&lt;')
55 .replace(/>/g, '&gt;') 55 .replace(/>/g, '&gt;')
56 .replace(/"/g, '&quot;') 56 .replace(/"/g, '&quot;')
57 .replace(/'/g, '&#39;'); 57 .replace(/'/g, '&#39;');
58 } 58 }
59 59
60 (__MAIN__)(); 60 (__MAIN__)();
61 61
62 }).call(this); 62 }).call(this);
OLDNEW
« no previous file with comments | « polymer_0.4.0/bower_components/marked/test/browser/index.js ('k') | polymer_0.4.0/bower_components/marked/test/index.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698