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

Side by Side Diff: LayoutTests/css3/device-adapt/viewport-user-agent-style.html

Issue 40423003: Experimental viewport meta tag support for desktop, Blink-side. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase again Created 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/core.gyp » ('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 user agent stylesheet</title> 4 <title>@viewport user agent stylesheet</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 <script> 7 <script>
8 if (window.testRunner) { 8 if (window.testRunner) {
9 // FIXME: Emulate the android viewport UA stylesheet. We should test this
10 // based on the platform we're building for
11 testRunner.addUserStyleSheet("@viewport {min-width: 980px}", true);
9 internals.settings.setViewportEnabled(true); 12 internals.settings.setViewportEnabled(true);
10 } 13 }
11 </script> 14 </script>
12 <style> 15 <style>
13 html, body { width: 100%; height: 100%; margin: 0 } 16 html, body { width: 100%; height: 100%; margin: 0 }
14 </style> 17 </style>
15 </head> 18 </head>
16 <body style="overflow: hidden;"> 19 <body style="overflow: hidden;">
17 <div id="log"></div> 20 <div id="log"></div>
18 <script> 21 <script>
19 test(function(){ 22 test(function(){
20 assert_equals(document.body.offsetWidth, 980); 23 assert_equals(document.body.offsetWidth, 980);
21 }, "Check that we get a viewport width of 980px from the user agent styl esheet."); 24 }, "Check that we get a viewport width of 980px from the user agent styl esheet.");
22 </script> 25 </script>
23 </body> 26 </body>
24 </html> 27 </html>
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698