gecko/layout/reftests/scoped-style/scoped-style-dynamic-007.html
2013-01-09 10:25:49 +11:00

17 lines
288 B
HTML

<!DOCTYPE html>
<body onload="f()">
<p>First</p>
<div>
<style scoped>
p { color: green }
</style>
<p>Second</p>
</div>
<script>
function f() {
var p = document.getElementsByTagName("p")[1];
document.body.appendChild(p);
}
</script>
</body>