Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / squashing / resources / squash-with-ancestor-property.js
blob4bfc73d1545334deabf841a690680f1f458fff56
1 function addDivElement(id, parentId) {
2   var element = document.createElement('div');
3   element.setAttribute('id', id);
4   if (parentId === 'body')
5     document.body.appendChild(element);
6   else
7     document.getElementById(parentId).appendChild(element);
10 function generateDom() {
11   addDivElement('container', 'body');
12   addDivElement('composited-background', 'container');
13   document.getElementById('composited-background').innerText = 'Text behind the orange box.';
14   addDivElement('ancestor', 'container');
15   addDivElement('composited-overlap-child', 'ancestor');