-
Notifications
You must be signed in to change notification settings - Fork 751
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Search result background color for odd rows fix #2083
Conversation
Looks good enough to me. |
@@ -253,6 +247,20 @@ public static void prettyPrint(Writer out, SearchHelper sh, int start, | |||
out.write("</tt></td></tr>\n"); | |||
} | |||
} | |||
out.write("</tbody>"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
really?
(I am just confused it wasn't there before ... isn't it closed somewhere else? )
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was surprised as well. It seems the browser adds it there by itself.
Simple test: (when I Inspect Element
the <tbody>
is there)
<!doctype html>
<html>
<head>
</head>
<body>
<table>
<tr><td>test1</td></tr>
<tr><td>test2</td></tr>
</table>
</body>
</html>
looks OK to me too, what will we do with coverage @vladak ? |
AFAIK this area of code is not covered at all so I am fine with integrating this as is. |
thank you, closing |
fixes #2082
I was not able to resolve this by css :(
Thanks for review :)
For comparison: (almost the same part as described in issue)