@@ -10,7 +10,7 @@ import { getHtmlByUserFlags } from "../controllers/user-flag-controller";
1010import * as Notifications from "../elements/notifications" ;
1111import { convertRemToPixels } from "../utils/numbers" ;
1212import * as TestState from "./test-state" ;
13- import { qs , qsa } from "../utils/dom" ;
13+ import { qs } from "../utils/dom" ;
1414import { getTheme } from "../signals/theme" ;
1515
1616let revealReplay = false ;
@@ -29,7 +29,7 @@ function revert(): void {
2929 qs ( ".pageTest .buttons" ) ?. show ( ) ;
3030 qs ( "noscript" ) ?. show ( ) ;
3131 qs ( "#nocss" ) ?. show ( ) ;
32- qsa ( "header, footer " ) ?. removeClass ( "invisible" ) ;
32+ qs ( "header" ) ?. removeClass ( "invisible" ) ;
3333 qs ( "#result" ) ?. removeClass ( "noBalloons" ) ;
3434 qs ( ".wordInputHighlight" ) ?. show ( ) ;
3535 qsa ( ".highlightContainer" ) ?. show ( ) ;
@@ -97,7 +97,7 @@ async function generateCanvas(): Promise<HTMLCanvasElement | null> {
9797 // Ensure spacer is removed before adding a new one if function is called rapidly
9898 qs ( ".pageTest .screenshotSpacer" ) ?. remove ( ) ;
9999 qs ( ".page.pageTest" ) ?. prependHtml ( "<div class='screenshotSpacer'></div>" ) ;
100- qsa ( "header, footer " ) ?. addClass ( "invisible" ) ;
100+ qs ( "header" ) ?. addClass ( "invisible" ) ;
101101 qs ( "#result" ) ?. addClass ( "noBalloons" ) ;
102102 qs ( ".wordInputHighlight" ) ?. hide ( ) ;
103103 qsa ( ".highlightContainer" ) ?. hide ( ) ;
0 commit comments