diff --git a/docs/browser.md b/docs/browser.md
index 290c49ce0..f1f1305eb 100644
--- a/docs/browser.md
+++ b/docs/browser.md
@@ -184,17 +184,37 @@ For failed assertions, the parenthical reports the failed, passed, and total num
The HTML Reporter populates the `
` element with the following structure:
+QUnit 1.x, 2.x:
+
```html
```
+
+As of QUnit 3.0
+
+```html
+
+```
+
+
+
+-----
+
You can style these to create your own theme, or add custom styles to the default theme.
Examples: [Theme plugins](./plugins.md)
diff --git a/src/reporters/HtmlReporter.js b/src/reporters/HtmlReporter.js
index ea8be4d13..c8208bcf5 100644
--- a/src/reporters/HtmlReporter.js
+++ b/src/reporters/HtmlReporter.js
@@ -608,7 +608,7 @@ export default class HtmlReporter {
if (tests) {
tests.innerHTML = '';
- result = document.createElement('p');
+ result = document.createElement('div');
result.id = 'qunit-testresult';
result.className = 'result';
tests.parentNode.insertBefore(result, tests);