mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 09:23:07 +09:00
23 lines
427 B
HTML
23 lines
427 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function replacestyles(){
|
|
document.getElementById('a').setAttribute('style', 'border: 1px solid black; -moz-border-radius: 2em;');
|
|
document.body.offsetHeight;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="direction: rtl; -moz-column-count: 2;" onload="document.body.offsetHeight; setTimeout(replacestyles,0);">
|
|
|
|
<div id="a">
|
|
<pre style="overflow: -moz-hidden-unscrollable;">
|
|
|
|
|
|
text
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
</body>
|
|
</html>
|