From: Daniel Carl <danielcarl@gmx.de> Date: Fri, 3 Aug 2018 22:43:57 +0000 (+0200) Subject: Added manual test case for #507. X-Git-Url: https://git.owens.tech/wrapped.html/wrapped.html/git?a=commitdiff_plain;h=da080e5f21bf1c1fdca02afceb5736398935f0a1;p=vimb.git Added manual test case for #507. --- diff --git a/tests/manual/hints/label-positioning.html b/tests/manual/hints/label-positioning.html index 2aa370a..28fbb9e 100644 --- a/tests/manual/hints/label-positioning.html +++ b/tests/manual/hints/label-positioning.html @@ -8,15 +8,23 @@ width: 500px; margin-left: -250px; } + a.negative { + padding: 2em; + margin: -2em; + } </style> - <title>Hint Label on pages with absolute positioned body</title> + <title>Hint Label positioning with negative margins</title> </head> <body> <p> When using hints (f) on this page, the hint should be placed on - the upper left corner of the links. - <a href="#one">one</a><br/> - <a href="#two">two</a> + the upper left corner of the links.<br/> + <a href="#one">one</a> + </p> + <p> + Following link should not generate a big highlighted box on hinting. + <a href="#two" class="negative">two</a> - + see <a href="https://github.com/fanglingsu/vimb/issues/507">#507</a>. </p> </body> </html>