Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/backgrounds/size/contain-and-cover-zoomed.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/backgrounds/size/contain-and-cover-zoomed.html b/third_party/WebKit/LayoutTests/fast/backgrounds/size/contain-and-cover-zoomed.html |
| index 873a27b701707f5affd884b71d027b199dff7677..fd9e2f872c76004df7f0b03e64115f69b395631c 100644 |
| --- a/third_party/WebKit/LayoutTests/fast/backgrounds/size/contain-and-cover-zoomed.html |
| +++ b/third_party/WebKit/LayoutTests/fast/backgrounds/size/contain-and-cover-zoomed.html |
| @@ -56,8 +56,9 @@ |
| <script> |
| if (window.testRunner) { |
| - for (var i = 0; i < 3; ++i) { |
| + for (var i = 0; i < 3; ++i) |
| eventSender.zoomPageOut(); |
| - } |
| + } else { |
| + document.styleSheets[0].insertRule("body { zoom: 0.666666667; }", 0); |
|
eae
2015/11/25 00:21:05
document.body.style.zoom = 0.666666667;
(or even 2
leviw_travelin_and_unemployed
2015/11/25 00:31:56
Fair enough. This change isn't actually necessary.
|
| } |
| </script> |