--- /dev/null
+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x89
+ RenderBlock {HTML} at (0,0) size 800x89
+ RenderBody {BODY} at (8,16) size 784x57
+ RenderBlock {UL} at (0,0) size 784x57
+ RenderListItem {LI} at (40,0) size 744x57
+ RenderBlock {FORM} at (0,0) size 744x23
+ RenderBlock {P} at (0,0) size 744x23
+ RenderListMarker at (-17,2) size 7x18
+ RenderTextField {INPUT} at (2,2) size 287x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
+ RenderText {#text} at (0,0) size 0x0
+ RenderBlock {P} at (0,39) size 744x18
+ RenderText {#text} at (0,0) size 332x18
+ text run at (0,0) width 332: "There should be an input field above this line of text."
+layer at (53,21) size 281x13
+ RenderBlock {DIV} at (3,3) size 281x13
+ RenderText {#text} at (1,0) size 58x13
+ text run at (1,0) width 58: "blah blubb"
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+ "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+ <head>
+ <title>Test</title>
+ <script type="text/javascript">
+ function displayOnOff(el)
+ {
+ el.style.display = (el.style.display == 'block') ? 'none' : 'block';
+ }
+ </script>
+ </head>
+ <body>
+
+ <!-- Removing the <ul> and <li> elements will make this work in Safari! -->
+ <ul>
+ <li>
+ <form action="./" id="myform" method="get" style="display:none">
+ <p><input id="tag_list" name="tag_list" size="40" type="text" value="blah blubb" >
+ </p>
+ </form>
+ <p>There should be an input field above this line of text.</a></p>
+ </li>
+ </ul>
+<script>
+document.body.offsetLeft
+displayOnOff(document.getElementById('myform'))
+document.body.offsetLeft
+</script>
+ </body>
+</html>
\ No newline at end of file