OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Use initial height for auto height if initial width is zero</title> | 4 <title>Use initial height for auto height if initial width is zero</title> |
5 <link rel="help" href="http://www.w3.org/TR/css-device-adapt/#constraining-v iewport-descriptor-values"> | 5 <link rel="help" href="http://www.w3.org/TR/css-device-adapt/#constraining-v iewport-descriptor-values"> |
6 <style type="text/css"> | 6 <style type="text/css"> |
7 @viewport { | 7 @viewport { |
8 width: 100px; | 8 width: 100px; |
9 height: auto; | 9 height: auto; |
10 } | 10 } |
11 </style> | 11 </style> |
12 <script type="text/javascript"> | 12 <script type="text/javascript"> |
13 if (window.testRunner) | |
dcheng
2015/04/02 04:41:18
The injected style sheet didn't look particularly
| |
14 testRunner.injectStyleSheet("@viewport { width: extend-to-zoom 980px ; min-zoom: 0.25; max-zoom: 5; height: auto; zoom: auto; user-zoom: zoom; orient ation: auto }", true); | |
15 | |
16 function test() { | 13 function test() { |
17 if (window.testRunner) { | 14 if (window.testRunner) { |
18 testRunner.dumpAsText(); | 15 testRunner.dumpAsText(); |
19 alert(internals.viewportAsText(document, 1, 0, 200)); | 16 alert(internals.viewportAsText(document, 1, 0, 200)); |
20 } | 17 } |
21 } | 18 } |
22 </script> | 19 </script> |
23 </head> | 20 </head> |
24 <body onload="test();"></body> | 21 <body onload="test();"></body> |
25 </html> | 22 </html> |
OLD | NEW |