mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
445 B
HTML
18 lines
445 B
HTML
|
<html><head>
|
||
|
<style>
|
||
|
object::before { content:"before text";}
|
||
|
</style>
|
||
|
<script>
|
||
|
function doe(){
|
||
|
document.getElementById('a').setAttribute('style', 'overflow: scroll; font-family: Hiragino Kaku Gothic Std;');
|
||
|
}
|
||
|
setTimeout(doe,500);
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div style="text-align: right;width: -moz-intrinsic;">
|
||
|
<object style="white-space: -moz-pre-wrap; word-spacing: 10px;"><span id="a">
|
||
|
</span></object>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|