Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: third_party/WebKit/LayoutTests/fast/images/zoomed-img-height-acid3.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/images/zoomed-img-height-acid3.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/zoomed-img-height-acid3.html b/third_party/WebKit/LayoutTests/fast/images/zoomed-img-height-acid3.html
deleted file mode 100644
index b29ff86ee441bcbb938539a7ad9374969c9072c7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/zoomed-img-height-acid3.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <style type="text/css">
- img { height: 10px; }
- </style>
- <script type="text/javascript">
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function test() {
- // The factors are the same as those in Chrome settings.
- var zoomFactors = [1, 1.1, 1.25, 1.5, 1.75, 2, 2.5, 3, 4, 5];
- if (!window.eventSender)
- return;
-
- for (i = 0; i < zoomFactors.length; ++i) {
- var output = document.getElementById('output');
- eventSender.setPageZoomFactor(zoomFactors[i]);
- if (document.images[0].height == 10)
- output.innerHTML += "PASS: zoom " + Math.round(zoomFactors[i] * 100) + "%<br>";
- else
- output.innerHTML += "FAIL: zoom " + Math.round(zoomFactors[i] * 100) + "%, height " + document.images[0].height + " != 10<br>";
- }
- }
- window.onload = test;
- </script>
- </head>
- <body>
- This test is minimized from Acid3 Test #72.<br>
- <img src="data:image/gif;base64,R0lGODlhAQABAID%2FAMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEA1w%3D%3D" alt="">
- <div id="output"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698