jruderman%hmc.edu 8bc3bef847 Remove some bogus onloads from reftests (they just cause js errors).
git-svn-id: svn://10.0.0.236/trunk@222020 18797224-902f-48f8-a5cc-f745e15eee43
2007-03-18 23:01:42 +00:00

19 lines
294 B
HTML

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