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

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

Issue 1058723002: Remove testRunner.injectStyleSheet usage from layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update baseline Created 5 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/css3/device-adapt/viewport-initial-height-zero.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Viewport 'height' descriptor has 'extend-to-zoom' value</title> 4 <title>Viewport 'height' descriptor has 'extend-to-zoom' value</title>
5 <script src="../../resources/testharness.js"></script> 5 <script src="../../resources/testharness.js"></script>
6 <script src="../../resources/testharnessreport.js"></script> 6 <script src="../../resources/testharnessreport.js"></script>
7 <style> 7 <style>
8 html, body { width: 100%; height: 100%; margin: 0 } 8 html, body { width: 100%; height: 100%; margin: 0 }
9 @viewport { height: -internal-extend-to-zoom; zoom: 2.0; } 9 @viewport { height: -internal-extend-to-zoom; zoom: 2.0; }
10 </style> 10 </style>
11 <script>
12 test(function(){
13 assert_own_property(window, "testRunner");
14 }, "Check that window.testRunner is present. Required to add a user styl esheet.");
15
16 if (window.testRunner) {
17 testRunner.injectStyleSheet("@viewport { width: -internal-extend-to- zoom 980px; min-zoom: 0.25; max-zoom: 5; height: auto ; zoom: auto; user-zoom: z oom; orientation: auto }", true);
ojan 2015/04/02 18:19:48 I expect these tests aren't testing anything usefu
dcheng 2015/04/02 18:22:42 They were added to test the extend-to-zoom propert
18 }
19 </script>
20 </head> 11 </head>
21 <body> 12 <body>
22 <div id="log"></div> 13 <div id="log"></div>
23 <script> 14 <script>
24 test(function(){ 15 test(function(){
25 assert_own_property(window, "internals"); 16 assert_own_property(window, "internals");
26 }, "Check that window.internals is present. Required to call viewportAsT ext."); 17 }, "Check that window.internals is present. Required to call viewportAsT ext.");
27 18
28 var actualWidth; 19 var actualWidth;
29 var actualHeight; 20 var actualHeight;
30 21
31 var vpString = internals.viewportAsText(document, 1, 320, 352); 22 var vpString = internals.viewportAsText(document, 1, 320, 352);
32 var match = /viewport size (.+)x(.+) scale (.+ )/.exec(vpString); 23 var match = /viewport size (.+)x(.+) scale (.+ )/.exec(vpString);
33 24
34 if (match) { 25 if (match) {
35 actualHeight = parseFloat(match[2]); 26 actualHeight = parseFloat(match[2]);
36 } 27 }
37 28
38 test(function(){ 29 test(function(){
39 assert_equals(actualHeight, 176); 30 assert_equals(actualHeight, 176);
40 }, "Check viewport height."); 31 }, "Check viewport height.");
41 </script> 32 </script>
42 </body> 33 </body>
43 </html> 34 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/css3/device-adapt/viewport-initial-height-zero.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698