jruderman%hmc.edu be5f93111e That's no moon. It's a crashtest!
git-svn-id: svn://10.0.0.236/trunk@241411 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-16 00:53:30 +00:00

18 lines
284 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div#x::first-letter { color: blue; }
</style>
</head>
<body>
<div id="x">x</div>
<script>
document.body.offsetWidth;
var div = document.getElementById("x");
div.id = "y";
div.removeChild(div.firstChild);
</script>
</body>
</html>