ID:1814299
 
BYOND Version:507
Operating System:Windows 7 Ultimate
Web Browser:Chrome 40.0.2214.115
Applies to:Dream Seeker
Status: Open

Issue hasn't been assigned a status value.
Descriptive Problem Summary:

Maptext renders incorrectly when set into an element with valign set to 'bottom'. The text shows up one line below the renderable area, causing a single line of text to be cut off.

Numbered Steps to Reproduce Problem:



Code Snippet (if applicable) to Reproduce Problem:
mob
Login()
client.InitializeHUD()
..()

client
var
messages = ""
obj/chatbox
verb
chat(msg as text)
messages += "<SPAN>[msg]</SPAN><BR>"
chatbox.maptext = "<DIV valign='bottom'>[messages]</DIV>"
proc
InitializeHUD()
chatbox = new()
chatbox.maptext_width = 320
chatbox.maptext_height = 200
screen += chatbox


Expected Results:

Maptext should show the bottom line

Actual Results:

The bottom line is clipped
It's been some time on this one. Any thoughts?
Bump