Re: [XXE] RFE: Error message and sorting a with an empty

Wed, 04 Apr 2018 03:51:07 -0700

On 04/04/2018 12:52 AM, Leif Halvard Silli wrote:
I do not know how it happened, but my partner ended up with an HTML
table with an empty <tr></tr> element. And she attempted to sort the
table. Which did not work.

The sort facility is a "best effort" implementation. It will refuse to work in many cases (e.g. spanning cells).




Of course, XXE told that there there was an error in the document. (Red
square in the bottom left corner.) But it remained possible to edit the
document, so this was ignored.

Also, the table looked perfectly all right: The empty <tr> simply
disappears - it is not rendered to the user. This is, of course, because
the HTML spec and/or the CSS spec says that empty table row are
collapsed when they are empty. This makes sense, I guess, for people who
browse a web page. But for authors, it can lead to confusion - like it
did for us.

Now, if you in this situation try to sort the table, you will receive an
error message which is accurate, but which appears meaningsless: The
message is that the sorting mechanism expected one of the <tr> elements
of the table to contain table cells.

The reason this message appears meaningless is that the table looks
allright - visually, there are no empty <tr> elements. It has to dawn on
you that you must inspect the source code - or else you will not
discover the error.

An HTML5 <tr> may be empty. This is valid markup. No blinking red
light in the bottom left corner.

With other HTML document types (e.g. XHTML 1.0 Transitional), the only way to create an empty <tr> is:

a) to edit the XML source,

b) OR to turn on feature "Enable the 'Edit|Force Deletion' menu item" (Options|Preferences, General|Features section) and then use 'Edit|Force Deletion'



--> When you'll want to fix the empty <tr>, please switch to the tree view. Unlike the XML source view, the tree view works in fully validating mode just like the styled view.




Could the empty <tr> be made to /not/ collapse/disappear?

Sorry but this technically impossible given the way XXE is implemented.




How about
highlighting the error with a red background or something? For instance,
I noticed that it is possible to apply the following CSS to the semantic
display mode:

tr:empty {background:red;text-align:center;}
tr:empty::before {content:"Illegal, empty table row";}


This is unlikely to work given the way XXE is implemented.

Please fill free to give it a try using the "Customize CSS Stylesheet" dialog box ("Options|Customize Configuration|Customize CSS Stylesheet)".

See http://www.xmlmind.com/xmleditor/_distrib/doc/help/customizeStylesheetDialog.html



--
XMLmind XML Editor Support List
xmleditor-support@xmlmind.com
http://www.xmlmind.com/mailman/listinfo/xmleditor-support

Reply via email to