Files
servo/tests/ref/upper_id_attr.html
Jack Moffitt c6ab60dbfc Cargoify servo
2014-09-08 20:21:42 -06:00

10 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>