blob: e5dfba8bf0d78bb3fea042340256e49a730c80ee [file] [log] [blame]
<style>
.baz:nth-last-child(odd) { display: block; }
</style>
<script>
function test() {
var foo = document.createElement('div');
document.documentElement.appendChild(foo);
var bar = document.createElement('div');
var barShadow = bar.webkitCreateShadowRoot();
bar.setAttribute('class', 'bar');
document.documentElement.appendChild(bar);
baz = document.createElement('span');
baz.setAttribute('class', 'baz');
bar.appendChild(baz);
var qux = document.createElement('div');
bar.appendChild(qux);
var ip = document.createElement('shadow');
barShadow.appendChild(ip);
document.documentElement.offsetLeft;
foo.appendChild(qux);
testRunner.notifyDone();
}
testRunner.waitUntilDone();
testRunner.dumpAsText();
window.onload = test;
</script>