summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/squashing/resources/squash-with-ancestor-property.js
blob: 4bfc73d1545334deabf841a690680f1f458fff56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function addDivElement(id, parentId) {
  var element = document.createElement('div');
  element.setAttribute('id', id);
  if (parentId === 'body')
    document.body.appendChild(element);
  else
    document.getElementById(parentId).appendChild(element);
}

function generateDom() {
  addDivElement('container', 'body');
  addDivElement('composited-background', 'container');
  document.getElementById('composited-background').innerText = 'Text behind the orange box.';
  addDivElement('ancestor', 'container');
  addDivElement('composited-overlap-child', 'ancestor');
}