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

Unified Diff: LayoutTests/css3/device-adapt/viewport-height-extend-to-zoom.html

Issue 19632002: Support 'extend-to-zoom' viewport descriptor value (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated after review comments Created 7 years, 5 months 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
« no previous file with comments | « no previous file | LayoutTests/css3/device-adapt/viewport-height-extend-to-zoom-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/device-adapt/viewport-height-extend-to-zoom.html
diff --git a/LayoutTests/css3/device-adapt/viewport-user-style.html b/LayoutTests/css3/device-adapt/viewport-height-extend-to-zoom.html
similarity index 63%
copy from LayoutTests/css3/device-adapt/viewport-user-style.html
copy to LayoutTests/css3/device-adapt/viewport-height-extend-to-zoom.html
index 70d77f0426e8d06045bc96960ed0074193ae5db6..3d0144e087e92a13dec3806ec69f55cab21cceda 100644
--- a/LayoutTests/css3/device-adapt/viewport-user-style.html
+++ b/LayoutTests/css3/device-adapt/viewport-height-extend-to-zoom.html
@@ -1,15 +1,12 @@
<!DOCTYPE html>
<html>
<head>
- <title>User stylesheet containing an @viewport rule</title>
+ <title>Viewport 'height' descriptor has 'extend-to-zoom' value</title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<style>
html, body { width: 100%; height: 100%; margin: 0 }
-
- @viewport {
- height: 2000px;
- }
+ @viewport { height: -internal-extend-to-zoom; zoom: 2.0; }
</style>
<script>
test(function(){
@@ -17,7 +14,7 @@
}, "Check that window.testRunner is present. Required to add a user stylesheet.");
if (window.testRunner) {
- testRunner.addUserStyleSheet("@viewport { width: 450px; height: auto; zoom: auto; min-zoom: auto; max-zoom: auto }", true);
+ testRunner.addUserStyleSheet("@viewport { width: -internal-extend-to-zoom 980px; min-zoom: 0.25; max-zoom: 5; height: auto ; zoom: auto; }", true);
kenneth.r.christiansen 2013/07/18 14:55:35 There is no auto for zoom, according to the spec
}
</script>
</head>
@@ -35,18 +32,12 @@
var match = /viewport size (.+)x(.+) scale (.+ )/.exec(vpString);
if (match) {
- actualWidth = parseFloat(match[1]);
actualHeight = parseFloat(match[2]);
}
test(function(){
- assert_equals(actualWidth, 450);
- }, "Check that we get the viewport width from the user stylesheet.");
- document.body.offsetHeight;
-
- test(function(){
- assert_equals(actualHeight, 2000);
- }, "Check that we get the viewport height from the author stylesheet.");
+ assert_equals(actualHeight, 176);
+ }, "Check viewport height is 'initial-height / extend-zoom'.");
</script>
</body>
</html>
« no previous file with comments | « no previous file | LayoutTests/css3/device-adapt/viewport-height-extend-to-zoom-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698