mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
21 lines
332 B
HTML
21 lines
332 B
HTML
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var b = document.getElementById('b');
|
||
|
|
b.style.counterIncrement = 'chicken';
|
||
|
|
document.body.offsetHeight;
|
||
|
|
b.style.counterIncrement = '';
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body onload="boom();">
|
||
|
|
|
||
|
|
<col id="a" span="2"></col><col id="b"></col>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|