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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-helper.js

Issue 2955943002: DevTools: migrate inspector-protocol/dom tests to a new test runner (Closed)
Patch Set: rebaseline Created 3 years, 5 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 (class DOMHelper {
2 static attributes(node) {
3 var attr = new Map();
4 if (!node.attributes)
5 return attr;
6 for (var i = 0; i < node.attributes.length; i += 2)
7 attr.set(node.attributes[i], node.attributes[i + 1]);
8 return attr;
9 }
10 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698