blob: 33c5d38728bc47a289ac2500d3aff96ff5daa223 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html>
<head>
<style>
HTML:first-line, DIV { position:fixed }
</style>
<script>
try { o1 = document.createElement('DIV') } catch(e) { }
try { document.documentElement.appendChild(o1) } catch(e) { }
try { document.documentElement.getBoundingClientRect() } catch(e) { }
try { document.styleSheets[0].cssRules[0].style['position'] = 'relative' } catch(e) { }
</script>
</head>
</html>
|