diff --git a/test/checks/mobile/css-orientation-lock.js b/test/checks/mobile/css-orientation-lock.js index 2a5a1e2842..747e5b939d 100644 --- a/test/checks/mobile/css-orientation-lock.js +++ b/test/checks/mobile/css-orientation-lock.js @@ -3,7 +3,9 @@ describe('css-orientation-lock tests', function() { var checkContext = axe.testUtils.MockCheckContext(); var origCheck = checks['css-orientation-lock']; - var dynamicDoc = document.implementation.createHTMLDocument(); + var dynamicDoc = document.implementation.createHTMLDocument( + 'Dynamic document for CSS Orientation Lock tests' + ); afterEach(function() { checks['css-orientation-lock'] = origCheck;