blob: edc08bcee4e60f7397b50be6209e311f5d61824d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
.p { marker: url('#c'); }
</style>
<script type="text/javascript">
function boom()
{
document.getElementById("a").setAttribute("class", "p");
document.documentElement.offsetHeight;
document.getElementById("b").setAttribute("id", "c");
}
</script>
</head><body onload="boom();"><div class="p" id="a">C</div><div id="c"></div></body></html>
|