servo/tests/ref/upper_id_attr.html
2014-09-08 20:21:42 -06:00

9 lines
186 B
HTML

<!doctype html>
<style>
div { height: 2em; background: green; }
#id { background: red; }
</style>
<div></div>
<script>
document.body.firstChild.setAttributeNS("", "ID", "id");
</script>