Title: [95581] trunk/Tools
- Revision
- 95581
- Author
- [email protected]
- Date
- 2011-09-20 16:43:26 -0700 (Tue, 20 Sep 2011)
Log Message
garden-o-matic makes it hard to compare images when scroll bars appear
https://bugs.webkit.org/show_bug.cgi?id=68482
Reviewed by Eric Seidel.
Because we autoscale image width, the images rescale if we overflow
vertically and get a scrollbar. That makes it hard to compare two sets
of images. This patch reserves space for the scrollbar so we won't
have the layout change.
* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css:
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css (95580 => 95581)
--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css 2011-09-20 23:31:17 UTC (rev 95580)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css 2011-09-20 23:43:26 UTC (rev 95581)
@@ -23,10 +23,14 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+html {
+ overflow-y: scroll;
+}
+
body {
- font-family: 'Open Sans';
- font-size: 14px;
- margin: 0px;
+ font-family: 'Open Sans';
+ font-size: 14px;
+ margin: 0px;
}
a {
Modified: trunk/Tools/ChangeLog (95580 => 95581)
--- trunk/Tools/ChangeLog 2011-09-20 23:31:17 UTC (rev 95580)
+++ trunk/Tools/ChangeLog 2011-09-20 23:43:26 UTC (rev 95581)
@@ -1,3 +1,17 @@
+2011-09-20 Adam Barth <[email protected]>
+
+ garden-o-matic makes it hard to compare images when scroll bars appear
+ https://bugs.webkit.org/show_bug.cgi?id=68482
+
+ Reviewed by Eric Seidel.
+
+ Because we autoscale image width, the images rescale if we overflow
+ vertically and get a scrollbar. That makes it hard to compare two sets
+ of images. This patch reserves space for the scrollbar so we won't
+ have the layout change.
+
+ * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css:
+
2011-09-20 Sheriff Bot <[email protected]>
Unreviewed, rolling out r95565.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes