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

Side by Side Diff: frontend/client/src/autotest/common/DomUtils.java

Issue 1595019: Merge remote branch 'origin/upstream' into tempbranch (Closed)
Patch Set: Created 10 years, 8 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 package autotest.common;
2
3 import com.google.gwt.dom.client.Element;
4
5 public class DomUtils {
6 public static void clearDomChildren(Element elem) {
7 Element child = elem.getFirstChildElement();
8 while (child != null) {
9 Element nextChild = child.getNextSiblingElement();
10 elem.removeChild(child);
11 child = nextChild;
12 }
13 }
14 }
OLDNEW
« no previous file with comments | « frontend/client/src/autotest/afe/JobStatusDataSource.java ('k') | frontend/client/src/autotest/common/JsonRpcProxy.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698