--- /dev/null
+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x600
+ RenderBlock {HTML} at (0,0) size 800x600
+ RenderBody {BODY} at (0,20) size 800x560
+ RenderInline {A} at (0,0) size 366x48 [color=#008000] [border: (10px solid #000000)]
+ RenderText {#text} at (15,0) size 336x18
+ text run at (15,0) width 336: "This should have a 10px solid black border around it."
+ RenderText {#text} at (0,0) size 0x0
+ RenderText {#text} at (0,0) size 0x0
+ RenderText {#text} at (0,0) size 0x0
--- /dev/null
+<html>
+<head>
+<style>
+:link, :visited
+{
+ border:10px solid black;
+ color: green;
+ padding:5px;
+ text-decoration: none
+}
+
+body
+{
+ margin:20px 0
+}
+</style>
+</head>
+<a id="link">This should have a 10px solid black border around it.</a>
+<script>
+document.body.offsetLeft
+document.getElementById('link').href = '#top';
+</script>
+</html>