2 * Copyright 2015 The Chromium Authors. All rights reserved. Use of this
3 * source code is governed by a BSD-style license that can be found in the
8 <title>Automation Tests - Tree change
</title>
15 <button id=
"add">Add
</button>
16 <button id=
"remove">Remove
</button>
19 document
.getElementById('add').addEventListener('click', function() {
20 var li
= document
.createElement('li');
22 document
.getElementById('list').appendChild(li
);
24 document
.getElementById('remove').addEventListener('click', function() {
25 var list
= document
.getElementById('list');
26 list
.removeChild(list
.lastElementChild
);