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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/resources/webidl2/lib/writer.js

Issue 1993513002: Move the shadow-dom directory from web-platform-tests/ to wpt/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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 1
2 (function () { 2 (function () {
3 3
4 var write = function (ast, opt) { 4 var write = function (ast, opt) {
5 var curPea = "" 5 var curPea = ""
6 , curTPea = "" 6 , curTPea = ""
7 , opt = opt || {} 7 , opt = opt || {}
8 , noop = function (str) { return str; } 8 , noop = function (str) { return str; }
9 , optNames = "type".split(" ") 9 , optNames = "type".split(" ")
10 , context = [] 10 , context = []
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 write: function (ast, opt) { 227 write: function (ast, opt) {
228 if (!opt) opt = {}; 228 if (!opt) opt = {};
229 return write(ast, opt); 229 return write(ast, opt);
230 } 230 }
231 }; 231 };
232 232
233 if (inNode) module.exports = obj; 233 if (inNode) module.exports = obj;
234 else window.WebIDL2Writer = obj; 234 else window.WebIDL2Writer = obj;
235 235
236 }()); 236 }());
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698