diff --git a/test/resources/reftest-analyzer.css b/test/resources/reftest-analyzer.css index 925e7346d..311e3a137 100644 --- a/test/resources/reftest-analyzer.css +++ b/test/resources/reftest-analyzer.css @@ -75,8 +75,7 @@ a { width: 320px; } -#images { - overflow: auto; +#imagepane { position: fixed; left: 340px; right: 0; @@ -84,6 +83,15 @@ a { bottom: 0; } +#images { + position: absolute; + left: 0; + right: 0; + top: 22px; + bottom: 0; + overflow: auto; +} + #imgcontrols { margin: 0; display: block; @@ -179,3 +187,8 @@ a { #differences { margin: 0 0 10px 20px; } + +#shortcuts { + float: right; + font-size: 10px; +} diff --git a/test/resources/reftest-analyzer.html b/test/resources/reftest-analyzer.html index 249c2eb40..00f9eaa0d 100644 --- a/test/resources/reftest-analyzer.html +++ b/test/resources/reftest-analyzer.html @@ -92,7 +92,7 @@ Original author: L. David Baron
-
+
diff --git a/test/resources/reftest-analyzer.js b/test/resources/reftest-analyzer.js index 913f2331e..fbc54a459 100644 --- a/test/resources/reftest-analyzer.js +++ b/test/resources/reftest-analyzer.js @@ -336,6 +336,7 @@ window.onload = function () { } gSelected = i; ID("url" + gSelected).classList.add("selected"); + ID("url" + gSelected).scrollIntoView(); const item = gTestItems[i]; const cell = ID("images");