From: Stephen Warren Date: Mon, 18 Sep 2017 17:50:47 +0000 (-0600) Subject: test/py: fix anchors in HTML status report X-Git-Tag: v2017.11-rc1~21 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=117eeb7f84176268c086db7764778d99d832cd71;p=oweals%2Fu-boot.git test/py: fix anchors in HTML status report The current code wraps a pre tag inside an a tag. For some reason, this causes at least Firefox to attempt to drag the pre section content when using a mouse drag to select text. Re-order the tags so that the text can be selected using the mouse, at least if you start the drag outside the text (after the end of the line, for example). Signed-off-by: Stephen Warren --- diff --git a/test/py/multiplexed_log.py b/test/py/multiplexed_log.py index bf926c3e77..5bc1bc49d4 100644 --- a/test/py/multiplexed_log.py +++ b/test/py/multiplexed_log.py @@ -365,13 +365,13 @@ $(document).ready(function () { self._terminate_stream() self.f.write('\n') def start_section(self, marker, anchor=None):