There is an exception raised when description is empty.
Created attachment 238399 [details] proposed fix
Comment on attachment 238399 [details] proposed fix View in context: https://bugs.webkit.org/attachment.cgi?id=238399&action=review > Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Trac.js:105 > - if (parsedDescription.firstChild.className === "changes") { > + if (parsedDescription.firstChild && parsedDescription.firstChild.className === "changes") { We may want to consider caching parsedDescription.firstChild in a local variable to avoid computing it again since we reference it four times in this function.
Comment on attachment 238399 [details] proposed fix Clearing flags on attachment: 238399 Committed r173786: <http://trac.webkit.org/changeset/173786>
All reviewed patches have been landed. Closing bug.