summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/dom-mutation.js
blob: 3d3f5c75d8eb9f77609ec731a2f386b3eca97c11 (plain)
1
2
3
4
5
6
7
8
9
function changeAttribute() {
  const title = document.body.title === "Goodbye" ? "Hello" : "Goodbye";
  document.body.setAttribute("title", title);
}

function changeSubtree() {
  document.body.appendChild(document.createElement("div"));
}
//# sourceMappingURL=dom-mutation.js.map