diff options
author | Daniel Carl <danielcarl@gmx.de> | 2018-08-04 23:00:58 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2018-08-04 23:00:58 +0200 |
commit | 24cd4e84f09a00185a975381bb3f0ff1913c2797 (patch) | |
tree | 6acc379d34c56f546b18447511e99ded7f83f200 /tests | |
parent | da080e5f21bf1c1fdca02afceb5736398935f0a1 (diff) |
Removed possible wrong test case #507.
The links on exherbo are set to margin: -10em and padding: 10em so they
have indeed a big bounding box which is returned by
e.getBoundlingClientRect().
Diffstat (limited to 'tests')
-rw-r--r-- | tests/manual/hints/label-positioning.html | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/tests/manual/hints/label-positioning.html b/tests/manual/hints/label-positioning.html index 28fbb9e..04d0a53 100644 --- a/tests/manual/hints/label-positioning.html +++ b/tests/manual/hints/label-positioning.html @@ -8,10 +8,6 @@ width: 500px; margin-left: -250px; } - a.negative { - padding: 2em; - margin: -2em; - } </style> <title>Hint Label positioning with negative margins</title> </head> @@ -19,12 +15,8 @@ <p> When using hints (f) on this page, the hint should be placed on 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>. + <a href="#one">one</a><br/> + <a href="#two">two</a> </p> </body> </html> |