OLD | NEW |
1 <head> | 1 <head> |
2 <title>Viewport Meta with "width=device-width".</title> | 2 <title>Viewport META without content attribute.</title> |
3 <meta name="viewport" content="width=device-width"> | 3 <meta name="viewport" content="width=device-width"> |
| 4 <meta name="viewport"> |
4 <script> | 5 <script> |
5 function test() { | 6 function test() { |
6 if (window.testRunner) { | 7 if (window.testRunner) { |
7 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
8 alert(internals.viewportAsText(document, 1, 320, 352)); | 9 alert(internals.viewportAsText(document, 1, 320, 352)); |
9 } | 10 } |
10 } | 11 } |
11 </script> | 12 </script> |
12 </head> | 13 </head> |
13 <body onload="test();"> | 14 <body onload="test();"> |
OLD | NEW |