diff --git a/testing/extensions/community/chrome/content/tabs/litmus.xul b/testing/extensions/community/chrome/content/tabs/litmus.xul index 36e35bf6cdb..cd684eb9c0a 100644 --- a/testing/extensions/community/chrome/content/tabs/litmus.xul +++ b/testing/extensions/community/chrome/content/tabs/litmus.xul @@ -40,16 +40,16 @@ - + -
+
- + -
+
diff --git a/testing/extensions/community/chrome/content/tabs/selecttests.js b/testing/extensions/community/chrome/content/tabs/selecttests.js index 1b62c87addb..74b3df3a7f8 100644 --- a/testing/extensions/community/chrome/content/tabs/selecttests.js +++ b/testing/extensions/community/chrome/content/tabs/selecttests.js @@ -10,12 +10,13 @@ if (window.arguments.length > 0) { updateFunction = window.arguments[0]; // parent window passes in a function to update itself with data handleCancel = window.arguments[1]; // parent window passes in a function to restore state if dialog canceled - } + } litmus.getTestruns(populateTestRuns); } function handleRunSelect() { var id = document.getElementById("qa-st-testrun").selectedItem.getAttribute("value"); + if (id == "") return; // oddly, this check doesn't seem necessary in the other handlers... litmus.getTestrun(id, populateTestGroups); }