summaryrefslogtreecommitdiff
path: root/test/harness/helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/harness/helper.js')
-rw-r--r--test/harness/helper.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/harness/helper.js b/test/harness/helper.js
index 04c6cb6b7..982400def 100644
--- a/test/harness/helper.js
+++ b/test/harness/helper.js
@@ -259,9 +259,12 @@ function Presenter() {
if(id == 0)
return globalSection;
- var match = id.match(/\d+/g);
+ var match = id.match(/\d+|[A-F](?=\.)/g);
var section = globalSection;
+ if (match === null)
+ return section;
+
for(var i = 0; i < match.length; i++) {
if(typeof section.subsections[match[i]] !== "undefined") {
section = section.subsections[match[i]];
@@ -358,7 +361,7 @@ function Presenter() {
for (var i = 0; i < nodes.length; i++) {
if (nodes[i].nodeName === "sec") {
subsection = new Section(parentSection, nodes[i].getAttribute('id'), nodes[i].getAttribute('name'));
- parentSection.subsections[subsection.id.match(/\d+$/)] = subsection;
+ parentSection.subsections[subsection.id.match(/\d+$|[A-F]$/)] = subsection;
addSectionsFromXML(nodes[i].childNodes, subsection);
}
}